diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56e542229..24438d87d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,29 +51,4 @@ jobs: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - name: Run benchmark - run: npm run benchmark | tee output.txt - # Download previous benchmark result from cache (if exists) - - name: Download previous benchmark data - uses: actions/cache@v1 - with: - path: ./cache - key: ${{ runner.os }}-benchmark - # Run `github-action-benchmark` action - - name: Store benchmark result - uses: benchmark-action/github-action-benchmark@v1 - if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} - with: - # What benchmark tool the output.txt came from - tool: 'benchmarkjs' - # Where the output from the benchmark tool is stored - output-file-path: output.txt - # Where the previous data file is stored - external-data-json-path: ./cache/benchmark-data.json - # Workflow will fail when an alert happens - fail-on-alert: false - # GitHub API token to make a commit comment - github-token: ${{ secrets.GITHUB_TOKEN }} - # Enable comment always - comment-always: true - # Save only on the main to compare the benchmarks between PR and base branch - save-data-file: ${{ github.ref == 'refs/heads/main' }} + run: npm run test:bench diff --git a/package.json b/package.json index c15fc9b94..e7b99a0f8 100644 --- a/package.json +++ b/package.json @@ -22,9 +22,9 @@ "test:ci": "vitest run --coverage", "test:yorkie.dev": "TEST_RPC_ADDR=https://api.yorkie.dev vitest run --coverage", "test:watch": "vitest", + "test:bench": "vitest bench", "lint": "eslint . --fix --max-warnings=0 --ext .ts", "prepare": "ts-patch install && npm run build", - "benchmark": "ts-node-script ./test/bench", "publish:prepare": "mkdir -p bundle && cp -r dist package.json README.md LICENSE CHANGELOG.md bundle && cp package.publish.json bundle/package.json", "profile:bundle": "webpack --config ./config/webpack.dev.config.js --profile" }, @@ -38,7 +38,7 @@ }, "author": { "name": "hackerwins", - "email": "" + "email": "susukang98@gmail.com" }, "license": "Apache-2.0", "bugs": { @@ -51,7 +51,6 @@ "@connectrpc/protoc-gen-connect-es": "^1.2.0", "@microsoft/api-documenter": "^7.15.1", "@microsoft/api-extractor": "^7.19.4", - "@types/benchmark": "^2.1.1", "@types/google-protobuf": "^3.15.5", "@types/jsdom": "^21.1.3", "@types/long": "^4.0.1", @@ -61,7 +60,6 @@ "@vitest/coverage-istanbul": "^0.34.5", "@vitest/coverage-v8": "^0.34.5", "@webpack-cli/serve": "^1.6.0", - "benchmark": "^2.1.4", "copy-webpack-plugin": "^11.0.0", "eslint": "^8.19.0", "eslint-plugin-jsdoc": "^39.3.3", diff --git a/test/bench/counter.bench.ts b/test/bench/counter.bench.ts new file mode 100644 index 000000000..f06aa5ca0 --- /dev/null +++ b/test/bench/counter.bench.ts @@ -0,0 +1,60 @@ +import { Document, Counter } from '@yorkie-js-sdk/src/yorkie'; +import { CounterType } from '@yorkie-js-sdk/src/document/crdt/counter'; +import { describe, bench, assert } from 'vitest'; + +const benchmarkCounter = (size: number) => { + const doc = new Document<{ counter: Counter }>('test-doc'); + + doc.update((root) => { + root.counter = new Counter(CounterType.IntegerCnt, 0); + for (let i = 0; i < size; i++) { + root.counter.increase(i); + } + }); +}; + +describe('Counter', () => { + bench('counter', () => { + const doc = new Document<{ age: Counter; price: Counter }>('test-doc'); + const integer = 10; + const long = 5; + const uinteger = 100; + const float = 3.14; + const double = 5.66; + doc.update((root) => { + root.age = new Counter(CounterType.IntegerCnt, 5); + root.age.increase(long); + root.age.increase(double); + root.age.increase(float); + root.age.increase(uinteger); + root.age.increase(integer); + }); + assert.equal('{"age":128}', doc.toJSON()); + doc.update((root) => { + root.price = new Counter(CounterType.LongCnt, 9000000000000000000); + root.price.increase(long); + root.price.increase(double); + root.price.increase(float); + root.price.increase(uinteger); + root.price.increase(integer); + }); + assert.equal('{"age":128,"price":9000000000000000123}', doc.toJSON()); + doc.update((root) => { + root.age.increase(-5); + root.age.increase(-3.14); + root.price.increase(-100); + root.price.increase(-20.5); + }); + assert.equal('{"age":120,"price":9000000000000000003}', doc.toJSON()); + // TODO: We need to filter not-allowed type + // counter.increase() method doesn't filter not-allowed type + }); + + bench('counter 1000', () => { + benchmarkCounter(1000); + }); + + bench('counter 10000', () => { + benchmarkCounter(10000); + }); +}); diff --git a/test/bench/document.bench.ts b/test/bench/document.bench.ts new file mode 100644 index 000000000..4fc11a38c --- /dev/null +++ b/test/bench/document.bench.ts @@ -0,0 +1,192 @@ +import { Document, JSONArray } from '@yorkie-js-sdk/src/yorkie'; +import { MaxTimeTicket } from '@yorkie-js-sdk/src/document/time/ticket'; +import { InitialCheckpoint } from '@yorkie-js-sdk/src/document/change/checkpoint'; +import { DocumentStatus } from '@yorkie-js-sdk/src/document/document'; +import { describe, bench, assert } from 'vitest'; + +const benchmarkObject = (size: number) => { + const doc = new Document<{ k1: number }>('test-doc'); + + doc.update((root) => { + for (let i = 0; i < size; i++) { + root.k1 = i; + } + }); +}; + +const benchmarkArray = (size: number) => { + const doc = new Document<{ k1: JSONArray }>('test-doc'); + + doc.update((root) => { + root.k1 = []; + + for (let i = 0; i < size; i++) { + root.k1.push(i); + } + }); +}; + +const benchmarkArrayGC = (size: number) => { + const doc = new Document<{ k1?: JSONArray }>('test-doc'); + + doc.update((root) => { + root.k1 = []; + + for (let i = 0; i < size; i++) { + root.k1.push(i); + } + }); + doc.update((root) => { + delete root.k1; + }); + + assert.equal(size + 1, doc.garbageCollect(MaxTimeTicket)); +}; + +describe('Document', () => { + bench('constructor', () => { + const doc = new Document<{ text: JSONArray }>(`test-doc`); + assert.equal('{}', doc.toJSON()); + assert.equal(doc.getCheckpoint(), InitialCheckpoint); + assert.isFalse(doc.hasLocalChanges()); + }); + + bench('status', () => { + const doc = new Document<{ text: JSONArray }>(`test-doc`); + assert.equal(doc.getStatus(), DocumentStatus.Detached); + doc.applyStatus(DocumentStatus.Attached); + assert.equal(doc.getStatus(), DocumentStatus.Attached); + }); + + bench('equals', () => { + const doc1 = new Document<{ text: string }>('d1'); + const doc2 = new Document<{ text: string }>('d2'); + const doc3 = new Document<{ text: string }>('d3'); + doc1.update((root) => { + root.text = 'value'; + }, 'update text'); + assert.notEqual(doc1.toJSON(), doc2.toJSON()); + assert.equal(doc2.toJSON(), doc3.toJSON()); + }); + + bench('nested update', () => { + const expected = `{"k1":"v1","k2":{"k4":"v4"},"k3":["v5","v6"]}`; + const doc = new Document<{ + k1: string; + k2: { k4: string }; + k3: Array; + }>('test-doc'); + assert.equal('{}', doc.toJSON()); + assert.isFalse(doc.hasLocalChanges()); + doc.update((root) => { + root.k1 = 'v1'; + root.k2 = { k4: 'v4' }; + root.k3 = ['v5', 'v6']; + }, 'updates k1,k2,k3'); + assert.equal(expected, doc.toJSON()); + assert.isTrue(doc.hasLocalChanges()); + }); + + bench('delete', () => { + const doc = new Document<{ + k1?: string; + k2?: { k4: string }; + k3?: Array; + }>('test-doc'); + assert.equal('{}', doc.toJSON()); + assert.isFalse(doc.hasLocalChanges()); + let expected = `{"k1":"v1","k2":{"k4":"v4"},"k3":["v5","v6"]}`; + doc.update((root) => { + root.k1 = 'v1'; + root.k2 = { k4: 'v4' }; + root.k3 = ['v5', 'v6']; + }, 'updates k1,k2,k3'); + assert.equal(expected, doc.toJSON()); + expected = `{"k1":"v1","k3":["v5","v6"]}`; + doc.update((root) => { + delete root.k2; + }, 'deletes k2'); + assert.equal(expected, doc.toJSON()); + }); + + bench('object', () => { + const doc = new Document<{ k1: string }>('test-doc'); + doc.update((root) => { + root.k1 = 'v1'; + root.k1 = 'v2'; + }); + assert.equal(`{"k1":"v2"}`, doc.toJSON()); + }); + + bench('array', () => { + const doc = new Document<{ k1: JSONArray }>('test-doc'); + + doc.update((root) => { + root.k1 = []; + root.k1.push(1); + root.k1.push(2); + root.k1.push(3); + + assert.equal('{"k1":[1,2,3]}', root.toJSON!()); + assert.equal(root.k1.length, 3); + assert.equal( + '[1:000000000000000000000000:2:1][1:000000000000000000000000:3:2][1:000000000000000000000000:4:3]', + root.k1.toTestString!(), + ); + + root.k1.splice(1, 1); + assert.equal('{"k1":[1,3]}', root.toJSON!()); + assert.equal(root.k1.length, 2); + assert.equal( + '[1:000000000000000000000000:2:1]{1:000000000000000000000000:3:2}[1:000000000000000000000000:4:3]', + root.k1.toTestString!(), + ); + + const first = root.k1.getElementByIndex!(0); + root.k1.insertAfter!(first.getID!(), 2); + assert.equal('{"k1":[1,2,3]}', root.toJSON!()); + assert.equal(root.k1.length, 3); + assert.equal( + '[1:000000000000000000000000:2:1][1:000000000000000000000000:6:2]{1:000000000000000000000000:3:2}[1:000000000000000000000000:4:3]', + root.k1.toTestString!(), + ); + + const third = root.k1.getElementByIndex!(2); + root.k1.insertAfter!(third.getID!(), 4); + assert.equal('{"k1":[1,2,3,4]}', root.toJSON!()); + assert.equal(root.k1.length, 4); + assert.equal( + '[1:000000000000000000000000:2:1][1:000000000000000000000000:6:2]{1:000000000000000000000000:3:2}[1:000000000000000000000000:4:3][1:000000000000000000000000:7:4]', + root.k1.toTestString!(), + ); + + for (let i = 0; i < root.k1.length; i++) { + assert.equal(i + 1, root.k1[i]); + } + }); + }); + + bench('array 1000', () => { + benchmarkArray(1000); + }); + + bench('array 10000', () => { + benchmarkArray(10000); + }); + + bench('array GC 1000', () => { + benchmarkArrayGC(1000); + }); + + bench('array GC 10000', () => { + benchmarkArrayGC(10000); + }); + + bench('object 1000', () => { + benchmarkObject(1000); + }); + + bench('object 10000', () => { + benchmarkObject(10000); + }); +}); diff --git a/test/bench/document_test.ts b/test/bench/document_test.ts deleted file mode 100644 index e49b478c5..000000000 --- a/test/bench/document_test.ts +++ /dev/null @@ -1,650 +0,0 @@ -/* - * Copyright 2021 The Yorkie Authors. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { assert } from 'chai'; -import { JSONArray, Text, Document, Tree } from '@yorkie-js-sdk/src/yorkie'; -import { MaxTimeTicket } from '@yorkie-js-sdk/src/document/time/ticket'; -import { InitialCheckpoint } from '@yorkie-js-sdk/src/document/change/checkpoint'; -import { DocumentStatus } from '@yorkie-js-sdk/src/document/document'; -import { Counter } from '@yorkie-js-sdk/src/yorkie'; -import { CounterType } from '@yorkie-js-sdk/src/document/crdt/counter'; - -const benchmarkTextEditGC = (size: number) => { - const doc = new Document<{ text: Text }>('test-doc'); - assert.equal('{}', doc.toJSON()); - // 01. initial - doc.update((root) => { - root.text = new Text(); - const { text } = root; - for (let i = 0; i < size; i++) { - text.edit(i, i, 'a'); - } - }, 'initial'); - // 02. 100 nodes modified - doc.update((root) => { - const { text } = root; - for (let i = 0; i < size; i++) { - text.edit(i, i + 1, 'b'); - } - }, `modify ${size} nodes`); - // 03. GC - assert.equal(size, doc.getGarbageLen()); - assert.equal(size, doc.garbageCollect(MaxTimeTicket)); - const empty = 0; - assert.equal(empty, doc.getGarbageLen()); -}; -const benchmarkTextSplitGC = (size: number) => { - const doc = new Document<{ text: Text }>('test-doc'); - assert.equal('{}', doc.toJSON()); - - // 01. initial - const string = 'a'.repeat(size); - doc.update((root) => { - root.text = new Text(); - - root.text.edit(0, 0, string); - }, 'initial'); - // 02. 100 nodes modified - doc.update((root) => { - for (let i = 0; i < size; i++) { - root.text.edit(i, i + 1, 'b'); - } - }, 'Modify one node multiple times'); - // 03. GC - assert.equal(size, doc.getGarbageLen()); - assert.equal(size, doc.garbageCollect(MaxTimeTicket)); - const empty = 0; - assert.equal(empty, doc.getGarbageLen()); -}; -const benchmarkTextDeleteAll = (size: number) => { - const doc = new Document<{ text: Text }>('test-doc'); - doc.update((root) => { - root.text = new Text(); - }, 'initialize'); - // 01. inserts many chracters - for (let i = 0; i < size; i++) { - doc.update((root) => { - root.text.edit(i, i, 'a'); - }, 'insert chracter'); - } - // 02. deletes them - doc.update((root) => { - root.text.edit(0, size, ''); - }, 'delete them'); - assert.equal(doc.getRoot().text.toString(), ''); -}; -const benchmarkText = (size: number) => { - const doc = new Document<{ text: Text }>('test-doc'); - - doc.update((root) => { - root.text = new Text(); - - for (let i = 0; i < size; i++) { - root.text.edit(i, i, 'a'); - } - }); -}; -const benchmarkCounter = (size: number) => { - const doc = new Document<{ counter: Counter }>('test-doc'); - - doc.update((root) => { - root.counter = new Counter(CounterType.IntegerCnt, 0); - for (let i = 0; i < size; i++) { - root.counter.increase(i); - } - }); -}; -const benchmarkObject = (size: number) => { - const doc = new Document<{ k1: number }>('test-doc'); - - doc.update((root) => { - for (let i = 0; i < size; i++) { - root.k1 = i; - } - }); -}; -const benchmarkArray = (size: number) => { - const doc = new Document<{ k1: JSONArray }>('test-doc'); - - doc.update((root) => { - root.k1 = []; - - for (let i = 0; i < size; i++) { - root.k1.push(i); - } - }); -}; -const benchmarkArrayGC = (size: number) => { - const doc = new Document<{ k1?: JSONArray }>('test-doc'); - - doc.update((root) => { - root.k1 = []; - - for (let i = 0; i < size; i++) { - root.k1.push(i); - } - }); - doc.update((root) => { - delete root.k1; - }); - - assert.equal(size + 1, doc.garbageCollect(MaxTimeTicket)); -}; -const benchmarkTree = (size: number) => { - const doc = new Document<{ tree: Tree }>('test-doc'); - - doc.update((root) => { - root.tree = new Tree({ - type: 'doc', - children: [{ type: 'p', children: [] }], - }); - - for (let i = 1; i <= size; i++) { - root.tree.edit(i, i, { type: 'text', value: 'a' }); - } - }); -}; -const benchmarkTreeDeleteAll = (size: number) => { - const doc = new Document<{ tree: Tree }>('test-doc'); - - doc.update((root) => { - root.tree = new Tree({ - type: 'doc', - children: [{ type: 'p', children: [] }], - }); - - for (let i = 1; i <= size; i++) { - root.tree.edit(i, i, { type: 'text', value: 'a' }); - } - }); - - doc.update((root) => { - root.tree.edit(1, size + 1); - }, 'delete them'); - assert.equal(doc.getRoot().tree.toXML(), `

`); -}; -const benchmarkTreeSplitGC = (size: number) => { - const doc = new Document<{ tree: Tree }>('test-doc'); - - doc.update((root) => { - root.tree = new Tree({ - type: 'doc', - children: [ - { type: 'p', children: [{ type: 'text', value: 'a'.repeat(size) }] }, - ], - }); - }); - - doc.update((root) => { - for (let i = 1; i <= size; i++) { - root.tree.edit(i, i + 1, { type: 'text', value: 'b' }); - } - }, `modify ${size} nodes`); - // 03. GC - assert.equal(size, doc.getGarbageLen()); - assert.equal(size, doc.garbageCollect(MaxTimeTicket)); - const empty = 0; - assert.equal(empty, doc.getGarbageLen()); -}; -const benchmarkTreeEditGC = (size: number) => { - const doc = new Document<{ tree: Tree }>('test-doc'); - - doc.update((root) => { - root.tree = new Tree({ - type: 'doc', - children: [{ type: 'p', children: [] }], - }); - }); - doc.update((root) => { - for (let i = 1; i <= size; i++) { - root.tree.edit(i, i, { type: 'text', value: 'a' }); - } - }); - - doc.update((root) => { - for (let i = 1; i <= size; i++) { - root.tree.edit(i, i + 1, { type: 'text', value: 'b' }); - } - }, `modify ${size} nodes`); - // 03. GC - assert.equal(size, doc.getGarbageLen()); - assert.equal(size, doc.garbageCollect(MaxTimeTicket)); - const empty = 0; - assert.equal(empty, doc.getGarbageLen()); -}; - -const tests = [ - { - name: 'Document#constructor', - run: (): void => { - const doc = new Document<{ text: JSONArray }>(`test-doc`); - assert.equal('{}', doc.toJSON()); - assert.equal(doc.getCheckpoint(), InitialCheckpoint); - assert.isFalse(doc.hasLocalChanges()); - }, - }, - { - name: 'Document#status', - run: (): void => { - const doc = new Document<{ text: JSONArray }>(`test-doc`); - assert.equal(doc.getStatus(), DocumentStatus.Detached); - doc.applyStatus(DocumentStatus.Attached); - assert.equal(doc.getStatus(), DocumentStatus.Attached); - }, - }, - { - name: 'Document#equals', - run: (): void => { - const doc1 = new Document<{ text: string }>('d1'); - const doc2 = new Document<{ text: string }>('d2'); - const doc3 = new Document<{ text: string }>('d3'); - doc1.update((root) => { - root.text = 'value'; - }, 'update text'); - assert.notEqual(doc1.toJSON(), doc2.toJSON()); - assert.equal(doc2.toJSON(), doc3.toJSON()); - }, - }, - { - name: 'Document#nested update', - run: (): void => { - const expected = `{"k1":"v1","k2":{"k4":"v4"},"k3":["v5","v6"]}`; - const doc = new Document<{ - k1: string; - k2: { k4: string }; - k3: Array; - }>('test-doc'); - assert.equal('{}', doc.toJSON()); - assert.isFalse(doc.hasLocalChanges()); - doc.update((root) => { - root.k1 = 'v1'; - root.k2 = { k4: 'v4' }; - root.k3 = ['v5', 'v6']; - }, 'updates k1,k2,k3'); - assert.equal(expected, doc.toJSON()); - assert.isTrue(doc.hasLocalChanges()); - }, - }, - { - name: 'Document#delete', - run: (): void => { - const doc = new Document<{ - k1?: string; - k2?: { k4: string }; - k3?: Array; - }>('test-doc'); - assert.equal('{}', doc.toJSON()); - assert.isFalse(doc.hasLocalChanges()); - let expected = `{"k1":"v1","k2":{"k4":"v4"},"k3":["v5","v6"]}`; - doc.update((root) => { - root.k1 = 'v1'; - root.k2 = { k4: 'v4' }; - root.k3 = ['v5', 'v6']; - }, 'updates k1,k2,k3'); - assert.equal(expected, doc.toJSON()); - expected = `{"k1":"v1","k3":["v5","v6"]}`; - doc.update((root) => { - delete root.k2; - }, 'deletes k2'); - assert.equal(expected, doc.toJSON()); - }, - }, - { - name: 'Document#object', - run: (): void => { - const doc = new Document<{ k1: string }>('test-doc'); - doc.update((root) => { - root.k1 = 'v1'; - root.k1 = 'v2'; - }); - assert.equal(`{"k1":"v2"}`, doc.toJSON()); - }, - }, - { - name: 'Document#array', - run: (): void => { - const doc = new Document<{ k1: JSONArray }>('test-doc'); - - doc.update((root) => { - root.k1 = []; - root.k1.push(1); - root.k1.push(2); - root.k1.push(3); - - assert.equal('{"k1":[1,2,3]}', root.toJSON!()); - assert.equal(root.k1.length, 3); - assert.equal( - '[1:000000000000000000000000:2:1][1:000000000000000000000000:3:2][1:000000000000000000000000:4:3]', - root.k1.toTestString!(), - ); - - root.k1.splice(1, 1); - assert.equal('{"k1":[1,3]}', root.toJSON!()); - assert.equal(root.k1.length, 2); - assert.equal( - '[1:000000000000000000000000:2:1]{1:000000000000000000000000:3:2}[1:000000000000000000000000:4:3]', - root.k1.toTestString!(), - ); - - const first = root.k1.getElementByIndex!(0); - root.k1.insertAfter!(first.getID!(), 2); - assert.equal('{"k1":[1,2,3]}', root.toJSON!()); - assert.equal(root.k1.length, 3); - assert.equal( - '[1:000000000000000000000000:2:1][1:000000000000000000000000:6:2]{1:000000000000000000000000:3:2}[1:000000000000000000000000:4:3]', - root.k1.toTestString!(), - ); - - const third = root.k1.getElementByIndex!(2); - root.k1.insertAfter!(third.getID!(), 4); - assert.equal('{"k1":[1,2,3,4]}', root.toJSON!()); - assert.equal(root.k1.length, 4); - assert.equal( - '[1:000000000000000000000000:2:1][1:000000000000000000000000:6:2]{1:000000000000000000000000:3:2}[1:000000000000000000000000:4:3][1:000000000000000000000000:7:4]', - root.k1.toTestString!(), - ); - - for (let i = 0; i < root.k1.length; i++) { - assert.equal(i + 1, root.k1[i]); - } - }); - }, - }, - { - name: 'Document#text', - run: (): void => { - const doc = new Document<{ k1: Text }>('test-doc'); - doc.update((root) => { - root.k1 = new Text(); - root.k1.edit(0, 0, 'ABCD'); - root.k1.edit(1, 3, '12'); - }); - assert.equal( - `{"k1":[{"val":"A"},{"val":"12"},{"val":"D"}]}`, - doc.toJSON(), - ); - assert.equal( - `[0:00:0:0 ][1:00:2:0 A][1:00:3:0 12]{1:00:2:1 BC}[1:00:2:3 D]`, - doc.getRoot().k1.toTestString(), - ); - doc.update((root) => { - const [pos1] = root.k1.createRangeForTest(0, 0); - assert.equal('0:00:0:0:0', pos1.toTestString()); - const [pos2] = root.k1.createRangeForTest(1, 1); - assert.equal('1:00:2:0:1', pos2.toTestString()); - const [pos3] = root.k1.createRangeForTest(2, 2); - assert.equal('1:00:3:0:1', pos3.toTestString()); - const [pos4] = root.k1.createRangeForTest(3, 3); - assert.equal('1:00:3:0:2', pos4.toTestString()); - const [pos5] = root.k1.createRangeForTest(4, 4); - assert.equal('1:00:2:3:1', pos5.toTestString()); - }); - }, - }, - { - name: 'Document#text composition test', - run: (): void => { - const doc = new Document<{ k1: Text }>('test-doc'); - doc.update((root) => { - root.k1 = new Text(); - root.k1.edit(0, 0, 'ㅎ'); - root.k1.edit(0, 1, '하'); - root.k1.edit(0, 1, '한'); - root.k1.edit(0, 1, '하'); - root.k1.edit(1, 1, '느'); - root.k1.edit(1, 2, '늘'); - }); - assert.equal(`{"k1":[{"val":"하"},{"val":"늘"}]}`, doc.toJSON()); - }, - }, - { - name: 'Document#rich text test', - run: (): void => { - const doc = new Document<{ k1: Text }>('test-doc'); - doc.update((root) => { - root.k1 = new Text(); - root.k1.edit(0, 0, 'Hello world'); - assert.equal( - '[0:00:0:0 ][1:00:2:0 Hello world]', - root.k1.toTestString(), - ); - }); - assert.equal('{"k1":[{"val":"Hello world"}]}', doc.toJSON()); - doc.update((root) => { - root.k1.setStyle(0, 5, { b: '1' }); - assert.equal( - '[0:00:0:0 ][1:00:2:0 Hello][1:00:2:5 world]', - root.k1.toTestString(), - ); - }); - assert.equal( - '{"k1":[{"attrs":{"b":"1"},"val":"Hello"},{"val":" world"}]}', - doc.toJSON(), - ); - doc.update((root) => { - root.k1.setStyle(0, 5, { b: '1' }); - assert.equal( - '[0:00:0:0 ][1:00:2:0 Hello][1:00:2:5 world]', - root.k1.toTestString(), - ); - root.k1.setStyle(3, 5, { i: '1' }); - assert.equal( - '[0:00:0:0 ][1:00:2:0 Hel][1:00:2:3 lo][1:00:2:5 world]', - root.k1.toTestString(), - ); - }); - assert.equal( - '{"k1":[{"attrs":{"b":"1"},"val":"Hel"},{"attrs":{"b":"1","i":"1"},"val":"lo"},{"val":" world"}]}', - doc.toJSON(), - ); - doc.update((root) => { - root.k1.edit(5, 11, ' yorkie'); - assert.equal( - '[0:00:0:0 ][1:00:2:0 Hel][1:00:2:3 lo][4:00:1:0 yorkie]{1:00:2:5 world}', - root.k1.toTestString(), - ); - }); - assert.equal( - '{"k1":[{"attrs":{"b":"1"},"val":"Hel"},{"attrs":{"b":"1","i":"1"},"val":"lo"},{"val":" yorkie"}]}', - doc.toJSON(), - ); - doc.update((root) => { - root.k1.edit(5, 5, '\n', { list: 'true' }); - assert( - '[0:00:0:0 ][1:00:2:0 Hel][1:00:2:3 lo][5:00:1:0 ]' + - '[4:00:1:0 yorkie]{1:00:2:5 world}', - root.k1.toTestString(), - ); - }); - assert.equal( - '{"k1":[{"attrs":{"b":"1"},"val":"Hel"},{"attrs":{"b":"1","i":"1"},"val":"lo"},{"attrs":{"list":"true"},"val":"\\n"},{"val":" yorkie"}]}', - doc.toJSON(), - ); - }, - }, - { - name: 'Document#counter test', - run: (): void => { - const doc = new Document<{ age: Counter; price: Counter }>('test-doc'); - const integer = 10; - const long = 5; - const uinteger = 100; - const float = 3.14; - const double = 5.66; - doc.update((root) => { - root.age = new Counter(CounterType.IntegerCnt, 5); - root.age.increase(long); - root.age.increase(double); - root.age.increase(float); - root.age.increase(uinteger); - root.age.increase(integer); - }); - assert.equal('{"age":128}', doc.toJSON()); - doc.update((root) => { - root.price = new Counter(CounterType.LongCnt, 9000000000000000000); - root.price.increase(long); - root.price.increase(double); - root.price.increase(float); - root.price.increase(uinteger); - root.price.increase(integer); - }); - assert.equal('{"age":128,"price":9000000000000000123}', doc.toJSON()); - doc.update((root) => { - root.age.increase(-5); - root.age.increase(-3.14); - root.price.increase(-100); - root.price.increase(-20.5); - }); - assert.equal('{"age":120,"price":9000000000000000003}', doc.toJSON()); - // TODO: We need to filter not-allowed type - // counter.increase() method doesn't filter not-allowed type - }, - }, - { - name: 'Document#text edit gc 100', - run: (): void => { - benchmarkTextEditGC(100); - }, - }, - { - name: 'Document#text edit gc 1000', - run: (): void => { - benchmarkTextEditGC(1000); - }, - }, - { - name: 'Document#text split gc 100', - run: (): void => { - benchmarkTextSplitGC(100); - }, - }, - { - name: 'Document#text split gc 1000', - run: (): void => { - benchmarkTextSplitGC(1000); - }, - }, - { - name: 'Document#text delete all 10000', - run: (): void => { - benchmarkTextDeleteAll(10000); - }, - }, - { - name: 'Document#text 100', - run: (): void => { - benchmarkText(100); - }, - }, - { - name: 'Document#text 1000', - run: (): void => { - benchmarkText(1000); - }, - }, - { - name: 'Document#array 1000', - run: (): void => { - benchmarkArray(1000); - }, - }, - { - name: 'Document#array 10000', - run: (): void => { - benchmarkArray(10000); - }, - }, - { - name: 'Document#array gc 1000', - run: (): void => { - benchmarkArrayGC(1000); - }, - }, - { - name: 'Document#array gc 10000', - run: (): void => { - benchmarkArrayGC(10000); - }, - }, - { - name: 'Document#counter 1000', - run: (): void => { - benchmarkCounter(1000); - }, - }, - { - name: 'Document#counter 10000', - run: (): void => { - benchmarkCounter(10000); - }, - }, - { - name: 'Document#object 1000', - run: (): void => { - benchmarkObject(1000); - }, - }, - { - name: 'Document#object 10000', - run: (): void => { - benchmarkObject(10000); - }, - }, - { - name: 'Document#tree 100', - run: (): void => { - benchmarkTree(100); - }, - }, - { - name: 'Document#tree 1000', - run: (): void => { - benchmarkTree(1000); - }, - }, - { - name: 'Document#tree delete all 1000', - run: (): void => { - benchmarkTreeDeleteAll(1000); - }, - }, - { - name: 'Document#tree split GC 100', - run: (): void => { - benchmarkTreeSplitGC(100); - }, - }, - { - name: 'Document#tree split GC 1000', - run: (): void => { - benchmarkTreeSplitGC(1000); - }, - }, - { - name: 'Document#tree edit GC 100', - run: (): void => { - benchmarkTreeEditGC(100); - }, - }, - { - name: 'Document#tree edit GC 1000', - run: (): void => { - benchmarkTreeEditGC(1000); - }, - }, -]; - -export default tests; diff --git a/test/bench/hello_buffer.ts b/test/bench/hello_buffer.ts deleted file mode 100644 index 7c72441d9..000000000 --- a/test/bench/hello_buffer.ts +++ /dev/null @@ -1,2 +0,0 @@ -export const helloBuffer = - '10,194,146,88,10,97,10,8,112,114,111,102,105,108,101,115,18,85,10,83,10,61,10,24,54,50,102,101,48,57,55,101,100,57,98,48,101,97,56,101,56,57,50,98,102,99,48,100,18,33,26,31,8,5,18,7,35,102,102,98,102,49,101,26,18,8,1,16,2,26,12,98,254,9,126,217,176,234,142,137,43,252,13,18,18,8,1,16,1,26,12,98,254,9,126,217,176,234,142,137,43,252,13,10,227,224,11,10,6,115,104,97,112,101,115,18,215,224,11,18,211,224,11,10,161,10,18,158,10,10,155,10,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,53,48,53,101,102,26,19,8,136,7,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,136,7,16,4,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,102,64,26,19,8,136,7,16,7,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,125,130,64,26,19,8,136,7,16,8,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,136,7,16,6,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,85,103,64,26,19,8,136,7,16,10,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,127,129,64,26,19,8,136,7,16,11,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,136,7,16,9,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,106,64,26,19,8,136,7,16,13,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,117,127,64,26,19,8,136,7,16,14,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,136,7,16,12,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,110,64,26,19,8,136,7,16,16,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,207,123,64,26,19,8,136,7,16,17,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,136,7,16,15,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,37,112,64,26,19,8,136,7,16,19,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,250,122,64,26,19,8,136,7,16,20,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,136,7,16,18,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,143,112,64,26,19,8,136,7,16,22,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,250,122,64,26,19,8,136,7,16,23,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,136,7,16,21,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,74,113,64,26,19,8,136,7,16,25,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,101,123,64,26,19,8,136,7,16,26,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,136,7,16,24,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,218,124,64,26,19,8,136,7,16,29,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,113,64,26,19,8,136,7,16,28,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,136,7,16,27,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,111,114,64,26,19,8,136,7,16,31,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,10,127,64,26,19,8,136,7,16,32,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,136,7,16,30,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,165,114,64,26,19,8,136,7,16,34,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,234,129,64,26,19,8,136,7,16,35,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,136,7,16,33,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,136,7,16,5,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,136,7,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,136,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,161,10,18,158,10,10,155,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,137,7,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,53,48,53,101,102,26,19,8,137,7,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,137,7,16,4,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,106,121,64,26,19,8,137,7,16,7,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,151,130,64,26,19,8,137,7,16,8,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,137,7,16,6,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,133,121,64,26,19,8,137,7,16,10,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,210,128,64,26,19,8,137,7,16,11,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,137,7,16,9,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,122,64,26,19,8,137,7,16,13,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,53,126,64,26,19,8,137,7,16,14,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,137,7,16,12,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,123,64,26,19,8,137,7,16,16,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,42,125,64,26,19,8,137,7,16,17,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,137,7,16,15,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,191,124,64,26,19,8,137,7,16,19,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,165,124,64,26,19,8,137,7,16,20,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,137,7,16,18,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,186,126,64,26,19,8,137,7,16,22,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,191,124,64,26,19,8,137,7,16,23,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,137,7,16,21,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,229,125,64,26,19,8,137,7,16,26,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,90,128,64,26,19,8,137,7,16,25,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,137,7,16,24,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,250,128,64,26,19,8,137,7,16,28,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,63,127,64,26,19,8,137,7,16,29,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,137,7,16,27,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,34,129,64,26,19,8,137,7,16,31,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,58,130,64,26,19,8,137,7,16,32,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,137,7,16,30,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,7,129,64,26,19,8,137,7,16,34,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,111,130,64,26,19,8,137,7,16,35,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,137,7,16,33,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,137,7,16,5,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,137,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,195,8,18,192,8,10,189,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,138,7,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,53,48,53,101,102,26,19,8,138,7,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,138,7,16,4,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,127,102,64,26,19,8,138,7,16,7,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,242,131,64,26,19,8,138,7,16,8,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,138,7,16,6,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,102,64,26,19,8,138,7,16,10,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,242,131,64,26,19,8,138,7,16,11,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,138,7,16,9,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,170,111,64,26,19,8,138,7,16,13,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,197,133,64,26,19,8,138,7,16,14,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,138,7,16,12,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,113,64,26,19,8,138,7,16,16,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,114,134,64,26,19,8,138,7,16,17,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,138,7,16,15,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,116,64,26,19,8,138,7,16,19,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,221,134,64,26,19,8,138,7,16,20,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,138,7,16,18,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,170,117,64,26,19,8,138,7,16,22,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,247,134,64,26,19,8,138,7,16,23,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,138,7,16,21,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,197,127,64,26,19,8,138,7,16,25,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,79,132,64,26,19,8,138,7,16,26,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,138,7,16,24,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,128,64,26,19,8,138,7,16,28,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,175,131,64,26,19,8,138,7,16,29,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,138,7,16,27,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,138,7,16,5,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,138,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,157,18,18,154,18,10,151,18,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,139,7,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,53,48,53,101,102,26,19,8,139,7,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,139,7,16,4,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,224,16,10,6,112,111,105,110,116,115,18,213,16,18,210,16,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,15,131,64,26,19,8,139,7,16,8,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,132,64,26,19,8,139,7,16,7,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,6,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,26,132,64,26,19,8,139,7,16,10,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,207,129,64,26,19,8,139,7,16,11,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,9,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,229,131,64,26,19,8,139,7,16,13,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,250,128,64,26,19,8,139,7,16,14,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,12,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,242,131,64,26,19,8,139,7,16,16,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,143,127,64,26,19,8,139,7,16,17,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,15,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,13,132,64,26,19,8,139,7,16,19,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,79,126,64,26,19,8,139,7,16,20,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,18,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,253,132,64,26,19,8,139,7,16,22,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,250,122,64,26,19,8,139,7,16,23,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,21,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,50,133,64,26,19,8,139,7,16,25,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,143,122,64,26,19,8,139,7,16,26,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,24,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,170,133,64,26,19,8,139,7,16,28,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,117,122,64,26,19,8,139,7,16,29,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,27,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,250,133,64,26,19,8,139,7,16,31,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,122,64,26,19,8,139,7,16,32,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,30,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,74,134,64,26,19,8,139,7,16,34,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,47,123,64,26,19,8,139,7,16,35,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,33,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,71,135,64,26,19,8,139,7,16,37,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,42,125,64,26,19,8,139,7,16,38,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,36,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,125,135,64,26,19,8,139,7,16,40,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,202,125,64,26,19,8,139,7,16,41,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,39,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,159,126,64,26,19,8,139,7,16,44,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,165,135,64,26,19,8,139,7,16,43,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,42,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,178,135,64,26,19,8,139,7,16,46,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,143,127,64,26,19,8,139,7,16,47,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,45,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,151,135,64,26,19,8,139,7,16,49,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,130,128,64,26,19,8,139,7,16,50,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,48,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,5,135,64,26,19,8,139,7,16,52,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,114,129,64,26,19,8,139,7,16,53,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,51,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,127,134,64,26,19,8,139,7,16,55,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,18,130,64,26,19,8,139,7,16,56,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,54,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,183,133,64,26,19,8,139,7,16,58,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,191,130,64,26,19,8,139,7,16,59,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,57,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,133,64,26,19,8,139,7,16,61,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,2,131,64,26,19,8,139,7,16,62,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,60,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,5,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,139,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,34,19,8,206,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,144,11,18,141,11,10,138,11,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,140,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,106,64,26,19,8,140,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,124,108,192,26,19,8,140,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,140,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,105,64,26,19,8,140,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,124,108,192,26,19,8,140,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,140,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,102,64,26,19,8,140,7,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,20,107,192,26,19,8,140,7,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,140,7,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,100,64,26,19,8,140,7,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,228,104,192,26,19,8,140,7,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,140,7,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,100,64,26,19,8,140,7,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,124,103,192,26,19,8,140,7,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,140,7,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,104,64,26,19,8,140,7,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,132,100,192,26,19,8,140,7,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,140,7,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,105,64,26,19,8,140,7,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,228,99,192,26,19,8,140,7,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,140,7,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,108,64,26,19,8,140,7,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,108,99,192,26,19,8,140,7,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,140,7,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,212,100,192,26,19,8,140,7,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,111,64,26,19,8,140,7,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,140,7,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,113,64,26,19,8,140,7,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,212,100,192,26,19,8,140,7,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,140,7,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,113,64,26,19,8,140,7,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,252,100,192,26,19,8,140,7,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,140,7,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,140,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,140,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,140,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,140,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,141,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,141,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,141,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,110,64,26,19,8,141,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,103,192,26,19,8,141,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,141,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,116,64,26,19,8,141,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,12,105,192,26,19,8,141,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,141,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,141,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,141,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,199,9,18,196,9,10,193,9,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,53,48,53,101,102,26,19,8,142,7,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,142,7,16,4,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,253,132,64,26,19,8,142,7,16,7,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,103,133,64,26,19,8,142,7,16,8,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,142,7,16,6,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,253,132,64,26,19,8,142,7,16,10,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,226,132,64,26,19,8,142,7,16,11,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,142,7,16,9,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,23,133,64,26,19,8,142,7,16,13,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,186,132,64,26,19,8,142,7,16,14,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,142,7,16,12,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,45,135,64,26,19,8,142,7,16,16,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,77,133,64,26,19,8,142,7,16,17,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,142,7,16,15,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,45,135,64,26,19,8,142,7,16,19,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,210,133,64,26,19,8,142,7,16,20,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,142,7,16,18,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,31,135,64,26,19,8,142,7,16,22,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,250,133,64,26,19,8,142,7,16,23,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,142,7,16,21,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,132,64,26,19,8,142,7,16,25,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,133,64,26,19,8,142,7,16,26,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,142,7,16,24,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,132,64,26,19,8,142,7,16,28,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,143,133,64,26,19,8,142,7,16,29,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,142,7,16,27,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,253,132,64,26,19,8,142,7,16,31,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,117,133,64,26,19,8,142,7,16,32,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,142,7,16,30,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,142,7,16,5,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,142,7,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,142,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,34,19,8,209,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,142,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,142,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,142,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,115,64,26,19,8,142,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,108,104,192,26,19,8,142,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,142,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,114,64,26,19,8,142,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,140,102,192,26,19,8,142,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,142,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,114,64,26,19,8,142,7,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,28,99,192,26,19,8,142,7,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,142,7,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,114,64,26,19,8,142,7,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,116,96,192,26,19,8,142,7,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,142,7,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,142,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,142,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,190,3,18,187,3,10,184,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,144,7,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,53,48,53,101,102,26,19,8,144,7,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,144,7,16,4,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,7,134,64,26,19,8,144,7,16,7,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,90,127,64,26,19,8,144,7,16,8,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,144,7,16,6,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,149,136,64,26,19,8,144,7,16,10,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,10,127,64,26,19,8,144,7,16,11,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,144,7,16,9,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,144,7,16,5,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,144,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,34,19,8,207,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,161,10,18,158,10,10,155,10,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,144,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,144,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,120,64,26,19,8,144,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,212,105,192,26,19,8,144,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,144,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,119,64,26,19,8,144,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,108,104,192,26,19,8,144,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,144,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,122,64,26,19,8,144,7,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,101,192,26,19,8,144,7,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,144,7,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,44,103,192,26,19,8,144,7,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,122,64,26,19,8,144,7,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,144,7,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,122,64,26,19,8,144,7,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,108,104,192,26,19,8,144,7,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,144,7,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,121,64,26,19,8,144,7,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,76,106,192,26,19,8,144,7,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,144,7,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,120,64,26,19,8,144,7,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,196,106,192,26,19,8,144,7,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,144,7,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,196,106,192,26,19,8,144,7,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,119,64,26,19,8,144,7,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,144,7,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,119,64,26,19,8,144,7,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,116,106,192,26,19,8,144,7,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,144,7,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,36,106,192,26,19,8,144,7,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,119,64,26,19,8,144,7,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,144,7,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,144,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,144,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,144,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,190,3,18,187,3,10,184,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,146,7,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,53,48,53,101,102,26,19,8,146,7,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,146,7,16,4,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,237,133,64,26,19,8,146,7,16,7,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,128,64,26,19,8,146,7,16,8,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,146,7,16,6,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,229,136,64,26,19,8,146,7,16,10,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,197,128,64,26,19,8,146,7,16,11,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,146,7,16,9,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,146,7,16,5,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,146,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,34,19,8,208,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,242,13,18,239,13,10,236,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,145,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,145,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,145,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,127,64,26,19,8,145,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,60,107,192,26,19,8,145,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,125,64,26,19,8,145,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,188,104,192,26,19,8,145,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,4,103,192,26,19,8,145,7,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,125,64,26,19,8,145,7,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,125,64,26,19,8,145,7,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,188,99,192,26,19,8,145,7,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,127,64,26,19,8,145,7,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,44,98,192,26,19,8,145,7,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,128,64,26,19,8,145,7,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,220,97,192,26,19,8,145,7,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,128,64,26,19,8,145,7,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,44,98,192,26,19,8,145,7,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,129,64,26,19,8,145,7,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,108,99,192,26,19,8,145,7,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,178,129,64,26,19,8,145,7,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,36,101,192,26,19,8,145,7,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,129,64,26,19,8,145,7,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,4,103,192,26,19,8,145,7,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,138,129,64,26,19,8,145,7,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,108,104,192,26,19,8,145,7,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,129,64,26,19,8,145,7,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,12,105,192,26,19,8,145,7,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,128,64,26,19,8,145,7,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,172,105,192,26,19,8,145,7,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,127,64,26,19,8,145,7,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,172,105,192,26,19,8,145,7,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,145,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,169,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,148,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,148,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,148,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,26,131,64,26,19,8,148,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,188,109,192,26,19,8,148,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,148,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,133,64,26,19,8,148,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,188,109,192,26,19,8,148,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,148,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,12,110,192,26,19,8,148,7,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,78,134,64,26,19,8,148,7,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,148,7,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,148,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,148,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,246,5,18,243,5,10,240,5,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,210,132,64,26,19,8,149,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,108,109,192,26,19,8,149,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,149,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,132,64,26,19,8,149,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,76,106,192,26,19,8,149,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,149,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,14,133,64,26,19,8,149,7,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,252,100,192,26,19,8,149,7,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,149,7,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,14,133,64,26,19,8,149,7,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,108,99,192,26,19,8,149,7,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,149,7,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,230,132,64,26,19,8,149,7,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,196,96,192,26,19,8,149,7,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,149,7,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,149,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,149,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,149,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,149,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,149,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,150,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,150,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,150,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,136,64,26,19,8,150,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,196,111,192,26,19,8,150,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,150,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,136,64,26,19,8,150,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,220,102,192,26,19,8,150,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,150,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,146,136,64,26,19,8,150,7,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,28,99,192,26,19,8,150,7,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,150,7,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,150,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,150,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,144,11,18,141,11,10,138,11,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,151,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,151,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,135,64,26,19,8,151,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,92,110,192,26,19,8,151,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,151,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,137,64,26,19,8,151,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,111,192,26,19,8,151,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,151,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,54,138,64,26,19,8,151,7,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,111,192,26,19,8,151,7,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,151,7,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,94,138,64,26,19,8,151,7,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,76,111,192,26,19,8,151,7,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,151,7,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,138,64,26,19,8,151,7,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,108,192,26,19,8,151,7,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,151,7,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,114,138,64,26,19,8,151,7,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,103,192,26,19,8,151,7,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,151,7,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,74,138,64,26,19,8,151,7,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,172,100,192,26,19,8,151,7,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,151,7,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,138,64,26,19,8,151,7,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,52,100,192,26,19,8,151,7,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,151,7,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,52,100,192,26,19,8,151,7,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,137,64,26,19,8,151,7,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,151,7,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,136,64,26,19,8,151,7,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,12,100,192,26,19,8,151,7,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,151,7,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,106,136,64,26,19,8,151,7,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,188,99,192,26,19,8,151,7,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,151,7,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,151,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,151,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,151,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,226,136,64,26,19,8,152,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,20,107,192,26,19,8,152,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,152,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,139,64,26,19,8,152,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,124,108,192,26,19,8,152,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,152,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,152,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,152,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,152,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,152,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,152,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,153,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,153,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,153,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,137,64,26,19,8,153,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,108,104,192,26,19,8,153,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,153,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,38,139,64,26,19,8,153,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,68,104,192,26,19,8,153,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,153,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,153,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,153,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,144,11,18,141,11,10,138,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,154,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,154,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,154,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,136,64,26,19,8,154,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,88,95,192,26,19,8,154,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,154,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,136,64,26,19,8,154,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,136,87,192,26,19,8,154,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,154,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,136,64,26,19,8,154,7,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,152,86,192,26,19,8,154,7,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,154,7,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,137,64,26,19,8,154,7,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,56,87,192,26,19,8,154,7,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,154,7,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,152,86,192,26,19,8,154,7,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,34,138,64,26,19,8,154,7,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,154,7,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,138,64,26,19,8,154,7,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,232,86,192,26,19,8,154,7,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,154,7,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,114,138,64,26,19,8,154,7,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,168,90,192,26,19,8,154,7,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,154,7,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,94,138,64,26,19,8,154,7,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,24,94,192,26,19,8,154,7,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,154,7,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,137,64,26,19,8,154,7,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,24,94,192,26,19,8,154,7,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,154,7,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,137,64,26,19,8,154,7,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,120,93,192,26,19,8,154,7,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,154,7,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,206,136,64,26,19,8,154,7,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,24,94,192,26,19,8,154,7,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,154,7,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,154,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,154,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,204,14,18,201,14,10,198,14,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,100,99,49,53,102,26,19,8,155,7,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,155,7,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,71,230,93,194,185,52,112,64,26,19,8,155,7,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,178,50,3,205,23,135,109,64,26,19,8,155,7,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,178,50,3,205,23,135,109,64,26,19,8,155,7,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,49,62,141,173,222,137,110,64,26,19,8,155,7,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,201,129,57,239,134,145,110,64,26,19,8,155,7,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,3,160,32,105,0,117,108,64,26,19,8,155,7,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,248,245,117,68,3,112,64,26,19,8,155,7,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,73,49,110,108,254,255,106,64,26,19,8,155,7,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,79,203,78,88,40,113,64,26,19,8,155,7,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,96,210,249,220,69,192,105,64,26,19,8,155,7,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,5,21,183,36,141,115,64,26,19,8,155,7,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,120,115,133,77,141,128,104,64,26,19,8,155,7,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,17,105,9,209,24,60,120,64,26,19,8,155,7,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,120,115,133,77,141,128,104,64,26,19,8,155,7,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,180,223,90,132,191,203,121,64,26,19,8,155,7,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,50,226,55,74,143,245,105,64,26,19,8,155,7,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,203,46,145,166,46,214,122,64,26,19,8,155,7,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,189,96,40,180,218,159,107,64,26,19,8,155,7,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,40,102,234,164,175,144,123,64,26,19,8,155,7,16,34,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,235,254,148,248,184,180,109,64,26,19,8,155,7,16,35,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,33,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,109,165,226,89,213,101,124,64,26,19,8,155,7,16,37,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,1,254,58,230,167,132,112,64,26,19,8,155,7,16,38,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,36,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,181,32,199,30,155,124,64,26,19,8,155,7,16,40,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,117,132,202,6,152,73,114,64,26,19,8,155,7,16,41,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,39,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,181,32,199,30,155,124,64,26,19,8,155,7,16,43,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,140,42,214,1,27,121,116,64,26,19,8,155,7,16,44,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,42,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,173,129,16,122,128,124,64,26,19,8,155,7,16,46,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,47,74,82,220,173,227,116,64,26,19,8,155,7,16,47,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,45,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,109,165,226,89,213,101,124,64,26,19,8,155,7,16,49,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,47,74,82,220,173,227,116,64,26,19,8,155,7,16,50,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,48,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,155,7,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,155,7,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,162,23,18,159,23,10,156,23,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,156,7,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,100,99,49,53,102,26,19,8,156,7,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,156,7,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,250,21,10,6,112,111,105,110,116,115,18,239,21,18,236,21,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,16,197,94,52,104,208,124,64,26,19,8,156,7,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,24,77,113,8,23,143,113,64,26,19,8,156,7,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,12,246,159,50,192,125,64,26,19,8,156,7,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,24,77,113,8,23,143,113,64,26,19,8,156,7,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,99,203,120,70,229,126,64,26,19,8,156,7,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,210,100,78,44,5,223,113,64,26,19,8,156,7,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,178,1,155,181,239,127,64,26,19,8,156,7,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,70,148,8,116,225,126,114,64,26,19,8,156,7,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,217,116,173,76,27,85,128,64,26,19,8,156,7,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,93,227,62,150,80,137,115,64,26,19,8,156,7,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,0,156,94,18,125,128,64,26,19,8,156,7,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,0,90,144,73,247,24,117,64,26,19,8,156,7,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,0,156,94,18,125,128,64,26,19,8,156,7,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,69,240,93,215,48,19,119,64,26,19,8,156,7,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,229,240,93,241,200,71,128,64,26,19,8,156,7,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,139,47,86,140,86,232,119,64,26,19,8,156,7,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,94,16,212,50,136,120,64,26,19,8,156,7,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,109,170,98,228,16,213,127,64,26,19,8,156,7,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,16,28,52,13,124,245,125,64,26,19,8,156,7,16,34,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,92,150,105,210,179,66,121,64,26,19,8,156,7,16,35,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,33,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,160,98,207,153,246,120,64,26,19,8,156,7,16,37,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,162,213,97,135,217,23,122,64,26,19,8,156,7,16,38,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,36,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,92,234,143,56,178,116,64,26,19,8,156,7,16,40,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,115,229,159,244,34,77,122,64,26,19,8,156,7,16,41,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,39,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,98,189,20,244,38,110,64,26,19,8,156,7,16,43,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,115,229,159,244,34,77,122,64,26,19,8,156,7,16,44,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,42,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,108,243,10,24,242,177,108,64,26,19,8,156,7,16,46,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,139,221,0,62,126,50,122,64,26,19,8,156,7,16,47,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,45,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,167,243,33,236,82,104,64,26,19,8,156,7,16,49,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,46,166,167,63,253,119,121,64,26,19,8,156,7,16,50,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,48,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,64,75,158,190,156,190,99,64,26,19,8,156,7,16,52,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,46,79,210,102,233,82,120,64,26,19,8,156,7,16,53,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,51,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,64,157,243,12,117,116,97,64,26,19,8,156,7,16,55,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,46,248,252,141,213,45,119,64,26,19,8,156,7,16,56,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,54,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,232,184,4,217,175,88,118,64,26,19,8,156,7,16,59,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,250,93,251,87,79,159,96,64,26,19,8,156,7,16,58,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,57,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,78,189,234,5,106,96,64,26,19,8,156,7,16,61,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,93,145,233,71,120,211,117,64,26,19,8,156,7,16,62,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,60,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,172,229,151,207,206,114,64,26,19,8,156,7,16,65,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,41,78,189,234,5,106,96,64,26,19,8,156,7,16,64,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,63,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,140,124,43,80,243,46,114,64,26,19,8,156,7,16,68,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,250,93,251,87,79,159,96,64,26,19,8,156,7,16,67,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,66,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,64,157,243,12,117,116,97,64,26,19,8,156,7,16,70,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,94,53,148,228,40,63,113,64,26,19,8,156,7,16,71,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,69,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,236,41,47,228,126,98,64,26,19,8,156,7,16,73,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,234,5,218,156,76,159,112,64,26,19,8,156,7,16,74,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,72,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,138,150,115,194,147,100,64,26,19,8,156,7,16,76,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,71,230,93,194,185,52,112,64,26,19,8,156,7,16,77,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,75,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,156,135,119,71,89,232,103,64,26,19,8,156,7,16,79,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,71,230,93,194,185,52,112,64,26,19,8,156,7,16,80,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,78,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,156,7,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,184,44,18,181,44,10,178,44,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,157,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,157,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,157,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,251,42,10,6,112,111,105,110,116,115,18,240,42,18,237,42,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,96,64,26,19,8,157,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,140,102,192,26,19,8,157,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,102,64,26,19,8,157,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,44,103,192,26,19,8,157,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,112,64,26,19,8,157,7,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,44,103,192,26,19,8,157,7,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,124,64,26,19,8,157,7,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,180,102,192,26,19,8,157,7,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,54,133,64,26,19,8,157,7,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,101,192,26,19,8,157,7,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,136,64,26,19,8,157,7,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,101,192,26,19,8,157,7,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,139,64,26,19,8,157,7,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,20,102,192,26,19,8,157,7,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,139,64,26,19,8,157,7,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,68,104,192,26,19,8,157,7,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,138,64,26,19,8,157,7,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,84,108,192,26,19,8,157,7,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,137,64,26,19,8,157,7,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,180,107,192,26,19,8,157,7,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,58,134,64,26,19,8,157,7,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,140,107,192,26,19,8,157,7,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,123,64,26,19,8,157,7,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,148,109,192,26,19,8,157,7,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,113,64,26,19,8,157,7,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,188,109,192,26,19,8,157,7,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,105,64,26,19,8,157,7,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,52,110,192,26,19,8,157,7,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,52,110,192,26,19,8,157,7,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,99,64,26,19,8,157,7,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,98,64,26,19,8,157,7,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,236,106,192,26,19,8,157,7,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,98,64,26,19,8,157,7,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,101,192,26,19,8,157,7,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,116,96,192,26,19,8,157,7,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,99,64,26,19,8,157,7,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,100,64,26,19,8,157,7,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,72,91,192,26,19,8,157,7,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,106,64,26,19,8,157,7,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,152,91,192,26,19,8,157,7,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,116,64,26,19,8,157,7,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,24,94,192,26,19,8,157,7,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,178,129,64,26,19,8,157,7,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,248,95,192,26,19,8,157,7,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,136,64,26,19,8,157,7,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,44,98,192,26,19,8,157,7,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,158,139,64,26,19,8,157,7,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,4,98,192,26,19,8,157,7,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,140,64,26,19,8,157,7,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,98,192,26,19,8,157,7,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,140,64,26,19,8,157,7,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,68,99,192,26,19,8,157,7,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,82,140,64,26,19,8,157,7,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,252,100,192,26,19,8,157,7,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,140,64,26,19,8,157,7,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,44,103,192,26,19,8,157,7,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,140,64,26,19,8,157,7,16,91,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,108,104,192,26,19,8,157,7,16,92,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,90,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,138,139,64,26,19,8,157,7,16,94,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,116,106,192,26,19,8,157,7,16,95,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,93,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,190,137,64,26,19,8,157,7,16,97,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,180,107,192,26,19,8,157,7,16,98,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,96,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,42,135,64,26,19,8,157,7,16,100,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,180,107,192,26,19,8,157,7,16,101,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,99,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,236,106,192,26,19,8,157,7,16,104,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,26,131,64,26,19,8,157,7,16,103,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,102,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,125,64,26,19,8,157,7,16,106,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,106,192,26,19,8,157,7,16,107,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,105,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,114,64,26,19,8,157,7,16,109,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,106,192,26,19,8,157,7,16,110,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,108,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,107,64,26,19,8,157,7,16,112,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,76,106,192,26,19,8,157,7,16,113,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,111,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,105,64,26,19,8,157,7,16,115,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,36,106,192,26,19,8,157,7,16,116,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,114,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,103,64,26,19,8,157,7,16,118,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,148,104,192,26,19,8,157,7,16,119,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,117,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,102,64,26,19,8,157,7,16,121,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,20,102,192,26,19,8,157,7,16,122,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,120,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,103,64,26,19,8,157,7,16,124,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,92,100,192,26,19,8,157,7,16,125,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,123,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,110,18,108,10,106,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,148,99,192,26,20,8,157,7,16,128,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,105,64,26,19,8,157,7,16,127,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,126,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,244,98,192,26,20,8,157,7,16,131,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,107,64,26,20,8,157,7,16,130,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,157,7,16,129,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,120,64,26,20,8,157,7,16,133,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,100,97,192,26,20,8,157,7,16,134,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,157,7,16,132,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,128,64,26,20,8,157,7,16,136,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,204,98,192,26,20,8,157,7,16,137,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,157,7,16,135,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,136,64,26,20,8,157,7,16,139,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,60,102,192,26,20,8,157,7,16,140,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,157,7,16,138,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,130,137,64,26,20,8,157,7,16,142,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,4,103,192,26,20,8,157,7,16,143,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,157,7,16,141,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,137,64,26,20,8,157,7,16,145,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,164,103,192,26,20,8,157,7,16,146,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,157,7,16,144,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,170,137,64,26,20,8,157,7,16,148,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,28,104,192,26,20,8,157,7,16,149,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,157,7,16,147,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,10,137,64,26,20,8,157,7,16,151,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,244,103,192,26,20,8,157,7,16,152,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,157,7,16,150,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,157,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,169,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,171,29,18,168,29,10,165,29,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,158,7,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,100,99,49,53,102,26,19,8,158,7,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,158,7,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,131,28,10,6,112,111,105,110,116,115,18,248,27,18,245,27,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,24,164,70,225,42,180,114,64,26,19,8,158,7,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,109,69,96,102,202,103,106,64,26,19,8,158,7,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,131,66,65,58,97,188,109,64,26,19,8,158,7,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,210,187,35,5,25,4,115,64,26,19,8,158,7,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,15,193,49,164,172,102,111,64,26,19,8,158,7,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,233,179,132,78,116,233,114,64,26,19,8,158,7,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,172,229,151,207,206,114,64,26,19,8,158,7,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,224,208,111,17,246,155,111,64,26,19,8,158,7,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,224,208,111,17,246,155,111,64,26,19,8,158,7,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,47,69,210,81,114,116,113,64,26,19,8,158,7,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,187,21,24,10,150,212,112,64,26,19,8,158,7,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,108,161,181,201,25,252,110,64,26,19,8,158,7,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,164,212,245,130,167,107,64,26,19,8,158,7,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,119,207,218,176,220,20,109,64,26,19,8,158,7,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,119,57,218,15,179,103,64,26,19,8,158,7,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,190,178,125,2,179,85,105,64,26,19,8,158,7,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,40,170,18,78,85,254,100,64,26,19,8,158,7,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,4,68,203,5,177,224,103,64,26,19,8,158,7,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,11,166,9,119,233,98,64,26,19,8,158,7,16,34,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,97,36,79,43,30,118,103,64,26,19,8,158,7,16,35,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,33,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,141,181,159,43,63,97,64,26,19,8,158,7,16,37,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,97,36,79,43,30,118,103,64,26,19,8,158,7,16,38,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,36,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,4,68,203,5,177,224,103,64,26,19,8,158,7,16,41,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,111,141,181,159,43,63,97,64,26,19,8,158,7,16,40,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,39,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,96,210,249,220,69,192,105,64,26,19,8,158,7,16,44,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,203,27,228,118,192,30,99,64,26,19,8,158,7,16,43,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,42,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,138,150,115,194,147,100,64,26,19,8,158,7,16,46,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,166,17,242,145,107,149,106,64,26,19,8,158,7,16,47,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,45,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,185,80,187,158,51,101,64,26,19,8,158,7,16,49,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,166,17,242,145,107,149,106,64,26,19,8,158,7,16,50,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,48,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,64,75,158,190,156,190,99,64,26,19,8,158,7,16,52,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,50,226,55,74,143,245,105,64,26,19,8,158,7,16,53,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,51,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,96,210,249,220,69,192,105,64,26,19,8,158,7,16,56,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,111,141,181,159,43,63,97,64,26,19,8,158,7,16,55,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,54,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,17,173,49,122,190,169,97,64,26,19,8,158,7,16,58,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,213,1,180,36,34,96,106,64,26,19,8,158,7,16,59,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,57,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,59,96,81,83,137,99,64,26,19,8,158,7,16,61,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,73,49,110,108,254,255,106,64,26,19,8,158,7,16,62,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,60,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,59,96,81,83,137,99,64,26,19,8,158,7,16,64,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,26,65,172,217,71,53,107,64,26,19,8,158,7,16,65,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,63,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,93,251,87,79,159,96,64,26,19,8,158,7,16,67,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,73,49,110,108,254,255,106,64,26,19,8,158,7,16,68,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,66,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,109,57,197,152,212,96,64,26,19,8,158,7,16,70,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,143,112,102,33,36,213,107,64,26,19,8,158,7,16,71,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,69,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,3,160,32,105,0,117,108,64,26,19,8,158,7,16,74,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,17,173,49,122,190,169,97,64,26,19,8,158,7,16,73,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,72,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,203,27,228,118,192,30,99,64,26,19,8,158,7,16,76,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,166,191,156,67,147,223,108,64,26,19,8,158,7,16,77,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,75,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,43,34,228,9,84,99,64,26,19,8,158,7,16,79,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,72,223,24,30,38,74,109,64,26,19,8,158,7,16,80,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,78,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,138,150,115,194,147,100,64,26,19,8,158,7,16,82,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,235,254,148,248,184,180,109,64,26,19,8,158,7,16,83,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,81,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,249,72,112,196,8,102,64,26,19,8,158,7,16,85,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,2,78,203,26,40,191,110,64,26,19,8,158,7,16,86,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,84,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,140,37,86,119,223,9,113,64,26,19,8,158,7,16,89,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,132,230,235,214,17,40,105,64,26,19,8,158,7,16,88,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,87,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,248,21,166,30,238,199,105,64,26,19,8,158,7,16,91,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,233,92,175,117,96,196,113,64,26,19,8,158,7,16,92,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,90,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,248,21,166,30,238,199,105,64,26,19,8,158,7,16,94,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,164,116,140,153,78,20,114,64,26,19,8,158,7,16,95,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,93,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,85,158,211,19,157,106,64,26,19,8,158,7,16,97,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,94,140,105,189,60,100,114,64,26,19,8,158,7,16,98,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,96,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,178,132,88,27,240,60,107,64,26,19,8,158,7,16,100,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,94,140,105,189,60,100,114,64,26,19,8,158,7,16,101,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,99,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,158,7,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,191,42,18,188,42,10,185,42,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,159,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,159,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,159,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,151,41,10,6,112,111,105,110,116,115,18,140,41,18,137,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,123,64,26,19,8,159,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,36,101,192,26,19,8,159,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,180,102,192,26,19,8,159,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,159,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,107,64,26,19,8,159,7,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,116,106,192,26,19,8,159,7,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,106,64,26,19,8,159,7,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,180,107,192,26,19,8,159,7,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,107,64,26,19,8,159,7,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,108,192,26,19,8,159,7,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,110,64,26,19,8,159,7,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,196,111,192,26,19,8,159,7,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,112,64,26,19,8,159,7,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,0,170,112,192,26,19,8,159,7,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,114,64,26,19,8,159,7,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,0,14,113,192,26,19,8,159,7,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,0,18,114,192,26,19,8,159,7,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,124,64,26,19,8,159,7,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,128,64,26,19,8,159,7,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,0,18,114,192,26,19,8,159,7,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,159,7,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,0,134,113,192,26,19,8,159,7,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,134,64,26,19,8,159,7,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,0,170,112,192,26,19,8,159,7,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,202,135,64,26,19,8,159,7,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,111,192,26,19,8,159,7,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,136,64,26,19,8,159,7,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,124,108,192,26,19,8,159,7,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,137,64,26,19,8,159,7,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,76,106,192,26,19,8,159,7,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,136,64,26,19,8,159,7,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,204,103,192,26,19,8,159,7,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,136,64,26,19,8,159,7,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,228,99,192,26,19,8,159,7,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,135,64,26,19,8,159,7,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,20,97,192,26,19,8,159,7,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,118,134,64,26,19,8,159,7,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,168,95,192,26,19,8,159,7,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,133,64,26,19,8,159,7,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,200,93,192,26,19,8,159,7,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,50,132,64,26,19,8,159,7,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,216,92,192,26,19,8,159,7,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,126,64,26,19,8,159,7,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,104,94,192,26,19,8,159,7,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,111,64,26,19,8,159,7,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,244,98,192,26,19,8,159,7,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,107,64,26,19,8,159,7,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,68,99,192,26,19,8,159,7,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,104,64,26,19,8,159,7,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,12,100,192,26,19,8,159,7,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,100,64,26,19,8,159,7,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,220,102,192,26,19,8,159,7,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,100,64,26,19,8,159,7,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,108,104,192,26,19,8,159,7,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,112,64,26,19,8,159,7,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,124,108,192,26,19,8,159,7,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,115,64,26,19,8,159,7,16,91,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,188,109,192,26,19,8,159,7,16,92,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,90,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,76,111,192,26,19,8,159,7,16,95,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,146,131,64,26,19,8,159,7,16,94,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,93,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,212,110,192,26,19,8,159,7,16,98,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,94,133,64,26,19,8,159,7,16,97,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,96,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,22,135,64,26,19,8,159,7,16,100,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,228,109,192,26,19,8,159,7,16,101,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,99,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,186,136,64,26,19,8,159,7,16,103,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,84,108,192,26,19,8,159,7,16,104,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,102,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,246,136,64,26,19,8,159,7,16,106,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,60,107,192,26,19,8,159,7,16,107,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,105,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,137,64,26,19,8,159,7,16,109,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,92,105,192,26,19,8,159,7,16,110,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,108,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,137,64,26,19,8,159,7,16,112,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,228,104,192,26,19,8,159,7,16,113,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,111,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,220,102,192,26,19,8,159,7,16,116,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,135,64,26,19,8,159,7,16,115,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,114,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,101,192,26,19,8,159,7,16,119,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,133,64,26,19,8,159,7,16,118,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,117,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,36,101,192,26,19,8,159,7,16,122,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,10,132,64,26,19,8,159,7,16,121,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,120,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,106,64,26,19,8,159,7,16,124,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,36,101,192,26,19,8,159,7,16,125,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,123,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,106,64,26,19,8,159,7,16,127,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,156,101,192,26,20,8,159,7,16,128,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,126,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,112,64,26,20,8,159,7,16,130,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,204,103,192,26,20,8,159,7,16,131,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,159,7,16,129,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,114,64,26,20,8,159,7,16,133,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,188,104,192,26,20,8,159,7,16,134,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,159,7,16,132,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,118,64,26,20,8,159,7,16,136,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,172,105,192,26,20,8,159,7,16,137,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,159,7,16,135,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,127,64,26,20,8,159,7,16,139,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,36,106,192,26,20,8,159,7,16,140,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,159,7,16,138,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,58,129,64,26,20,8,159,7,16,142,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,212,105,192,26,20,8,159,7,16,143,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,159,7,16,141,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,226,131,64,26,20,8,159,7,16,145,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,108,104,192,26,20,8,159,7,16,146,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,159,7,16,144,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,159,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,208,15,18,205,15,10,202,15,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,160,7,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,100,99,49,53,102,26,19,8,160,7,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,160,7,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,147,14,10,6,112,111,105,110,116,115,18,136,14,18,133,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,247,55,168,173,27,122,64,26,19,8,160,7,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,167,99,71,224,67,75,104,64,26,19,8,160,7,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,239,152,241,8,1,122,64,26,19,8,160,7,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,144,20,17,190,212,64,103,64,26,19,8,160,7,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,207,28,23,118,150,121,64,26,19,8,160,7,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,214,165,94,193,210,203,101,64,26,19,8,160,7,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,112,168,135,189,86,120,64,26,19,8,160,7,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,51,216,55,53,24,23,99,64,26,19,8,160,7,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,17,18,52,248,4,23,119,64,26,19,8,160,7,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,5,58,203,240,57,2,97,64,26,19,8,160,7,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,11,24,65,126,36,112,93,64,26,19,8,160,7,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,111,155,226,68,94,135,117,64,26,19,8,160,7,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,76,172,34,239,124,116,64,26,19,8,160,7,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,35,185,204,238,107,48,92,64,26,19,8,160,7,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,35,185,204,238,107,48,92,64,26,19,8,160,7,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,204,36,145,145,183,247,115,64,26,19,8,160,7,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,36,145,145,183,247,115,64,26,19,8,160,7,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,151,150,49,232,111,26,95,64,26,19,8,160,7,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,227,115,199,179,38,2,117,64,26,19,8,160,7,16,34,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,121,105,133,56,22,162,97,64,26,19,8,160,7,16,35,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,33,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,5,21,183,36,141,115,64,26,19,8,160,7,16,37,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,98,26,79,22,167,151,96,64,26,19,8,160,7,16,38,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,36,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,36,145,145,183,247,115,64,26,19,8,160,7,16,40,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,28,137,1,19,169,12,98,64,26,19,8,160,7,16,41,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,39,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,158,221,249,37,237,7,115,64,26,19,8,160,7,16,43,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,28,137,1,19,169,12,98,64,26,19,8,160,7,16,44,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,42,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,158,221,249,37,237,7,115,64,26,19,8,160,7,16,46,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,238,152,63,128,242,65,98,64,26,19,8,160,7,16,47,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,45,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,181,44,48,72,92,18,116,64,26,19,8,160,7,16,49,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,168,7,242,124,244,182,99,64,26,19,8,160,7,16,50,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,48,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,18,187,94,31,241,241,117,64,26,19,8,160,7,16,52,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,50,52,141,152,103,171,103,64,26,19,8,160,7,16,53,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,51,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,160,7,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,34,19,8,199,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,161,7,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,100,99,49,53,102,26,19,8,161,7,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,161,7,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,239,152,241,8,1,122,64,26,19,8,161,7,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,4,68,203,5,177,224,103,64,26,19,8,161,7,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,161,7,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,239,152,241,8,1,122,64,26,19,8,161,7,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,143,194,187,111,252,138,105,64,26,19,8,161,7,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,161,7,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,247,55,168,173,27,122,64,26,19,8,161,7,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,96,210,249,220,69,192,105,64,26,19,8,161,7,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,161,7,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,161,7,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,161,7,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,162,7,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,56,49,56,49,55,26,19,8,162,7,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,162,7,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,61,177,243,54,99,49,111,64,26,19,8,162,7,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,210,100,78,44,5,223,113,64,26,19,8,162,7,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,162,7,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,210,100,78,44,5,223,113,64,26,19,8,162,7,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,224,208,111,17,246,155,111,64,26,19,8,162,7,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,162,7,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,112,63,141,225,14,243,112,64,26,19,8,162,7,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,47,156,167,42,134,153,114,64,26,19,8,162,7,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,162,7,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,189,125,75,90,157,114,64,26,19,8,162,7,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,163,203,97,114,98,57,115,64,26,19,8,162,7,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,162,7,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,245,214,73,219,87,115,64,26,19,8,162,7,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,140,211,0,41,7,84,115,64,26,19,8,162,7,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,162,7,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,117,40,18,249,197,123,64,26,19,8,162,7,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,140,211,0,41,7,84,115,64,26,19,8,162,7,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,162,7,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,94,140,105,189,60,100,114,64,26,19,8,162,7,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,40,189,191,125,195,181,124,64,26,19,8,162,7,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,162,7,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,162,7,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,162,7,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,163,7,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,56,49,56,49,55,26,19,8,163,7,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,163,7,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,140,211,0,41,7,84,115,64,26,19,8,163,7,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,177,224,173,126,63,209,111,64,26,19,8,163,7,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,163,7,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,205,187,184,163,210,114,64,26,19,8,163,7,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,0,3,187,112,227,243,115,64,26,19,8,163,7,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,163,7,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,41,17,28,243,102,119,64,26,19,8,163,7,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,0,3,187,112,227,243,115,64,26,19,8,163,7,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,163,7,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,112,168,135,189,86,120,64,26,19,8,163,7,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,210,18,249,221,44,41,116,64,26,19,8,163,7,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,163,7,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,16,197,94,52,104,208,124,64,26,19,8,163,7,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,210,18,249,221,44,41,116,64,26,19,8,163,7,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,163,7,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,163,7,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,163,7,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,144,11,18,141,11,10,138,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,164,7,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,51,51,56,51,56,26,19,8,164,7,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,164,7,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,138,150,115,194,147,100,64,26,19,8,164,7,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,209,23,121,104,104,152,119,64,26,19,8,164,7,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,164,7,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,197,28,2,255,183,114,64,26,19,8,164,7,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,209,23,121,104,104,152,119,64,26,19,8,164,7,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,164,7,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,163,129,251,2,162,117,64,26,19,8,164,7,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,46,248,252,141,213,45,119,64,26,19,8,164,7,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,164,7,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,17,105,9,209,24,60,120,64,26,19,8,164,7,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,232,184,4,217,175,88,118,64,26,19,8,164,7,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,164,7,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,177,101,34,11,62,118,64,26,19,8,164,7,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,110,160,98,207,153,246,120,64,26,19,8,164,7,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,164,7,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,203,46,145,166,46,214,122,64,26,19,8,164,7,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,186,113,109,109,229,104,117,64,26,19,8,164,7,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,164,7,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,157,67,163,48,75,124,64,26,19,8,164,7,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,23,82,241,146,82,254,116,64,26,19,8,164,7,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,164,7,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,35,211,195,32,16,126,64,26,19,8,164,7,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,233,10,90,39,136,14,116,64,26,19,8,164,7,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,164,7,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,138,230,9,126,106,127,64,26,19,8,164,7,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,187,195,194,187,189,30,115,64,26,19,8,164,7,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,164,7,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,233,179,132,78,116,233,114,64,26,19,8,164,7,16,35,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,31,93,208,40,45,5,128,64,26,19,8,164,7,16,34,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,164,7,16,33,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,93,208,40,45,5,128,64,26,19,8,164,7,16,37,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,0,172,229,151,207,206,114,64,26,19,8,164,7,16,38,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,164,7,16,36,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,164,7,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,164,7,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,144,11,18,141,11,10,138,11,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,249,72,112,196,8,102,64,26,19,8,165,7,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,69,71,51,176,68,56,120,64,26,19,8,165,7,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,165,7,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,42,174,63,222,16,104,114,64,26,19,8,165,7,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,69,71,51,176,68,56,120,64,26,19,8,165,7,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,165,7,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,36,145,145,183,247,115,64,26,19,8,165,7,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,116,55,245,66,251,2,120,64,26,19,8,165,7,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,165,7,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,242,183,29,114,172,118,64,26,19,8,165,7,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,116,55,245,66,251,2,120,64,26,19,8,165,7,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,165,7,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,180,136,133,171,171,166,120,64,26,19,8,165,7,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,209,23,121,104,104,152,119,64,26,19,8,165,7,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,165,7,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,255,214,94,82,54,122,64,26,19,8,165,7,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,69,240,93,215,48,19,119,64,26,19,8,165,7,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,165,7,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,40,189,191,125,195,181,124,64,26,19,8,165,7,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,163,121,12,36,138,131,117,64,26,19,8,165,7,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,165,7,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,156,236,121,197,159,85,125,64,26,19,8,165,7,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,209,105,206,182,64,78,117,64,26,19,8,165,7,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,165,7,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,132,244,24,124,68,112,125,64,26,19,8,165,7,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,0,90,144,73,247,24,117,64,26,19,8,165,7,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,165,7,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,186,26,152,148,209,67,116,64,26,19,8,165,7,16,35,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,86,91,44,194,161,202,126,64,26,19,8,165,7,16,34,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,165,7,16,33,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,101,111,223,209,31,128,64,26,19,8,165,7,16,37,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,233,179,132,78,116,233,114,64,26,19,8,165,7,16,38,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,165,7,16,36,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,165,7,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,165,7,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,51,51,56,51,56,26,19,8,165,7,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,165,7,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,165,7,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,139,6,18,136,6,10,133,6,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,119,144,64,26,19,8,166,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,119,85,64,26,19,8,166,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,166,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,94,144,64,26,19,8,166,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,247,82,64,26,19,8,166,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,166,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,94,144,64,26,19,8,166,7,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,39,80,64,26,19,8,166,7,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,166,7,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,119,144,64,26,19,8,166,7,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,207,72,64,26,19,8,166,7,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,166,7,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,149,144,64,26,19,8,166,7,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,79,70,64,26,19,8,166,7,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,166,7,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,166,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,166,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,166,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,166,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,166,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,168,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,247,18,18,244,18,10,241,18,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,167,7,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,48,100,57,101,97,26,19,8,167,7,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,167,7,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,207,17,10,6,112,111,105,110,116,115,18,196,17,18,193,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,76,45,80,15,26,79,127,64,26,19,8,167,7,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,102,208,40,47,199,19,103,64,26,19,8,167,7,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,74,130,247,239,158,127,64,26,19,8,167,7,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,104,221,114,3,253,105,101,64,26,19,8,167,7,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,201,168,51,29,108,245,99,64,26,19,8,167,7,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,102,147,149,146,255,17,128,64,26,19,8,167,7,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,141,96,37,204,35,111,128,64,26,19,8,167,7,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,234,240,225,193,77,235,98,64,26,19,8,167,7,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,203,181,125,241,161,75,98,64,26,19,8,167,7,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,77,221,18,87,150,217,128,64,26,19,8,167,7,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,148,229,6,97,102,214,129,64,26,19,8,167,7,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,11,57,144,102,47,225,97,64,26,19,8,167,7,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,196,68,194,3,3,241,129,64,26,19,8,167,7,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,203,181,125,241,161,75,98,64,26,19,8,167,7,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,92,244,31,85,81,254,129,64,26,19,8,167,7,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,74,175,88,7,135,32,99,64,26,19,8,167,7,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,92,244,31,85,81,254,129,64,26,19,8,167,7,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,104,221,114,3,253,105,101,64,26,19,8,167,7,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,196,68,194,3,3,241,129,64,26,19,8,167,7,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,198,142,159,116,0,73,103,64,26,19,8,167,7,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,52,39,144,27,45,161,129,64,26,19,8,167,7,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,228,188,185,112,118,146,105,64,26,19,8,167,7,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,236,17,82,61,39,78,130,64,26,19,8,167,7,16,40,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,69,136,122,138,229,29,104,64,26,19,8,167,7,16,41,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,39,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,219,237,250,106,54,211,130,64,26,19,8,167,7,16,43,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,134,11,141,255,114,179,103,64,26,19,8,167,7,16,44,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,42,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,40,95,59,226,114,131,64,26,19,8,167,7,16,46,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,134,11,141,255,114,179,103,64,26,19,8,167,7,16,47,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,45,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,231,213,128,27,168,131,64,26,19,8,167,7,16,49,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,69,136,122,138,229,29,104,64,26,19,8,167,7,16,50,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,48,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,34,246,238,116,6,208,131,64,26,19,8,167,7,16,52,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,36,64,204,229,3,40,105,64,26,19,8,167,7,16,53,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,51,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,34,246,238,116,6,208,131,64,26,19,8,167,7,16,55,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,35,51,130,17,206,209,106,64,26,19,8,167,7,16,56,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,54,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,231,213,128,27,168,131,64,26,19,8,167,7,16,58,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,160,31,19,83,125,80,109,64,26,19,8,167,7,16,59,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,57,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,142,255,44,96,123,188,112,64,26,19,8,167,7,16,62,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,115,157,88,188,132,224,130,64,26,19,8,167,7,16,61,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,60,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,98,244,235,216,64,130,64,26,19,8,167,7,16,64,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,157,22,58,94,54,225,113,64,26,19,8,167,7,16,65,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,63,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,167,7,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,188,28,18,185,28,10,182,28,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,48,100,57,101,97,26,19,8,170,7,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,170,7,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,148,27,10,6,112,111,105,110,116,115,18,137,27,18,134,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,181,10,203,67,55,171,38,192,26,19,8,170,7,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,168,96,133,120,138,255,100,64,26,19,8,170,7,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,161,90,162,46,31,249,66,192,26,19,8,170,7,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,201,168,51,29,108,245,99,64,26,19,8,170,7,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,10,118,22,209,42,142,80,192,26,19,8,170,7,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,201,168,51,29,108,245,99,64,26,19,8,170,7,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,105,204,252,244,55,82,192,26,19,8,170,7,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,233,227,151,237,23,149,100,64,26,19,8,170,7,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,200,229,185,135,103,162,82,192,26,19,8,170,7,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,230,201,3,69,172,232,103,64,26,19,8,170,7,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,137,111,241,230,15,99,81,192,26,19,8,170,7,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,66,110,230,225,121,113,107,64,26,19,8,170,7,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,23,6,193,74,193,200,77,192,26,19,8,170,7,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,129,228,174,130,209,176,108,64,26,19,8,170,7,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,29,58,233,155,152,33,71,192,26,19,8,170,7,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,160,31,19,83,125,80,109,64,26,19,8,170,7,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,75,3,1,87,129,247,59,192,26,19,8,170,7,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,192,90,119,35,41,240,109,64,26,19,8,170,7,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,125,177,14,123,244,96,25,192,26,19,8,170,7,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,192,90,119,35,41,240,109,64,26,19,8,170,7,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,78,29,149,255,236,163,56,192,26,19,8,170,7,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,223,149,219,243,212,143,110,64,26,19,8,170,7,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,29,58,233,155,152,33,71,192,26,19,8,170,7,16,40,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,111,196,200,143,207,28,112,64,26,19,8,170,7,16,41,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,39,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,153,25,48,9,18,74,75,192,26,19,8,170,7,16,43,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,126,219,213,141,138,65,113,64,26,19,8,170,7,16,44,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,42,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,19,11,31,247,30,76,192,26,19,8,170,7,16,46,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,45,52,108,70,12,49,114,64,26,19,8,170,7,16,47,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,45,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,76,111,208,22,184,208,114,64,26,19,8,170,7,16,50,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,153,25,48,9,18,74,75,192,26,19,8,170,7,16,49,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,48,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,156,51,196,177,125,246,71,192,26,19,8,170,7,16,52,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,60,75,121,68,199,85,115,64,26,19,8,170,7,16,53,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,51,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,103,236,2,85,79,65,192,26,19,8,170,7,16,55,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,251,199,102,207,57,192,115,64,26,19,8,170,7,16,56,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,54,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,51,190,58,70,37,8,192,26,19,8,170,7,16,58,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,139,229,152,183,15,16,116,64,26,19,8,170,7,16,59,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,57,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,131,155,156,101,68,52,64,26,19,8,170,7,16,61,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,139,229,152,183,15,16,116,64,26,19,8,170,7,16,62,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,60,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,105,7,244,249,151,55,64,26,19,8,170,7,16,64,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,91,134,221,20,115,245,115,64,26,19,8,170,7,16,65,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,63,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,187,68,84,90,172,42,116,64,26,19,8,170,7,16,68,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,25,85,243,50,14,142,46,64,26,19,8,170,7,16,67,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,66,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,36,95,236,162,87,35,192,26,19,8,170,7,16,70,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,233,150,197,40,19,239,117,64,26,19,8,170,7,16,71,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,69,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,175,214,162,242,95,82,45,192,26,19,8,170,7,16,73,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,105,144,160,62,248,195,118,64,26,19,8,170,7,16,74,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,72,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,175,214,162,242,95,82,45,192,26,19,8,170,7,16,76,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,136,203,4,15,164,99,119,64,26,19,8,170,7,16,77,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,75,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,24,233,54,247,121,179,119,64,26,19,8,170,7,16,80,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,178,240,54,155,203,254,41,192,26,19,8,170,7,16,79,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,78,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,131,229,54,204,203,185,18,192,26,19,8,170,7,16,82,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,215,101,36,130,236,29,120,64,26,19,8,170,7,16,83,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,81,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,137,27,132,229,230,39,64,26,19,8,170,7,16,85,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,103,131,86,106,194,109,120,64,26,19,8,170,7,16,86,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,84,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,151,226,17,13,95,136,120,64,26,19,8,170,7,16,89,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,125,40,149,206,236,232,63,64,26,19,8,170,7,16,88,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,87,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,89,253,43,132,112,71,64,26,19,8,170,7,16,91,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,103,131,86,106,194,109,120,64,26,19,8,170,7,16,92,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,90,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,215,133,32,153,160,181,80,64,26,19,8,170,7,16,94,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,72,72,242,153,22,206,119,64,26,19,8,170,7,16,95,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,93,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,226,84,145,140,72,85,64,26,19,8,170,7,16,97,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,152,239,91,225,148,222,118,64,26,19,8,170,7,16,98,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,96,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,170,7,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,170,7,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,170,16,18,167,16,10,164,16,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,48,100,57,101,97,26,19,8,171,7,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,171,7,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,130,15,10,6,112,111,105,110,116,115,18,247,14,18,244,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,46,127,193,2,180,89,192,26,19,8,171,7,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,164,57,167,251,232,252,105,64,26,19,8,171,7,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,189,118,6,206,122,2,97,192,26,19,8,171,7,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,164,57,167,251,232,252,105,64,26,19,8,171,7,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,60,112,225,227,95,215,97,192,26,19,8,171,7,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,66,110,230,225,121,113,107,64,26,19,8,171,7,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,177,106,158,38,162,97,192,26,19,8,171,7,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,223,149,219,243,212,143,110,64,26,19,8,171,7,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,60,132,142,207,211,27,95,192,26,19,8,171,7,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,190,77,45,79,243,153,111,64,26,19,8,171,7,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,177,145,54,144,73,89,192,26,19,8,171,7,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,190,77,45,79,243,153,111,64,26,19,8,171,7,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,26,16,3,178,50,92,192,26,19,8,171,7,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,207,130,63,213,8,82,112,64,26,19,8,171,7,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,0,124,90,70,134,95,192,26,19,8,171,7,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,13,249,7,118,96,145,113,64,26,19,8,171,7,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,93,147,39,233,168,75,114,64,26,19,8,171,7,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,61,125,43,184,149,45,96,192,26,19,8,171,7,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,59,162,253,206,98,96,192,26,19,8,171,7,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,187,68,84,90,172,42,116,64,26,19,8,171,7,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,124,7,161,68,97,177,94,192,26,19,8,171,7,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,218,127,184,42,88,202,116,64,26,19,8,171,7,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,26,16,3,178,50,92,192,26,19,8,171,7,16,40,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,58,62,47,112,145,255,116,64,26,19,8,171,7,16,41,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,39,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,5,79,56,84,137,139,85,192,26,19,8,171,7,16,43,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,154,252,165,181,202,52,117,64,26,19,8,171,7,16,44,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,42,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,216,111,179,49,76,84,192,26,19,8,171,7,16,46,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,121,180,247,16,233,62,118,64,26,19,8,171,7,16,47,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,45,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,200,78,23,132,49,249,118,64,26,19,8,171,7,16,50,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,137,111,241,230,15,99,81,192,26,19,8,171,7,16,49,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,48,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,19,11,31,247,30,76,192,26,19,8,171,7,16,52,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,88,108,73,108,7,73,119,64,26,19,8,171,7,16,53,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,51,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,77,88,90,233,162,68,192,26,19,8,171,7,16,55,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,88,108,73,108,7,73,119,64,26,19,8,171,7,16,56,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,54,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,171,7,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,171,7,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,153,17,18,150,17,10,147,17,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,172,7,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,241,15,10,6,112,111,105,110,116,115,18,230,15,18,227,15,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,179,32,107,49,18,118,130,64,26,19,8,172,7,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,222,47,128,125,222,219,91,64,26,19,8,172,7,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,32,192,220,198,161,199,89,64,26,19,8,172,7,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,179,32,107,49,18,118,130,64,26,19,8,172,7,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,157,88,188,132,224,130,64,26,19,8,172,7,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,162,211,75,133,242,72,87,64,26,19,8,172,7,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,165,76,198,84,221,131,64,26,19,8,172,7,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,226,86,94,250,127,222,86,64,26,19,8,172,7,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,4,8,105,241,247,131,64,26,19,8,172,7,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,225,73,20,38,74,136,88,64,26,19,8,172,7,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,4,8,105,241,247,131,64,26,19,8,172,7,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,109,4,81,128,158,108,96,64,26,19,8,172,7,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,165,76,198,84,221,131,64,26,19,8,172,7,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,76,188,162,219,188,118,97,64,26,19,8,172,7,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,231,213,128,27,168,131,64,26,19,8,172,7,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,43,116,244,54,219,128,98,64,26,19,8,172,7,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,242,150,51,210,105,181,131,64,26,19,8,172,7,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,171,122,25,33,246,171,97,64,26,19,8,172,7,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,85,170,23,163,234,131,64,26,19,8,172,7,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,140,63,181,80,74,12,97,64,26,19,8,172,7,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,66,49,83,69,178,111,132,64,26,19,8,172,7,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,204,194,199,197,215,161,96,64,26,19,8,172,7,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,78,133,45,136,191,132,64,26,19,8,172,7,16,40,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,44,129,62,11,17,215,96,64,26,19,8,172,7,16,41,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,39,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,201,188,89,196,15,2,133,64,26,19,8,172,7,16,43,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,171,122,25,33,246,171,97,64,26,19,8,172,7,16,44,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,42,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,27,21,103,172,28,133,64,26,19,8,172,7,16,46,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,109,207,76,192,85,99,64,26,19,8,172,7,16,47,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,45,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,145,203,114,184,250,41,133,64,26,19,8,172,7,16,49,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,8,31,252,189,195,52,101,64,26,19,8,172,7,16,50,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,48,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,27,21,103,172,28,133,64,26,19,8,172,7,16,52,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,102,208,40,47,199,19,103,64,26,19,8,172,7,16,53,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,51,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,49,13,252,114,193,244,132,64,26,19,8,172,7,16,55,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,5,5,104,21,88,136,104,64,26,19,8,172,7,16,56,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,54,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,161,239,201,138,235,164,132,64,26,19,8,172,7,16,58,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,68,123,48,182,175,199,105,64,26,19,8,172,7,16,59,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,57,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,172,7,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,48,100,57,101,97,26,19,8,172,7,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,172,7,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,211,132,1,18,207,132,1,10,203,132,1,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,173,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,48,97,52,54,99,26,19,8,173,7,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,173,7,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,147,131,1,10,6,112,111,105,110,116,115,18,135,131,1,18,131,131,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,148,64,26,19,8,173,7,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,80,66,192,26,19,8,173,7,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,115,148,64,26,19,8,173,7,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,224,54,192,26,19,8,173,7,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,130,148,64,26,19,8,173,7,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,32,51,192,26,19,8,173,7,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,210,148,64,26,19,8,173,7,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,48,68,192,26,19,8,173,7,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,235,148,64,26,19,8,173,7,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,112,69,192,26,19,8,173,7,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,96,57,192,26,19,8,173,7,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,149,64,26,19,8,173,7,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,99,149,64,26,19,8,173,7,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,160,63,192,26,19,8,173,7,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,159,149,64,26,19,8,173,7,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,144,72,192,26,19,8,173,7,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,169,149,64,26,19,8,173,7,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,144,72,192,26,19,8,173,7,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,214,149,64,26,19,8,173,7,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,16,65,192,26,19,8,173,7,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,150,64,26,19,8,173,7,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,224,49,192,26,19,8,173,7,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,83,150,64,26,19,8,173,7,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,80,66,192,26,19,8,173,7,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,150,64,26,19,8,173,7,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,112,69,192,26,19,8,173,7,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,163,150,64,26,19,8,173,7,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,80,71,192,26,19,8,173,7,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,224,54,192,26,19,8,173,7,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,238,150,64,26,19,8,173,7,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,77,151,64,26,19,8,173,7,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,144,77,192,26,19,8,173,7,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,182,151,64,26,19,8,173,7,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,160,63,192,26,19,8,173,7,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,11,152,64,26,19,8,173,7,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,240,71,192,26,19,8,173,7,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,91,152,64,26,19,8,173,7,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,176,75,192,26,19,8,173,7,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,186,152,64,26,19,8,173,7,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,32,56,192,26,19,8,173,7,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,241,152,64,26,19,8,173,7,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,112,74,192,26,19,8,173,7,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,144,77,192,26,19,8,173,7,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,5,153,64,26,19,8,173,7,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,96,62,192,26,19,8,173,7,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,153,64,26,19,8,173,7,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,235,153,64,26,19,8,173,7,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,112,79,192,26,19,8,173,7,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,235,153,64,26,19,8,173,7,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,144,77,192,26,19,8,173,7,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,48,73,192,26,19,8,173,7,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,210,153,64,26,19,8,173,7,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,160,63,192,26,19,8,173,7,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,153,64,26,19,8,173,7,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,153,64,26,19,8,173,7,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,248,191,37,64,26,19,8,173,7,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,170,153,64,26,19,8,173,7,16,91,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,7,92,64,26,19,8,173,7,16,92,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,90,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,205,153,64,26,19,8,173,7,16,94,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,59,103,64,26,19,8,173,7,16,95,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,93,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,255,153,64,26,19,8,173,7,16,97,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,11,111,64,26,19,8,173,7,16,98,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,96,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,255,153,64,26,19,8,173,7,16,100,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,105,114,64,26,19,8,173,7,16,101,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,99,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,29,154,64,26,19,8,173,7,16,103,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,13,116,64,26,19,8,173,7,16,104,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,102,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,154,64,26,19,8,173,7,16,106,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,177,117,64,26,19,8,173,7,16,107,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,105,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,79,154,64,26,19,8,173,7,16,109,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,197,117,64,26,19,8,173,7,16,110,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,108,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,73,155,64,26,19,8,173,7,16,112,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,93,121,64,26,19,8,173,7,16,113,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,111,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,243,155,64,26,19,8,173,7,16,115,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,137,122,64,26,19,8,173,7,16,116,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,114,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,137,156,64,26,19,8,173,7,16,118,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,61,123,64,26,19,8,173,7,16,119,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,117,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,156,64,26,19,8,173,7,16,121,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,61,123,64,26,19,8,173,7,16,122,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,120,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,71,157,64,26,19,8,173,7,16,124,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,177,122,64,26,19,8,173,7,16,125,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,123,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,91,157,64,26,19,8,173,7,16,127,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,97,122,64,26,20,8,173,7,16,128,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,126,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,151,157,64,26,20,8,173,7,16,130,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,29,120,64,26,20,8,173,7,16,131,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,129,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,81,113,64,26,20,8,173,7,16,134,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,231,157,64,26,20,8,173,7,16,133,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,132,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,226,157,64,26,20,8,173,7,16,136,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,27,110,64,26,20,8,173,7,16,137,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,135,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,66,157,64,26,20,8,173,7,16,139,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,87,87,64,26,20,8,173,7,16,140,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,138,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,247,82,64,26,20,8,173,7,16,143,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,31,157,64,26,20,8,173,7,16,142,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,141,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,156,64,26,20,8,173,7,16,145,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,207,67,64,26,20,8,173,7,16,146,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,144,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,22,156,64,26,20,8,173,7,16,148,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,8,192,46,192,26,20,8,173,7,16,149,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,147,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,154,64,26,20,8,173,7,16,151,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,112,79,192,26,20,8,173,7,16,152,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,150,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,109,154,64,26,20,8,173,7,16,154,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,216,82,192,26,20,8,173,7,16,155,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,153,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,49,154,64,26,20,8,173,7,16,157,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,120,83,192,26,20,8,173,7,16,158,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,156,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,110,153,64,26,20,8,173,7,16,160,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,72,81,192,26,20,8,173,7,16,161,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,159,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,101,152,64,26,20,8,173,7,16,163,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,88,80,192,26,20,8,173,7,16,164,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,162,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,87,151,64,26,20,8,173,7,16,166,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,80,76,192,26,20,8,173,7,16,167,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,165,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,150,64,26,20,8,173,7,16,169,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,4,32,51,192,26,20,8,173,7,16,170,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,168,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,134,149,64,26,20,8,173,7,16,172,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,95,50,64,26,20,8,173,7,16,173,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,171,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,111,78,64,26,20,8,173,7,16,176,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,148,64,26,20,8,173,7,16,175,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,174,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,231,88,64,26,20,8,173,7,16,179,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,148,64,26,20,8,173,7,16,178,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,177,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,181,147,64,26,20,8,173,7,16,181,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,163,104,64,26,20,8,173,7,16,182,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,180,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,126,147,64,26,20,8,173,7,16,184,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,59,108,64,26,20,8,173,7,16,185,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,183,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,57,112,64,26,20,8,173,7,16,188,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,46,147,64,26,20,8,173,7,16,187,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,186,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,6,147,64,26,20,8,173,7,16,190,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,237,112,64,26,20,8,173,7,16,191,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,189,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,189,115,64,26,20,8,173,7,16,194,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,82,146,64,26,20,8,173,7,16,193,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,192,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,219,144,64,26,20,8,173,7,16,196,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,165,119,64,26,20,8,173,7,16,197,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,195,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,144,64,26,20,8,173,7,16,199,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,17,122,64,26,20,8,173,7,16,200,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,198,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,250,142,64,26,20,8,173,7,16,202,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,205,124,64,26,20,8,173,7,16,203,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,201,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,230,142,64,26,20,8,173,7,16,205,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,225,124,64,26,20,8,173,7,16,206,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,204,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,142,64,26,20,8,173,7,16,208,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,165,124,64,26,20,8,173,7,16,209,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,207,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,142,64,26,20,8,173,7,16,211,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,241,123,64,26,20,8,173,7,16,212,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,210,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,141,64,26,20,8,173,7,16,214,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,229,120,64,26,20,8,173,7,16,215,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,213,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,242,140,64,26,20,8,173,7,16,217,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,225,114,64,26,20,8,173,7,16,218,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,216,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,141,64,26,20,8,173,7,16,220,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,157,112,64,26,20,8,173,7,16,221,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,219,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,145,64,26,20,8,173,7,16,223,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,183,81,64,26,20,8,173,7,16,224,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,222,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,141,147,64,26,20,8,173,7,16,226,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,144,72,192,26,20,8,173,7,16,227,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,225,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,35,148,64,26,20,8,173,7,16,229,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,248,80,192,26,20,8,173,7,16,230,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,228,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,54,149,64,26,20,8,173,7,16,232,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,152,86,192,26,20,8,173,7,16,233,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,231,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,158,150,64,26,20,8,173,7,16,235,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,136,87,192,26,20,8,173,7,16,236,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,234,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,243,150,64,26,20,8,173,7,16,238,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,72,86,192,26,20,8,173,7,16,239,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,237,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,187,151,64,26,20,8,173,7,16,241,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,168,80,192,26,20,8,173,7,16,242,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,240,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,250,153,64,26,20,8,173,7,16,244,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,79,70,64,26,20,8,173,7,16,245,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,243,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,229,154,64,26,20,8,173,7,16,247,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,103,91,64,26,20,8,173,7,16,248,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,246,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,156,64,26,20,8,173,7,16,250,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,171,111,64,26,20,8,173,7,16,251,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,249,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,177,156,64,26,20,8,173,7,16,253,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,5,114,64,26,20,8,173,7,16,254,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,252,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,66,157,64,26,20,8,173,7,16,128,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,165,119,64,26,20,8,173,7,16,129,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,255,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,157,64,26,20,8,173,7,16,131,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,69,120,64,26,20,8,173,7,16,132,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,130,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,157,64,26,20,8,173,7,16,134,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,169,120,64,26,20,8,173,7,16,135,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,133,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,231,157,64,26,20,8,173,7,16,137,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,209,120,64,26,20,8,173,7,16,138,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,136,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,60,158,64,26,20,8,173,7,16,140,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,49,120,64,26,20,8,173,7,16,141,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,139,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,85,119,64,26,20,8,173,7,16,144,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,115,158,64,26,20,8,173,7,16,143,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,142,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,205,158,64,26,20,8,173,7,16,146,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,113,116,64,26,20,8,173,7,16,147,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,145,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,235,158,64,26,20,8,173,7,16,149,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,185,114,64,26,20,8,173,7,16,150,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,148,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,157,64,26,20,8,173,7,16,152,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,240,66,192,26,20,8,173,7,16,153,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,151,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,11,157,64,26,20,8,173,7,16,155,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,136,82,192,26,20,8,173,7,16,156,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,154,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,117,156,64,26,20,8,173,7,16,158,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,40,88,192,26,20,8,173,7,16,159,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,157,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,34,154,64,26,20,8,173,7,16,161,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,88,95,192,26,20,8,173,7,16,162,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,160,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,190,153,64,26,20,8,173,7,16,164,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,232,91,192,26,20,8,173,7,16,165,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,163,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,152,64,26,20,8,173,7,16,167,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,16,75,192,26,20,8,173,7,16,168,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,166,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,194,149,64,26,20,8,173,7,16,170,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,91,96,64,26,20,8,173,7,16,171,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,169,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,165,148,64,26,20,8,173,7,16,173,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,11,106,64,26,20,8,173,7,16,174,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,172,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,101,147,64,26,20,8,173,7,16,176,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,9,115,64,26,20,8,173,7,16,177,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,175,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,243,145,64,26,20,8,173,7,16,179,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,77,122,64,26,20,8,173,7,16,180,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,178,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,133,145,64,26,20,8,173,7,16,182,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,65,124,64,26,20,8,173,7,16,183,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,181,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,254,144,64,26,20,8,173,7,16,185,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,73,126,64,26,20,8,173,7,16,186,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,184,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,33,126,64,26,20,8,173,7,16,189,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,199,144,64,26,20,8,173,7,16,188,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,187,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,119,144,64,26,20,8,173,7,16,191,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,217,122,64,26,20,8,173,7,16,192,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,190,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,74,144,64,26,20,8,173,7,16,194,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,37,112,64,26,20,8,173,7,16,195,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,193,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,129,144,64,26,20,8,173,7,16,197,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,171,106,64,26,20,8,173,7,16,198,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,196,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,145,64,26,20,8,173,7,16,200,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,215,94,64,26,20,8,173,7,16,201,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,199,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,202,146,64,26,20,8,173,7,16,203,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,240,127,28,64,26,20,8,173,7,16,204,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,202,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,251,152,64,26,20,8,173,7,16,206,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,215,89,64,26,20,8,173,7,16,207,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,205,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,223,155,64,26,20,8,173,7,16,209,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,117,112,64,26,20,8,173,7,16,210,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,208,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,156,64,26,20,8,173,7,16,212,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,29,115,64,26,20,8,173,7,16,213,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,211,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,151,157,64,26,20,8,173,7,16,215,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,173,116,64,26,20,8,173,7,16,216,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,214,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,100,158,64,26,20,8,173,7,16,218,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,13,116,64,26,20,8,173,7,16,219,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,217,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,158,64,26,20,8,173,7,16,221,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,29,115,64,26,20,8,173,7,16,222,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,220,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,215,158,64,26,20,8,173,7,16,224,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,227,110,64,26,20,8,173,7,16,225,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,223,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,225,158,64,26,20,8,173,7,16,227,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,171,101,64,26,20,8,173,7,16,228,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,226,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,190,158,64,26,20,8,173,7,16,230,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,183,86,64,26,20,8,173,7,16,231,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,229,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,141,157,64,26,20,8,173,7,16,233,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,200,83,192,26,20,8,173,7,16,234,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,232,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,71,157,64,26,20,8,173,7,16,236,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,152,86,192,26,20,8,173,7,16,237,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,235,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,117,156,64,26,20,8,173,7,16,239,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,88,90,192,26,20,8,173,7,16,240,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,238,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,154,64,26,20,8,173,7,16,242,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,8,90,192,26,20,8,173,7,16,243,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,241,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,54,154,64,26,20,8,173,7,16,245,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,56,87,192,26,20,8,173,7,16,246,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,244,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,227,151,64,26,20,8,173,7,16,248,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,248,191,37,64,26,20,8,173,7,16,249,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,247,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,209,149,64,26,20,8,173,7,16,251,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,39,95,64,26,20,8,173,7,16,252,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,250,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,177,146,64,26,20,8,173,7,16,254,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,221,113,64,26,20,8,173,7,16,255,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,253,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,178,145,64,26,20,8,173,7,16,129,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,197,117,64,26,20,8,173,7,16,130,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,128,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,138,145,64,26,20,8,173,7,16,132,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,201,118,64,26,20,8,173,7,16,133,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,131,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,145,64,26,20,8,173,7,16,135,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,9,120,64,26,20,8,173,7,16,136,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,134,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,138,145,64,26,20,8,173,7,16,138,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,125,119,64,26,20,8,173,7,16,139,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,137,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,138,145,64,26,20,8,173,7,16,141,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,197,117,64,26,20,8,173,7,16,142,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,140,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,113,145,64,26,20,8,173,7,16,144,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,43,109,64,26,20,8,173,7,16,145,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,143,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,113,145,64,26,20,8,173,7,16,147,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,235,102,64,26,20,8,173,7,16,148,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,146,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,145,64,26,20,8,173,7,16,150,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,248,191,47,64,26,20,8,173,7,16,151,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,149,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,23,86,64,26,20,8,173,7,16,154,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,145,64,26,20,8,173,7,16,153,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,152,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,146,64,26,20,8,173,7,16,156,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,59,103,64,26,20,8,173,7,16,157,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,155,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,137,146,64,26,20,8,173,7,16,159,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,123,104,64,26,20,8,173,7,16,160,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,158,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,217,146,64,26,20,8,173,7,16,162,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,243,104,64,26,20,8,173,7,16,163,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,161,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,247,146,64,26,20,8,173,7,16,165,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,43,104,64,26,20,8,173,7,16,166,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,164,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,91,147,64,26,20,8,173,7,16,168,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,11,96,64,26,20,8,173,7,16,169,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,167,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,147,64,26,20,8,173,7,16,171,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,103,91,64,26,20,8,173,7,16,172,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,170,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,201,147,64,26,20,8,173,7,16,174,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,151,88,64,26,20,8,173,7,16,175,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,173,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,10,148,64,26,20,8,173,7,16,177,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,39,90,64,26,20,8,173,7,16,178,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,176,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,143,150,64,26,20,8,173,7,16,180,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,229,115,64,26,20,8,173,7,16,181,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,179,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,218,150,64,26,20,8,173,7,16,183,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,93,116,64,26,20,8,173,7,16,184,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,182,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,151,64,26,20,8,173,7,16,186,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,157,112,64,26,20,8,173,7,16,187,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,185,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,82,151,64,26,20,8,173,7,16,189,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,11,111,64,26,20,8,173,7,16,190,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,188,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,123,109,64,26,20,8,173,7,16,193,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,137,151,64,26,20,8,173,7,16,192,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,173,7,16,191,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,177,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,148,12,18,145,12,10,142,12,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,174,7,16,2,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,48,100,56,53,100,26,19,8,174,7,16,3,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,174,7,16,4,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,215,10,10,6,112,111,105,110,116,115,18,204,10,18,201,10,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,139,64,26,19,8,174,7,16,7,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,93,64,26,19,8,174,7,16,8,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,174,7,16,6,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,141,64,26,19,8,174,7,16,10,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,68,64,26,19,8,174,7,16,11,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,174,7,16,9,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,174,7,16,14,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,141,64,26,19,8,174,7,16,13,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,174,7,16,12,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,142,64,26,19,8,174,7,16,16,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,32,192,26,19,8,174,7,16,17,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,174,7,16,15,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,88,64,26,19,8,174,7,16,20,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,144,64,26,19,8,174,7,16,19,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,174,7,16,18,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,145,64,26,19,8,174,7,16,22,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,96,64,26,19,8,174,7,16,23,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,174,7,16,21,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,144,64,26,19,8,174,7,16,25,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,96,64,26,19,8,174,7,16,26,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,174,7,16,24,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,144,64,26,19,8,174,7,16,28,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,174,7,16,29,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,174,7,16,27,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,141,64,26,19,8,174,7,16,31,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,95,64,26,19,8,174,7,16,32,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,174,7,16,30,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,140,64,26,19,8,174,7,16,34,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,96,64,26,19,8,174,7,16,35,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,174,7,16,33,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,139,64,26,19,8,174,7,16,37,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,96,64,26,19,8,174,7,16,38,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,174,7,16,36,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,96,64,26,19,8,174,7,16,41,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,139,64,26,19,8,174,7,16,40,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,174,7,16,39,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,174,7,16,5,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,174,7,16,1,26,12,98,255,32,106,217,176,234,142,137,49,254,72,34,19,8,202,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,182,10,18,179,10,10,176,10,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,140,64,26,19,8,175,7,16,7,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,96,64,26,19,8,175,7,16,8,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,175,7,16,6,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,140,64,26,19,8,175,7,16,10,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,175,7,16,11,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,175,7,16,9,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,140,64,26,19,8,175,7,16,13,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,112,64,26,19,8,175,7,16,14,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,175,7,16,12,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,143,64,26,19,8,175,7,16,16,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,111,64,26,19,8,175,7,16,17,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,175,7,16,15,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,144,64,26,19,8,175,7,16,19,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,111,64,26,19,8,175,7,16,20,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,175,7,16,18,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,145,64,26,19,8,175,7,16,22,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,111,64,26,19,8,175,7,16,23,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,175,7,16,21,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,144,64,26,19,8,175,7,16,25,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,109,64,26,19,8,175,7,16,26,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,175,7,16,24,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,144,64,26,19,8,175,7,16,28,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,104,64,26,19,8,175,7,16,29,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,175,7,16,27,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,144,64,26,19,8,175,7,16,31,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,98,64,26,19,8,175,7,16,32,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,175,7,16,30,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,144,64,26,19,8,175,7,16,34,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,95,64,26,19,8,175,7,16,35,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,175,7,16,33,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,175,7,16,5,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,175,7,16,2,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,48,100,56,53,100,26,19,8,175,7,16,3,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,175,7,16,4,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,175,7,16,1,26,12,98,255,32,106,217,176,234,142,137,49,254,72,34,19,8,201,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,250,6,18,247,6,10,244,6,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,48,100,56,53,100,26,19,8,176,7,16,3,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,176,7,16,4,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,142,64,26,19,8,176,7,16,7,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,111,64,26,19,8,176,7,16,8,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,176,7,16,6,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,142,64,26,19,8,176,7,16,10,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,101,64,26,19,8,176,7,16,11,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,176,7,16,9,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,100,64,26,19,8,176,7,16,14,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,144,64,26,19,8,176,7,16,13,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,176,7,16,12,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,100,64,26,19,8,176,7,16,17,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,144,64,26,19,8,176,7,16,16,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,176,7,16,15,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,144,64,26,19,8,176,7,16,19,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,111,64,26,19,8,176,7,16,20,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,176,7,16,18,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,144,64,26,19,8,176,7,16,22,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,113,64,26,19,8,176,7,16,23,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,176,7,16,21,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,176,7,16,5,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,176,7,16,2,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,176,7,16,1,26,12,98,255,32,106,217,176,234,142,137,49,254,72,34,19,8,201,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,190,3,18,187,3,10,184,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,177,7,16,4,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,143,64,26,19,8,177,7,16,7,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,102,64,26,19,8,177,7,16,8,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,177,7,16,6,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,143,64,26,19,8,177,7,16,10,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,110,64,26,19,8,177,7,16,11,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,177,7,16,9,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,177,7,16,5,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,177,7,16,2,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,48,100,56,53,100,26,19,8,177,7,16,3,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,177,7,16,1,26,12,98,255,32,106,217,176,234,142,137,49,254,72,34,19,8,201,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,173,4,18,170,4,10,167,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,48,100,56,53,100,26,19,8,179,7,16,3,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,179,7,16,4,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,143,64,26,19,8,179,7,16,7,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,106,64,26,19,8,179,7,16,8,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,179,7,16,6,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,143,64,26,19,8,179,7,16,10,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,106,64,26,19,8,179,7,16,11,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,179,7,16,9,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,105,64,26,19,8,179,7,16,14,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,143,64,26,19,8,179,7,16,13,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,179,7,16,12,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,179,7,16,5,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,179,7,16,2,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,179,7,16,1,26,12,98,255,32,106,217,176,234,142,137,49,254,72,34,19,8,203,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,105,64,26,19,8,180,7,16,8,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,143,64,26,19,8,180,7,16,7,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,180,7,16,6,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,143,64,26,19,8,180,7,16,10,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,105,64,26,19,8,180,7,16,11,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,180,7,16,9,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,180,7,16,5,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,180,7,16,2,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,48,100,56,53,100,26,19,8,180,7,16,3,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,180,7,16,4,26,12,98,255,32,106,217,176,234,142,137,49,254,72,18,19,8,180,7,16,1,26,12,98,255,32,106,217,176,234,142,137,49,254,72,10,146,120,18,143,120,10,140,120,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,181,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,102,99,52,102,102,26,19,8,181,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,181,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,213,118,10,6,112,111,105,110,116,115,18,202,118,18,199,118,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,141,59,145,179,69,30,138,64,26,19,8,181,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,208,15,228,39,120,210,62,192,26,19,8,181,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,191,226,147,3,137,75,138,64,26,19,8,181,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,153,10,100,105,77,121,29,64,26,19,8,181,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,13,193,0,174,50,212,65,64,26,19,8,181,7,16,14,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,240,218,153,119,96,177,138,64,26,19,8,181,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,235,111,170,43,69,204,139,64,26,19,8,181,7,16,16,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,220,81,207,183,155,180,86,64,26,19,8,181,7,16,17,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,15,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,194,233,30,24,127,2,92,64,26,19,8,181,7,16,20,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,79,15,179,239,95,95,140,64,26,19,8,181,7,16,19,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,18,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,230,4,187,223,41,231,140,64,26,19,8,181,7,16,22,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,176,249,83,88,193,139,95,64,26,19,8,181,7,16,23,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,21,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,164,195,163,68,122,141,64,26,19,8,181,7,16,25,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,207,132,68,204,129,138,97,64,26,19,8,181,7,16,26,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,24,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,224,214,167,108,194,142,64,26,19,8,181,7,16,28,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,39,159,113,28,250,139,100,64,26,19,8,181,7,16,29,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,27,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,165,122,227,99,108,153,143,64,26,19,8,181,7,16,31,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,21,72,89,248,71,230,95,64,26,19,8,181,7,16,32,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,30,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,61,31,232,47,162,232,143,64,26,19,8,181,7,16,34,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,47,176,9,152,100,152,90,64,26,19,8,181,7,16,35,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,33,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,137,243,148,215,210,208,82,64,26,19,8,181,7,16,38,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,56,99,245,191,242,10,144,64,26,19,8,181,7,16,37,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,36,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,4,13,246,147,67,22,144,64,26,19,8,181,7,16,40,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,160,250,21,46,77,62,67,64,26,19,8,181,7,16,41,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,39,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,184,245,41,155,16,144,64,26,19,8,181,7,16,43,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,151,235,6,181,16,101,36,64,26,19,8,181,7,16,44,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,42,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,12,39,226,187,202,130,143,64,26,19,8,181,7,16,46,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,97,182,100,39,217,85,54,192,26,19,8,181,7,16,47,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,45,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,133,219,115,162,17,143,64,26,19,8,181,7,16,49,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,13,123,28,20,113,61,66,192,26,19,8,181,7,16,50,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,48,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,88,97,113,20,219,229,71,192,26,19,8,181,7,16,53,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,119,143,211,131,216,137,142,64,26,19,8,181,7,16,52,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,51,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,16,14,177,148,42,36,76,192,26,19,8,181,7,16,56,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,71,70,202,235,108,235,141,64,26,19,8,181,7,16,55,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,54,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,108,228,208,84,82,67,78,192,26,19,8,181,7,16,59,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,80,190,175,203,203,38,140,64,26,19,8,181,7,16,58,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,57,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,198,169,87,244,192,139,64,26,19,8,181,7,16,61,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,162,71,198,20,69,142,77,192,26,19,8,181,7,16,62,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,60,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,119,164,183,109,102,139,64,26,19,8,181,7,16,64,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,70,113,166,84,29,111,75,192,26,19,8,181,7,16,65,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,63,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,88,97,113,20,219,229,71,192,26,19,8,181,7,16,68,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,238,124,160,191,136,34,139,64,26,19,8,181,7,16,67,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,66,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,51,151,39,29,132,138,64,26,19,8,181,7,16,70,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,189,70,160,77,63,222,40,192,26,19,8,181,7,16,71,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,69,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,239,137,151,204,161,137,64,26,19,8,181,7,16,73,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,88,167,85,174,156,124,71,64,26,19,8,181,7,16,74,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,72,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,220,81,207,183,155,180,86,64,26,19,8,181,7,16,77,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,147,85,125,219,204,202,136,64,26,19,8,181,7,16,76,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,75,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,203,103,111,119,43,221,135,64,26,19,8,181,7,16,79,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,176,249,83,88,193,139,95,64,26,19,8,181,7,16,80,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,78,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,210,94,195,70,194,134,64,26,19,8,181,7,16,82,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,43,91,100,140,169,169,99,64,26,19,8,181,7,16,83,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,81,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,212,223,84,87,138,24,134,64,26,19,8,181,7,16,85,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,85,138,129,252,141,155,101,64,26,19,8,181,7,16,86,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,84,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,216,155,71,199,57,54,133,64,26,19,8,181,7,16,88,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,76,18,156,28,47,96,103,64,26,19,8,181,7,16,89,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,87,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,66,85,60,179,219,117,132,64,26,19,8,181,7,16,91,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,122,253,171,252,194,111,104,64,26,19,8,181,7,16,92,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,90,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,173,14,49,159,125,181,131,64,26,19,8,181,7,16,94,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,223,75,177,156,73,202,104,64,26,19,8,181,7,16,95,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,93,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,23,200,37,139,31,245,130,64,26,19,8,181,7,16,97,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,223,75,177,156,73,202,104,64,26,19,8,181,7,16,98,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,96,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,26,213,27,31,99,75,130,64,26,19,8,181,7,16,100,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,227,7,164,12,249,231,103,64,26,19,8,181,7,16,101,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,99,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,80,137,20,3,234,206,129,64,26,19,8,181,7,16,103,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,236,127,137,236,87,35,102,64,26,19,8,181,7,16,104,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,102,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,145,14,143,18,105,129,64,26,19,8,181,7,16,106,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,94,2,103,220,236,214,99,64,26,19,8,181,7,16,107,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,105,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,134,236,9,195,220,25,129,64,26,19,8,181,7,16,109,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,6,232,57,140,116,213,96,64,26,19,8,181,7,16,110,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,108,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,32,239,7,71,234,247,128,64,26,19,8,181,7,16,112,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,93,155,25,120,248,167,91,64,26,19,8,181,7,16,113,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,111,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,32,239,7,71,234,247,128,64,26,19,8,181,7,16,115,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,200,206,111,119,36,87,80,64,26,19,8,181,7,16,116,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,114,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,134,236,9,195,220,25,129,64,26,19,8,181,7,16,118,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,142,10,75,110,143,199,70,64,26,19,8,181,7,16,119,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,117,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,235,58,15,99,99,116,129,64,26,19,8,181,7,16,121,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,61,98,151,219,224,149,60,64,26,19,8,181,7,16,122,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,120,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,181,134,22,127,220,240,129,64,26,19,8,181,7,16,124,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,188,94,49,181,69,57,39,64,26,19,8,181,7,16,125,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,123,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,127,35,33,191,233,165,130,64,26,19,8,181,7,16,127,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,150,108,101,98,186,228,241,191,26,20,8,181,7,16,128,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,126,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,122,103,46,79,58,136,131,64,26,20,8,181,7,16,130,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,151,211,117,77,10,10,38,192,26,20,8,181,7,16,131,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,129,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,255,60,135,44,129,132,64,26,20,8,181,7,16,133,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,169,9,37,167,137,23,50,192,26,20,8,181,7,16,134,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,132,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,112,64,76,147,111,133,133,64,26,20,8,181,7,16,136,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,59,67,58,39,164,129,51,192,26,20,8,181,7,16,137,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,135,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,107,213,92,71,84,160,134,64,26,20,8,181,7,16,139,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,59,67,58,39,164,129,51,192,26,20,8,181,7,16,140,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,138,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,192,108,39,232,175,135,64,26,20,8,181,7,16,142,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,22,208,15,39,111,173,48,192,26,20,8,181,7,16,143,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,141,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,199,171,124,7,124,191,136,64,26,20,8,181,7,16,145,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,79,244,236,153,214,26,27,192,26,20,8,181,7,16,146,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,144,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,92,67,139,63,110,184,137,64,26,20,8,181,7,16,148,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,79,36,15,105,227,208,23,64,26,20,8,181,7,16,149,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,147,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,82,28,169,131,163,181,139,64,26,20,8,181,7,16,151,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,197,109,64,46,130,18,70,64,26,20,8,181,7,16,152,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,150,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,21,159,199,155,41,190,141,64,26,20,8,181,7,16,154,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,119,3,202,23,21,90,86,64,26,20,8,181,7,16,155,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,153,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,120,229,223,94,187,143,64,26,20,8,181,7,16,157,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,107,54,63,44,251,47,97,64,26,20,8,181,7,16,158,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,156,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,29,9,249,77,47,73,144,64,26,20,8,181,7,16,160,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,199,12,95,236,34,79,99,64,26,20,8,181,7,16,161,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,159,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,228,71,10,214,100,111,145,64,26,20,8,181,7,16,163,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,76,18,156,28,47,96,103,64,26,20,8,181,7,16,164,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,162,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,124,236,14,162,154,190,145,64,26,20,8,181,7,16,166,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,22,175,166,92,60,21,104,64,26,20,8,181,7,16,167,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,165,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,72,231,18,154,127,2,146,64,26,20,8,181,7,16,169,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,72,86,169,172,127,66,104,64,26,20,8,181,7,16,170,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,168,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,69,137,25,226,167,115,146,64,26,20,8,181,7,16,172,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,22,175,166,92,60,21,104,64,26,20,8,181,7,16,173,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,171,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,221,45,30,174,221,194,146,64,26,20,8,181,7,16,175,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,131,117,145,220,33,171,102,64,26,20,8,181,7,16,176,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,174,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,16,213,32,254,32,240,146,64,26,20,8,181,7,16,178,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,140,237,118,188,128,230,100,64,26,20,8,181,7,16,179,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,177,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,118,210,34,122,19,18,147,64,26,20,8,181,7,16,181,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,102,122,76,188,75,18,98,64,26,20,8,181,7,16,182,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,180,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,66,124,35,78,100,29,147,64,26,20,8,181,7,16,184,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,21,72,89,248,71,230,95,64,26,20,8,181,7,16,185,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,183,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,40,209,35,184,12,35,147,64,26,20,8,181,7,16,187,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,119,3,202,23,21,90,86,64,26,20,8,181,7,16,188,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,186,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,92,39,35,228,187,23,147,64,26,20,8,181,7,16,190,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,36,165,143,55,76,118,82,64,26,20,8,181,7,16,191,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,189,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,16,213,32,254,32,240,146,64,26,20,8,181,7,16,193,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,107,42,181,238,19,218,77,64,26,20,8,181,7,16,194,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,192,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,120,48,28,50,235,160,146,64,26,20,8,181,7,16,196,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,252,208,53,238,116,93,69,64,26,20,8,181,7,16,197,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,195,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,148,57,21,128,26,42,146,64,26,20,8,181,7,16,199,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,134,181,87,91,145,87,56,64,26,20,8,181,7,16,200,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,198,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,151,70,11,20,94,128,145,64,26,20,8,181,7,16,202,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,4,62,186,104,121,40,18,64,26,20,8,181,7,16,203,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,201,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,114,96,75,77,213,53,35,192,26,20,8,181,7,16,206,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,206,169,0,212,80,203,144,64,26,20,8,181,7,16,205,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,204,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,4,13,246,147,67,22,144,64,26,20,8,181,7,16,208,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,169,9,37,167,137,23,50,192,26,20,8,181,7,16,209,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,207,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,220,221,216,35,95,228,142,64,26,20,8,181,7,16,211,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,59,67,58,39,164,129,51,192,26,20,8,181,7,16,212,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,210,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,21,159,199,155,41,190,141,64,26,20,8,181,7,16,214,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,169,9,37,167,137,23,50,192,26,20,8,181,7,16,215,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,213,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,178,174,187,179,122,242,140,64,26,20,8,181,7,16,217,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,189,70,160,77,63,222,40,192,26,20,8,181,7,16,218,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,216,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,187,177,71,190,72,140,64,26,20,8,181,7,16,220,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,150,108,101,98,186,228,241,191,26,20,8,181,7,16,221,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,219,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,236,30,167,7,177,147,139,64,26,20,8,181,7,16,223,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,7,69,134,181,175,225,44,64,26,20,8,181,7,16,224,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,222,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,68,36,246,109,37,31,65,64,26,20,8,181,7,16,227,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,35,130,156,199,163,222,138,64,26,20,8,181,7,16,226,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,225,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,85,138,129,252,141,155,101,64,26,20,8,181,7,16,230,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,206,116,101,11,111,51,135,64,26,20,8,181,7,16,229,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,228,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,108,132,89,35,192,103,134,64,26,20,8,181,7,16,232,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,223,75,177,156,73,202,104,64,26,20,8,181,7,16,233,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,231,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,163,65,83,98,208,132,64,26,20,8,181,7,16,235,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,146,60,254,172,233,234,109,64,26,20,8,181,7,16,236,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,234,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,17,93,54,63,4,16,132,64,26,20,8,181,7,16,238,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,119,9,143,182,8,5,112,64,26,20,8,181,7,16,239,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,237,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,20,106,44,211,71,102,131,64,26,20,8,181,7,16,241,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,64,166,153,246,21,186,112,64,26,20,8,181,7,16,242,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,240,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,24,119,34,103,139,188,130,64,26,20,8,181,7,16,244,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,62,72,160,62,62,43,113,64,26,20,8,181,7,16,245,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,243,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,232,45,25,207,31,30,130,64,26,20,8,181,7,16,247,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,10,67,164,54,35,111,113,64,26,20,8,181,7,16,248,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,246,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,29,226,17,179,166,161,129,64,26,20,8,181,7,16,250,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,10,67,164,54,35,111,113,64,26,20,8,181,7,16,251,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,249,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,133,61,13,231,112,82,129,64,26,20,8,181,7,16,253,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,62,72,160,62,62,43,113,64,26,20,8,181,7,16,254,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,252,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,83,150,10,151,45,37,129,64,26,20,8,181,7,16,128,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,14,255,150,166,210,140,112,64,26,20,8,181,7,16,129,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,255,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,142,128,11,61,58,205,110,64,26,20,8,181,7,16,132,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,186,66,9,239,139,14,129,64,26,20,8,181,7,16,131,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,130,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,186,66,9,239,139,14,129,64,26,20,8,181,7,16,134,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,22,175,166,92,60,21,104,64,26,20,8,181,7,16,135,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,133,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,83,150,10,151,45,37,129,64,26,20,8,181,7,16,137,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,190,148,121,12,196,19,101,64,26,20,8,181,7,16,138,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,136,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,82,231,13,187,193,93,129,64,26,20,8,181,7,16,140,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,203,200,81,92,210,108,98,64,26,20,8,181,7,16,141,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,139,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,131,223,19,47,153,195,129,64,26,20,8,181,7,16,143,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,176,249,83,88,193,139,95,64,26,20,8,181,7,16,144,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,142,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,179,40,29,199,4,98,130,64,26,20,8,181,7,16,146,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,148,254,14,56,235,242,90,64,26,20,8,181,7,16,147,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,145,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,22,25,41,175,179,45,131,64,26,20,8,181,7,16,149,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,65,160,212,87,34,15,87,64,26,20,8,181,7,16,150,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,148,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,17,93,54,63,4,16,132,64,26,20,8,181,7,16,152,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,128,123,175,247,115,149,84,64,26,20,8,181,7,16,153,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,151,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,64,247,66,251,3,231,132,64,26,20,8,181,7,16,155,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,82,144,159,23,224,133,83,64,26,20,8,181,7,16,156,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,154,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,10,148,77,59,17,156,133,64,26,20,8,181,7,16,158,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,238,65,154,119,89,43,83,64,26,20,8,181,7,16,159,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,157,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,57,46,90,247,16,115,134,64,26,20,8,181,7,16,161,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,82,144,159,23,224,133,83,64,26,20,8,181,7,16,162,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,160,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,104,200,102,179,16,74,135,64,26,20,8,181,7,16,164,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,128,123,175,247,115,149,84,64,26,20,8,181,7,16,165,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,163,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,202,184,114,155,191,21,136,64,26,20,8,181,7,16,167,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,65,160,212,87,34,15,87,64,26,20,8,181,7,16,168,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,166,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,142,234,141,143,177,229,137,64,26,20,8,181,7,16,170,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,130,14,68,120,45,124,94,64,26,20,8,181,7,16,171,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,169,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,17,146,209,7,230,103,142,64,26,20,8,181,7,16,173,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,218,143,190,44,154,172,105,64,26,20,8,181,7,16,174,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,172,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,183,11,247,209,60,39,144,64,26,20,8,181,7,16,176,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,151,248,240,28,153,8,109,64,26,20,8,181,7,16,177,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,175,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,173,253,25,101,152,144,64,26,20,8,181,7,16,179,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,197,227,0,253,44,24,110,64,26,20,8,181,7,16,180,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,178,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,152,245,7,240,201,71,145,64,26,20,8,181,7,16,182,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,243,206,16,221,192,39,111,64,26,20,8,181,7,16,183,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,181,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,150,15,118,235,201,145,64,26,20,8,181,7,16,185,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,192,39,14,141,125,250,110,64,26,20,8,181,7,16,186,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,184,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,46,60,19,4,40,8,146,64,26,20,8,181,7,16,188,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,197,227,0,253,44,24,110,64,26,20,8,181,7,16,189,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,187,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,45,141,22,40,188,64,146,64,26,20,8,181,7,16,191,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,100,81,238,204,85,219,108,64,26,20,8,181,7,16,192,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,190,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,120,48,28,50,235,160,146,64,26,20,8,181,7,16,194,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,118,65,185,140,19,82,105,64,26,20,8,181,7,16,195,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,193,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,215,30,130,46,206,146,64,26,20,8,181,7,16,197,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,81,206,142,140,222,125,102,64,26,20,8,181,7,16,198,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,196,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,41,128,32,148,120,234,146,64,26,20,8,181,7,16,200,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,249,179,97,60,102,124,99,64,26,20,8,181,7,16,201,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,199,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,220,126,33,210,113,251,146,64,26,20,8,181,7,16,203,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,148,254,14,56,235,242,90,64,26,20,8,181,7,16,204,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,202,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,229,201,180,151,250,239,84,64,26,20,8,181,7,16,207,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,93,214,31,192,39,223,146,64,26,20,8,181,7,16,206,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,205,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,134,27,94,154,149,146,64,26,20,8,181,7,16,209,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,53,199,191,46,33,143,78,64,26,20,8,181,7,16,210,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,208,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,72,231,18,154,127,2,146,64,26,20,8,181,7,16,212,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,215,93,11,238,63,137,66,64,26,20,8,181,7,16,213,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,211,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,203,75,7,28,121,60,145,64,26,20,8,181,7,16,215,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,44,184,176,181,228,181,47,64,26,20,8,181,7,16,216,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,214,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,131,6,251,201,33,107,144,64,26,20,8,181,7,16,218,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,4,62,186,104,121,40,18,64,26,20,8,181,7,16,219,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,217,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,78,178,184,123,182,243,210,63,26,20,8,181,7,16,222,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,13,214,222,151,54,74,143,64,26,20,8,181,7,16,221,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,220,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,234,206,183,162,58,142,64,26,20,8,181,7,16,224,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,115,175,202,208,30,0,9,64,26,20,8,181,7,16,225,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,223,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,164,195,163,68,122,141,64,26,20,8,181,7,16,227,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,188,94,49,181,69,57,39,64,26,20,8,181,7,16,228,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,226,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,76,177,185,55,136,208,140,64,26,20,8,181,7,16,230,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,171,40,130,91,198,43,59,64,26,20,8,181,7,16,231,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,229,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,130,101,178,27,15,84,140,64,26,20,8,181,7,16,233,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,142,10,75,110,143,199,70,64,26,20,8,181,7,16,234,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,232,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,132,195,171,211,230,226,139,64,26,20,8,181,7,16,236,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,45,29,117,23,171,177,80,64,26,20,8,181,7,16,237,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,235,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,88,54,149,171,42,98,138,64,26,20,8,181,7,16,239,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,102,122,76,188,75,18,98,64,26,20,8,181,7,16,240,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,238,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,143,153,138,107,29,173,137,64,26,20,8,181,7,16,242,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,186,216,134,156,20,246,101,64,26,20,8,181,7,16,243,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,241,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,147,85,125,219,204,202,136,64,26,20,8,181,7,16,245,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,63,222,195,204,32,7,106,64,26,20,8,181,7,16,246,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,244,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,101,106,109,251,56,187,135,64,26,20,8,181,7,16,248,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,197,227,0,253,44,24,110,64,26,20,8,181,7,16,249,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,247,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,107,213,92,71,84,160,134,64,26,20,8,181,7,16,251,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,115,77,156,70,89,231,112,64,26,20,8,181,7,16,252,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,250,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,112,64,76,147,111,133,133,64,26,20,8,181,7,16,254,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,159,218,178,110,21,104,114,64,26,20,8,181,7,16,255,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,253,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,168,82,62,47,206,151,132,64,26,20,8,181,7,16,129,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,102,25,196,246,74,142,115,64,26,20,8,181,7,16,130,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,128,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,121,184,49,115,206,192,131,64,26,20,8,181,7,16,132,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,150,98,205,142,182,44,116,64,26,20,8,181,7,16,133,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,131,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,176,27,39,51,193,11,131,64,26,20,8,181,7,16,135,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,200,9,208,222,249,89,116,64,26,20,8,181,7,16,136,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,134,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,210,29,155,85,109,130,64,26,20,8,181,7,16,138,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,47,182,206,54,88,67,116,64,26,20,8,181,7,16,139,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,137,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,152,192,198,70,142,187,115,64,26,20,8,181,7,16,142,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,233,220,21,171,139,229,129,64,26,20,8,181,7,16,141,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,140,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,81,56,17,223,85,150,129,64,26,20,8,181,7,16,144,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,207,35,188,6,129,6,115,64,26,20,8,181,7,16,145,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,143,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,82,231,13,187,193,93,129,64,26,20,8,181,7,16,147,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,108,51,176,30,210,58,114,64,26,20,8,181,7,16,148,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,146,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,236,233,11,63,207,59,129,64,26,20,8,181,7,16,150,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,62,72,160,62,62,43,113,64,26,20,8,181,7,16,151,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,181,7,16,149,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,181,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,198,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,153,17,18,150,17,10,147,17,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,53,48,53,101,102,26,19,8,182,7,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,182,7,16,4,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,241,15,10,6,112,111,105,110,116,115,18,230,15,18,227,15,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,202,120,64,26,19,8,182,7,16,8,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,194,129,64,26,19,8,182,7,16,7,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,6,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,202,120,64,26,19,8,182,7,16,10,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,87,129,64,26,19,8,182,7,16,11,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,9,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,117,117,64,26,19,8,182,7,16,13,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,29,131,64,26,19,8,182,7,16,14,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,12,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,10,117,64,26,19,8,182,7,16,16,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,135,131,64,26,19,8,182,7,16,17,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,15,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,10,117,64,26,19,8,182,7,16,19,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,229,131,64,26,19,8,182,7,16,20,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,18,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,37,117,64,26,19,8,182,7,16,22,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,242,131,64,26,19,8,182,7,16,23,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,21,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,74,118,64,26,19,8,182,7,16,25,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,131,64,26,19,8,182,7,16,26,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,24,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,85,130,64,26,19,8,182,7,16,29,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,130,128,64,26,19,8,182,7,16,28,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,27,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,141,129,64,26,19,8,182,7,16,31,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,221,129,64,26,19,8,182,7,16,32,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,30,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,194,129,64,26,19,8,182,7,16,34,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,181,129,64,26,19,8,182,7,16,35,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,33,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,90,127,64,26,19,8,182,7,16,38,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,61,129,64,26,19,8,182,7,16,37,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,36,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,133,126,64,26,19,8,182,7,16,41,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,61,129,64,26,19,8,182,7,16,40,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,39,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,45,130,64,26,19,8,182,7,16,43,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,63,128,64,26,19,8,182,7,16,44,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,42,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,58,130,64,26,19,8,182,7,16,46,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,31,130,64,26,19,8,182,7,16,47,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,45,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,194,129,64,26,19,8,182,7,16,49,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,55,131,64,26,19,8,182,7,16,50,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,48,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,127,129,64,26,19,8,182,7,16,52,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,135,131,64,26,19,8,182,7,16,53,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,51,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,37,127,64,26,19,8,182,7,16,55,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,23,133,64,26,19,8,182,7,16,56,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,54,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,159,126,64,26,19,8,182,7,16,58,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,133,64,26,19,8,182,7,16,59,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,57,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,5,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,182,7,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,182,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,208,83,18,205,83,10,202,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,183,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,102,99,52,102,102,26,19,8,183,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,183,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,147,82,10,6,112,111,105,110,116,115,18,136,82,18,133,82,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,200,90,121,227,231,134,136,64,26,19,8,183,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,180,125,117,110,196,155,73,64,26,19,8,183,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,54,208,96,63,57,228,134,64,26,19,8,183,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,207,132,68,204,129,138,97,64,26,19,8,183,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,59,140,83,175,232,1,134,64,26,19,8,183,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,135,49,132,76,209,200,101,64,26,19,8,183,7,16,14,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,71,17,47,35,139,147,131,64,26,19,8,183,7,16,16,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,59,34,209,92,113,233,106,64,26,19,8,183,7,16,17,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,15,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,27,132,24,251,206,18,130,64,26,19,8,183,7,16,19,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,109,201,211,172,180,22,107,64,26,19,8,183,7,16,20,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,18,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,35,77,1,255,193,134,128,64,26,19,8,183,7,16,22,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,190,148,121,12,196,19,101,64,26,19,8,183,7,16,23,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,21,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,163,0,43,113,123,128,64,26,19,8,183,7,16,25,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,153,33,79,12,143,63,98,64,26,19,8,183,7,16,26,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,24,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,53,19,91,72,184,129,64,26,19,8,183,7,16,28,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,27,45,170,87,237,58,84,64,26,19,8,183,7,16,29,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,27,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,27,132,24,251,206,18,130,64,26,19,8,183,7,16,31,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,82,144,159,23,224,133,83,64,26,19,8,183,7,16,32,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,30,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,74,30,37,183,206,233,130,64,26,19,8,183,7,16,34,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,238,65,154,119,89,43,83,64,26,19,8,183,7,16,35,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,33,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,239,72,111,219,76,133,64,26,19,8,183,7,16,37,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,194,233,30,24,127,2,92,64,26,19,8,183,7,16,38,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,36,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,42,75,133,203,150,82,137,64,26,19,8,183,7,16,40,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,251,70,246,188,31,99,109,64,26,19,8,183,7,16,41,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,39,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,39,62,143,55,83,252,137,64,26,19,8,183,7,16,43,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,192,39,14,141,125,250,110,64,26,19,8,183,7,16,44,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,42,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,33,36,163,15,204,79,139,64,26,19,8,183,7,16,46,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,64,166,153,246,21,186,112,64,26,19,8,183,7,16,47,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,45,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,121,237,204,59,176,24,142,64,26,19,8,183,7,16,49,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,12,161,157,238,250,253,112,64,26,19,8,183,7,16,50,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,48,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,120,62,208,95,68,81,142,64,26,19,8,183,7,16,52,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,117,171,149,254,48,118,112,64,26,19,8,183,7,16,53,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,51,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,119,143,211,131,216,137,142,64,26,19,8,183,7,16,55,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,138,196,24,205,138,175,111,64,26,19,8,183,7,16,56,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,54,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,219,218,159,81,6,143,64,26,19,8,183,7,16,58,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,181,28,148,44,101,216,102,64,26,19,8,183,7,16,59,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,57,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,15,52,216,79,14,217,142,64,26,19,8,183,7,16,61,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,186,216,134,156,20,246,101,64,26,19,8,183,7,16,62,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,60,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,119,143,211,131,216,137,142,64,26,19,8,183,7,16,64,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,35,227,126,172,74,110,101,64,26,19,8,183,7,16,65,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,63,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,80,190,175,203,203,38,140,64,26,19,8,183,7,16,67,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,194,80,108,124,115,49,100,64,26,19,8,183,7,16,68,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,66,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,132,195,171,211,230,226,139,64,26,19,8,183,7,16,70,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,39,159,113,28,250,139,100,64,26,19,8,183,7,16,71,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,69,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,185,200,167,219,1,159,139,64,26,19,8,183,7,16,73,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,35,227,126,172,74,110,101,64,26,19,8,183,7,16,74,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,72,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,154,111,105,3,84,119,135,64,26,19,8,183,7,16,76,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,102,25,196,246,74,142,115,64,26,19,8,183,7,16,77,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,75,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,212,223,84,87,138,24,134,64,26,19,8,183,7,16,79,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,143,72,225,102,47,128,117,64,26,19,8,183,7,16,80,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,78,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,164,150,75,191,30,122,133,64,26,19,8,183,7,16,82,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,191,145,234,254,154,30,118,64,26,19,8,183,7,16,83,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,81,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,81,56,17,223,85,150,129,64,26,19,8,183,7,16,85,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,242,56,237,78,222,75,118,64,26,19,8,183,7,16,86,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,84,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,185,147,12,19,32,71,129,64,26,19,8,183,7,16,88,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,194,239,227,182,114,173,117,64,26,19,8,183,7,16,89,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,87,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,134,236,9,195,220,25,129,64,26,19,8,183,7,16,91,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,145,166,218,30,7,15,117,64,26,19,8,183,7,16,92,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,90,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,134,236,9,195,220,25,129,64,26,19,8,183,7,16,94,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,56,46,180,22,183,126,114,64,26,19,8,183,7,16,95,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,93,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,185,147,12,19,32,71,129,64,26,19,8,183,7,16,97,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,113,239,162,142,129,88,113,64,26,19,8,183,7,16,98,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,96,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,81,56,17,223,85,150,129,64,26,19,8,183,7,16,100,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,67,4,147,174,237,72,112,64,26,19,8,183,7,16,101,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,99,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,78,218,23,39,126,7,130,64,26,19,8,183,7,16,103,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,92,217,8,237,246,159,110,64,26,19,8,183,7,16,104,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,102,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,76,124,30,111,166,120,130,64,26,19,8,183,7,16,106,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,151,248,240,28,153,8,109,64,26,19,8,183,7,16,107,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,105,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,23,200,37,139,31,245,130,64,26,19,8,183,7,16,109,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,105,13,225,60,5,249,107,64,26,19,8,183,7,16,110,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,108,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,225,19,45,167,152,113,131,64,26,19,8,183,7,16,112,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,210,23,217,76,59,113,107,64,26,19,8,183,7,16,113,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,111,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,117,252,62,3,31,163,132,64,26,19,8,183,7,16,115,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,210,23,217,76,59,113,107,64,26,19,8,183,7,16,116,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,114,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,239,72,111,219,76,133,64,26,19,8,183,7,16,118,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,105,13,225,60,5,249,107,64,26,19,8,183,7,16,119,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,117,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,124,95,151,151,205,134,64,26,19,8,183,7,16,121,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,243,206,16,221,192,39,111,64,26,19,8,183,7,16,122,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,120,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,109,107,127,70,153,135,64,26,19,8,183,7,16,124,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,64,166,153,246,21,186,112,64,26,19,8,183,7,16,125,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,123,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,110,18,108,10,106,10,41,10,1,121,18,36,26,34,8,4,18,8,253,14,204,230,20,22,116,64,26,20,8,183,7,16,128,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,41,156,136,239,42,139,137,64,26,19,8,183,7,16,127,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,126,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,176,255,24,247,180,54,121,64,26,20,8,183,7,16,131,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,181,187,177,71,190,72,140,64,26,20,8,183,7,16,130,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,129,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,224,153,203,147,14,2,142,64,26,20,8,183,7,16,133,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,60,31,66,79,72,244,123,64,26,20,8,183,7,16,134,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,132,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,102,78,95,191,44,230,125,64,26,20,8,183,7,16,137,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,10,201,232,3,243,243,143,64,26,20,8,183,7,16,136,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,135,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,2,175,252,219,107,135,144,64,26,20,8,183,7,16,139,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,97,146,108,79,125,200,126,64,26,20,8,183,7,16,140,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,138,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,155,2,254,131,13,158,144,64,26,20,8,183,7,16,142,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,97,146,108,79,125,200,126,64,26,20,8,183,7,16,143,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,141,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,102,78,5,160,134,26,145,64,26,20,8,183,7,16,145,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,156,177,84,127,31,49,125,64,26,20,8,183,7,16,146,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,144,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,202,156,10,64,13,117,145,64,26,20,8,183,7,16,148,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,10,120,63,255,4,199,123,64,26,20,8,183,7,16,149,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,147,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,227,152,13,250,248,167,145,64,26,20,8,183,7,16,151,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,69,151,39,47,167,47,122,64,26,20,8,183,7,16,152,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,150,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,175,66,14,206,73,179,145,64,26,20,8,183,7,16,154,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,124,250,28,239,153,122,121,64,26,20,8,183,7,16,155,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,153,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,134,208,251,134,208,68,119,64,26,20,8,183,7,16,158,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,150,151,14,56,242,184,145,64,26,20,8,183,7,16,157,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,156,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,194,239,227,182,114,173,117,64,26,20,8,183,7,16,161,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,125,155,11,126,6,134,145,64,26,20,8,183,7,16,160,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,159,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,161,6,72,40,49,145,64,26,20,8,183,7,16,163,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,97,93,209,134,155,112,116,64,26,20,8,183,7,16,164,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,162,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,51,167,2,80,67,237,144,64,26,20,8,183,7,16,166,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,152,192,198,70,142,187,115,64,26,20,8,183,7,16,167,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,165,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,130,87,254,237,181,163,144,64,26,20,8,183,7,16,169,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,1,203,190,86,196,51,115,64,26,20,8,183,7,16,170,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,168,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,208,7,250,139,40,90,144,64,26,20,8,183,7,16,172,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,53,208,186,94,223,239,114,64,26,20,8,183,7,16,173,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,171,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,217,127,223,107,135,85,143,64,26,20,8,183,7,16,175,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,207,35,188,6,129,6,115,64,26,20,8,183,7,16,176,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,174,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,19,240,202,191,189,246,141,64,26,20,8,183,7,16,178,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,253,14,204,230,20,22,116,64,26,20,8,183,7,16,179,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,177,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,27,185,179,195,176,106,140,64,26,20,8,183,7,16,181,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,141,234,231,174,87,241,117,64,26,20,8,183,7,16,182,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,180,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,124,250,28,239,153,122,121,64,26,20,8,183,7,16,185,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,243,56,147,47,56,64,138,64,26,20,8,183,7,16,184,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,183,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,46,88,123,95,218,168,136,64,26,20,8,183,7,16,187,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,113,36,62,87,99,176,123,64,26,20,8,183,7,16,188,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,186,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,50,20,110,207,137,198,135,64,26,20,8,183,7,16,190,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,5,188,76,143,85,169,124,64,26,20,8,183,7,16,191,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,189,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,38,96,107,232,216,134,64,26,20,8,183,7,16,193,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,104,172,88,119,4,117,125,64,26,20,8,183,7,16,194,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,192,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,110,226,82,219,151,246,133,64,26,20,8,183,7,16,196,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,255,161,96,103,206,252,125,64,26,20,8,183,7,16,197,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,195,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,66,85,60,179,219,117,132,64,26,20,8,183,7,16,199,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,49,73,99,183,17,42,126,64,26,20,8,183,7,16,200,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,198,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,161,96,103,206,252,125,64,26,20,8,183,7,16,203,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,171,95,52,195,17,238,131,64,26,20,8,183,7,16,202,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,201,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,19,187,47,247,219,158,131,64,26,20,8,183,7,16,205,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,154,83,91,199,71,162,125,64,26,20,8,183,7,16,206,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,204,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,226,194,41,131,4,57,131,64,26,20,8,183,7,16,208,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,58,193,72,151,112,101,124,64,26,20,8,183,7,16,209,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,207,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,111,40,219,98,34,131,64,26,20,8,183,7,16,211,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,19,240,36,223,99,2,122,64,26,20,8,183,7,16,212,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,210,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,210,129,91,159,178,137,134,64,26,20,8,183,7,16,214,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,67,4,147,174,237,72,112,64,26,20,8,183,7,16,215,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,213,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,109,107,127,70,153,135,64,26,20,8,183,7,16,217,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,192,39,14,141,125,250,110,64,26,20,8,183,7,16,218,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,216,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,46,88,123,95,218,168,136,64,26,20,8,183,7,16,220,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,41,50,6,157,179,114,110,64,26,20,8,183,7,16,221,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,219,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,41,50,6,157,179,114,110,64,26,20,8,183,7,16,224,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,92,67,139,63,110,184,137,64,26,20,8,183,7,16,223,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,222,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,168,1,18,74,220,144,64,26,20,8,183,7,16,226,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,248,82,217,118,101,248,116,64,26,20,8,183,7,16,227,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,225,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,254,242,9,108,188,105,145,64,26,20,8,183,7,16,229,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,194,239,227,182,114,173,117,64,26,20,8,183,7,16,230,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,228,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,252,148,16,180,228,218,145,64,26,20,8,183,7,16,232,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,141,234,231,174,87,241,117,64,26,20,8,183,7,16,233,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,231,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,34,183,55,144,133,118,148,64,26,20,8,183,7,16,235,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,105,13,225,60,5,249,107,64,26,20,8,183,7,16,236,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,234,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,109,90,61,154,180,214,148,64,26,20,8,183,7,16,238,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,131,117,145,220,33,171,102,64,26,20,8,183,7,16,239,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,237,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,153,33,79,12,143,63,98,64,26,20,8,183,7,16,242,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,82,0,65,40,241,20,149,64,26,20,8,183,7,16,241,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,240,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,94,58,224,200,163,148,64,26,20,8,183,7,16,244,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,59,207,2,91,39,175,50,64,26,20,8,183,7,16,245,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,243,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,112,103,51,46,248,44,148,64,26,20,8,183,7,16,247,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,189,197,65,160,149,94,251,63,26,20,8,183,7,16,248,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,246,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,142,206,37,52,255,68,147,64,26,20,8,183,7,16,250,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,79,244,236,153,214,26,27,192,26,20,8,183,7,16,251,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,249,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,246,41,33,104,201,245,146,64,26,20,8,183,7,16,253,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,96,66,45,91,92,131,53,64,26,20,8,183,7,16,254,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,252,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,207,35,188,6,129,6,115,64,26,20,8,183,7,16,129,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,34,211,159,235,55,23,139,64,26,20,8,183,7,16,128,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,255,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,203,190,86,196,51,115,64,26,20,8,183,7,16,132,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,38,143,146,91,231,52,138,64,26,20,8,183,7,16,131,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,130,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,41,156,136,239,42,139,137,64,26,20,8,183,7,16,134,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,3,41,184,14,156,194,114,64,26,20,8,183,7,16,135,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,133,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,45,169,126,131,110,225,136,64,26,20,8,183,7,16,137,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,115,77,156,70,89,231,112,64,26,20,8,183,7,16,138,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,136,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,201,9,118,191,83,78,136,64,26,20,8,183,7,16,140,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,214,211,203,188,234,142,106,64,26,20,8,183,7,16,141,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,139,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,129,182,181,63,163,140,140,64,26,20,8,183,7,16,143,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,157,83,2,75,233,98,89,192,26,20,8,183,7,16,144,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,142,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,70,151,205,15,1,36,142,64,26,20,8,183,7,16,146,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,157,83,2,75,233,98,89,192,26,20,8,183,7,16,147,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,145,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,120,229,223,94,187,143,64,26,20,8,183,7,16,149,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,220,46,221,234,58,233,86,192,26,20,8,183,7,16,150,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,148,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,249,54,23,252,12,76,146,64,26,20,8,183,7,16,152,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,189,197,65,160,149,94,251,63,26,20,8,183,7,16,153,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,151,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,69,137,25,226,167,115,146,64,26,20,8,183,7,16,155,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,169,149,237,218,12,69,49,64,26,20,8,183,7,16,156,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,183,7,16,154,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,183,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,197,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,235,33,18,232,33,10,229,33,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,184,7,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,53,48,53,101,102,26,19,8,184,7,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,184,7,16,4,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,174,32,10,6,112,111,105,110,116,115,18,163,32,18,160,32,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,122,120,64,26,19,8,184,7,16,8,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,146,137,64,26,19,8,184,7,16,7,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,6,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,167,139,64,26,19,8,184,7,16,10,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,154,118,64,26,19,8,184,7,16,11,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,9,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,18,140,64,26,19,8,184,7,16,13,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,154,118,64,26,19,8,184,7,16,14,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,12,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,197,138,64,26,19,8,184,7,16,16,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,101,129,64,26,19,8,184,7,16,17,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,15,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,95,136,64,26,19,8,184,7,16,19,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,173,132,64,26,19,8,184,7,16,20,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,18,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,178,135,64,26,19,8,184,7,16,22,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,74,134,64,26,19,8,184,7,16,23,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,21,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,175,136,64,26,19,8,184,7,16,25,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,114,134,64,26,19,8,184,7,16,26,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,24,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,103,138,64,26,19,8,184,7,16,28,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,197,133,64,26,19,8,184,7,16,29,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,27,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,39,142,64,26,19,8,184,7,16,31,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,231,130,64,26,19,8,184,7,16,32,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,30,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,13,142,64,26,19,8,184,7,16,34,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,178,130,64,26,19,8,184,7,16,35,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,33,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,234,129,64,26,19,8,184,7,16,38,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,69,141,64,26,19,8,184,7,16,37,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,36,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,58,140,64,26,19,8,184,7,16,40,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,141,129,64,26,19,8,184,7,16,41,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,39,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,139,64,26,19,8,184,7,16,43,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,87,129,64,26,19,8,184,7,16,44,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,42,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,61,134,64,26,19,8,184,7,16,46,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,15,131,64,26,19,8,184,7,16,47,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,45,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,42,131,64,26,19,8,184,7,16,49,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,34,134,64,26,19,8,184,7,16,50,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,48,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,114,129,64,26,19,8,184,7,16,52,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,87,134,64,26,19,8,184,7,16,53,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,51,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,117,127,64,26,19,8,184,7,16,55,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,250,133,64,26,19,8,184,7,16,56,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,54,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,37,127,64,26,19,8,184,7,16,58,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,223,133,64,26,19,8,184,7,16,59,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,57,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,157,133,64,26,19,8,184,7,16,62,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,239,126,64,26,19,8,184,7,16,61,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,60,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,143,127,64,26,19,8,184,7,16,64,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,239,132,64,26,19,8,184,7,16,65,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,63,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,50,128,64,26,19,8,184,7,16,67,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,93,132,64,26,19,8,184,7,16,68,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,66,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,157,128,64,26,19,8,184,7,16,70,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,13,132,64,26,19,8,184,7,16,71,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,69,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,34,129,64,26,19,8,184,7,16,73,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,189,131,64,26,19,8,184,7,16,74,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,72,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,181,129,64,26,19,8,184,7,16,76,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,135,131,64,26,19,8,184,7,16,77,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,75,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,178,130,64,26,19,8,184,7,16,79,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,109,131,64,26,19,8,184,7,16,80,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,78,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,42,131,64,26,19,8,184,7,16,82,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,135,131,64,26,19,8,184,7,16,83,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,81,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,162,131,64,26,19,8,184,7,16,85,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,202,131,64,26,19,8,184,7,16,86,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,84,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,26,132,64,26,19,8,184,7,16,88,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,66,132,64,26,19,8,184,7,16,89,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,87,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,226,132,64,26,19,8,184,7,16,91,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,90,133,64,26,19,8,184,7,16,92,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,90,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,90,133,64,26,19,8,184,7,16,94,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,47,134,64,26,19,8,184,7,16,95,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,93,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,210,133,64,26,19,8,184,7,16,97,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,111,135,64,26,19,8,184,7,16,98,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,96,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,134,64,26,19,8,184,7,16,100,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,149,136,64,26,19,8,184,7,16,101,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,99,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,74,134,64,26,19,8,184,7,16,103,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,162,136,64,26,19,8,184,7,16,104,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,102,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,98,135,64,26,19,8,184,7,16,106,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,149,136,64,26,19,8,184,7,16,107,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,105,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,61,139,64,26,19,8,184,7,16,109,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,85,135,64,26,19,8,184,7,16,110,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,108,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,207,139,64,26,19,8,184,7,16,112,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,31,135,64,26,19,8,184,7,16,113,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,111,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,139,64,26,19,8,184,7,16,115,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,5,135,64,26,19,8,184,7,16,116,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,114,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,5,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,184,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,34,19,8,204,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,182,10,18,179,10,10,176,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,185,7,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,53,48,53,101,102,26,19,8,185,7,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,185,7,16,4,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,69,141,64,26,19,8,185,7,16,7,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,15,125,64,26,19,8,185,7,16,8,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,185,7,16,6,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,69,141,64,26,19,8,185,7,16,10,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,95,125,64,26,19,8,185,7,16,11,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,185,7,16,9,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,29,141,64,26,19,8,185,7,16,13,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,202,125,64,26,19,8,185,7,16,14,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,185,7,16,12,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,138,140,64,26,19,8,185,7,16,16,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,37,128,64,26,19,8,185,7,16,17,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,185,7,16,15,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,5,140,64,26,19,8,185,7,16,19,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,207,129,64,26,19,8,185,7,16,20,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,185,7,16,18,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,7,139,64,26,19,8,185,7,16,22,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,242,131,64,26,19,8,185,7,16,23,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,185,7,16,21,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,61,139,64,26,19,8,185,7,16,25,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,242,131,64,26,19,8,185,7,16,26,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,185,7,16,24,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,119,142,64,26,19,8,185,7,16,28,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,178,130,64,26,19,8,185,7,16,29,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,185,7,16,27,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,18,146,64,26,19,8,185,7,16,31,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,103,128,64,26,19,8,185,7,16,32,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,185,7,16,30,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,58,146,64,26,19,8,185,7,16,34,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,50,128,64,26,19,8,185,7,16,35,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,185,7,16,33,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,185,7,16,5,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,185,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,34,19,8,205,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,186,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,186,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,186,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,252,127,43,16,248,136,64,26,19,8,186,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,114,96,75,77,213,53,35,192,26,19,8,186,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,186,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,206,124,79,167,190,235,52,192,26,19,8,186,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,198,252,127,43,16,248,136,64,26,19,8,186,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,186,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,95,80,129,211,177,14,137,64,26,19,8,186,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,62,214,206,167,93,104,61,192,26,19,8,186,7,16,14,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,186,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,156,136,239,42,139,137,64,26,19,8,186,7,16,16,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,180,55,145,212,2,5,74,192,26,19,8,186,7,16,17,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,186,7,16,15,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,92,67,139,63,110,184,137,64,26,19,8,186,7,16,19,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,162,71,198,20,69,142,77,192,26,19,8,186,7,16,20,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,186,7,16,18,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,191,226,147,3,137,75,138,64,26,19,8,186,7,16,22,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,246,150,141,138,87,155,81,192,26,19,8,186,7,16,23,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,186,7,16,21,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,51,151,39,29,132,138,64,26,19,8,186,7,16,25,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,91,229,146,42,222,245,81,192,26,19,8,186,7,16,26,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,186,7,16,24,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,186,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,186,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,196,21,18,193,21,10,190,21,10,156,20,10,6,112,111,105,110,116,115,18,145,20,18,142,20,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,32,35,59,220,199,130,64,26,19,8,187,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,7,69,134,181,175,225,44,64,26,19,8,187,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,32,35,59,220,199,130,64,26,19,8,187,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,108,228,208,84,82,67,78,192,26,19,8,187,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,176,27,39,51,193,11,131,64,26,19,8,187,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,128,88,189,42,19,202,84,192,26,19,8,187,7,16,14,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,222,6,55,19,85,27,132,64,26,19,8,187,7,16,16,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,30,157,76,11,70,86,94,192,26,19,8,187,7,16,17,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,15,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,15,255,60,135,44,129,132,64,26,19,8,187,7,16,19,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,239,224,184,53,250,103,96,192,26,19,8,187,7,16,20,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,18,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,67,74,23,125,99,133,64,26,19,8,187,7,16,22,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,25,16,214,165,222,89,98,192,26,19,8,187,7,16,23,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,21,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,56,127,93,27,165,171,134,64,26,19,8,187,7,16,25,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,222,240,237,117,60,241,99,192,26,19,8,187,7,16,26,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,24,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,51,195,106,171,245,141,135,64,26,19,8,187,7,16,28,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,16,152,240,197,127,30,100,192,26,19,8,187,7,16,29,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,27,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,176,120,15,151,123,136,64,26,19,8,187,7,16,31,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,176,5,222,149,168,225,98,192,26,19,8,187,7,16,32,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,30,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,72,135,71,137,116,137,64,26,19,8,187,7,16,34,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,76,136,92,235,217,101,95,192,26,19,8,187,7,16,35,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,33,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,193,64,141,187,96,218,137,64,26,19,8,187,7,16,37,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,1,162,7,235,111,189,89,192,26,19,8,187,7,16,38,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,36,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,145,144,223,244,18,138,64,26,19,8,187,7,16,40,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,146,72,136,234,208,64,81,192,26,19,8,187,7,16,41,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,39,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,231,143,11,164,7,138,64,26,19,8,187,7,16,43,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,33,254,123,84,232,154,72,192,26,19,8,187,7,16,44,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,42,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,245,150,140,231,15,207,137,64,26,19,8,187,7,16,46,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,24,99,164,167,40,148,58,192,26,19,8,187,7,16,47,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,45,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,42,75,133,203,150,82,137,64,26,19,8,187,7,16,49,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,5,14,152,153,108,114,21,192,26,19,8,187,7,16,50,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,48,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,46,88,123,95,218,168,136,64,26,19,8,187,7,16,52,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,7,69,134,181,175,225,44,64,26,19,8,187,7,16,53,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,51,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,14,114,199,110,10,136,64,26,19,8,187,7,16,55,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,208,155,172,91,251,255,61,64,26,19,8,187,7,16,56,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,54,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,218,88,79,111,92,134,64,26,19,8,187,7,16,58,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,217,240,159,110,249,111,76,64,26,19,8,187,7,16,59,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,57,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,221,86,211,124,58,134,64,26,19,8,187,7,16,61,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,53,199,191,46,33,143,78,64,26,19,8,187,7,16,62,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,60,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,221,86,211,124,58,134,64,26,19,8,187,7,16,64,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,199,0,213,174,59,249,79,64,26,19,8,187,7,16,65,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,63,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,106,38,96,107,232,216,134,64,26,19,8,187,7,16,67,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,203,97,4,248,221,61,90,64,26,19,8,187,7,16,68,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,66,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,22,108,83,151,164,135,64,26,19,8,187,7,16,70,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,111,242,49,156,170,77,96,64,26,19,8,187,7,16,71,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,69,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,174,122,139,137,157,136,64,26,19,8,187,7,16,73,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,148,101,92,156,223,33,99,64,26,19,8,187,7,16,74,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,72,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,187,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,187,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,187,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,187,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,214,33,18,211,33,10,208,33,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,188,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,188,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,174,32,10,6,112,111,105,110,116,115,18,163,32,18,160,32,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,8,123,206,12,46,188,106,64,26,19,8,188,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,99,12,116,67,97,44,136,64,26,19,8,188,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,12,116,67,97,44,136,64,26,19,8,188,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,17,243,179,236,140,247,104,64,26,19,8,188,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,174,122,139,137,157,136,64,26,19,8,188,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,67,154,182,60,208,36,105,64,26,19,8,188,7,16,14,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,8,123,206,12,46,188,106,64,26,19,8,188,7,16,17,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,146,166,128,255,96,3,137,64,26,19,8,188,7,16,16,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,15,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,252,127,43,16,248,136,64,26,19,8,188,7,16,19,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,100,81,238,204,85,219,108,64,26,19,8,188,7,16,20,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,18,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,142,128,11,61,58,205,110,64,26,19,8,188,7,16,23,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,149,4,122,183,56,146,136,64,26,19,8,188,7,16,22,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,21,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,201,9,118,191,83,78,136,64,26,19,8,188,7,16,25,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,87,29,22,125,71,130,111,64,26,19,8,188,7,16,26,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,24,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,106,109,251,56,187,135,64,26,19,8,188,7,16,28,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,119,9,143,182,8,5,112,64,26,19,8,188,7,16,29,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,27,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,25,106,215,164,130,135,64,26,19,8,188,7,16,31,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,188,107,27,29,206,220,111,64,26,19,8,188,7,16,32,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,30,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,30,102,223,191,62,135,64,26,19,8,188,7,16,34,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,142,128,11,61,58,205,110,64,26,19,8,188,7,16,35,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,33,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,30,102,223,191,62,135,64,26,19,8,188,7,16,37,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,50,170,235,124,18,174,108,64,26,19,8,188,7,16,38,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,36,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,52,114,103,135,97,85,135,64,26,19,8,188,7,16,40,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,205,91,230,220,139,83,108,64,26,19,8,188,7,16,41,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,39,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,201,9,118,191,83,78,136,64,26,19,8,188,7,16,43,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,155,180,227,140,72,38,108,64,26,19,8,188,7,16,44,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,42,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,176,120,15,151,123,136,64,26,19,8,188,7,16,46,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,3,233,44,207,128,108,64,26,19,8,188,7,16,47,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,45,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,200,90,121,227,231,134,136,64,26,19,8,188,7,16,49,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,151,248,240,28,153,8,109,64,26,19,8,188,7,16,50,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,48,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,95,117,235,2,67,136,64,26,19,8,188,7,16,52,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,146,60,254,172,233,234,109,64,26,19,8,188,7,16,53,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,51,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,152,17,112,75,124,232,135,64,26,19,8,188,7,16,55,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,96,149,251,92,166,189,109,64,26,19,8,188,7,16,56,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,54,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,106,109,251,56,187,135,64,26,19,8,188,7,16,58,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,201,159,243,108,220,53,109,64,26,19,8,188,7,16,59,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,57,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,25,106,215,164,130,135,64,26,19,8,188,7,16,61,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,8,123,206,12,46,188,106,64,26,19,8,188,7,16,62,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,60,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,25,106,215,164,130,135,64,26,19,8,188,7,16,64,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,63,222,195,204,32,7,106,64,26,19,8,188,7,16,65,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,63,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,67,154,182,60,208,36,105,64,26,19,8,188,7,16,68,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,153,192,108,39,232,175,135,64,26,19,8,188,7,16,67,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,66,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,14,114,199,110,10,136,64,26,19,8,188,7,16,70,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,17,243,179,236,140,247,104,64,26,19,8,188,7,16,71,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,69,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,200,90,121,227,231,134,136,64,26,19,8,188,7,16,73,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,168,232,187,220,86,127,105,64,26,19,8,188,7,16,74,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,72,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,214,211,203,188,234,142,106,64,26,19,8,188,7,16,77,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,249,82,127,87,191,236,136,64,26,19,8,188,7,16,76,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,75,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,248,163,130,123,83,37,137,64,26,19,8,188,7,16,79,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,4,191,219,156,126,158,107,64,26,19,8,188,7,16,80,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,78,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,45,169,126,131,110,225,136,64,26,19,8,188,7,16,82,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,151,248,240,28,153,8,109,64,26,19,8,188,7,16,83,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,81,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,12,116,67,97,44,136,64,26,19,8,188,7,16,85,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,142,128,11,61,58,205,110,64,26,19,8,188,7,16,86,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,84,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,109,107,127,70,153,135,64,26,19,8,188,7,16,88,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,87,29,22,125,71,130,111,64,26,19,8,188,7,16,89,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,87,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,200,102,179,16,74,135,64,26,19,8,188,7,16,91,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,37,118,19,45,4,85,111,64,26,19,8,188,7,16,92,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,90,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,206,116,101,11,111,51,135,64,26,19,8,188,7,16,94,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,247,138,3,77,112,69,110,64,26,19,8,188,7,16,95,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,93,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,200,102,179,16,74,135,64,26,19,8,188,7,16,97,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,151,248,240,28,153,8,109,64,26,19,8,188,7,16,98,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,96,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,105,13,225,60,5,249,107,64,26,19,8,188,7,16,101,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,103,25,106,215,164,130,135,64,26,19,8,188,7,16,100,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,99,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,50,20,110,207,137,198,135,64,26,19,8,188,7,16,103,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,4,191,219,156,126,158,107,64,26,19,8,188,7,16,104,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,102,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,98,93,119,103,245,100,136,64,26,19,8,188,7,16,106,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,4,191,219,156,126,158,107,64,26,19,8,188,7,16,107,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,105,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,82,127,87,191,236,136,64,26,19,8,188,7,16,109,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,205,91,230,220,139,83,108,64,26,19,8,188,7,16,110,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,108,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,197,77,131,79,164,48,137,64,26,19,8,188,7,16,112,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,151,248,240,28,153,8,109,64,26,19,8,188,7,16,113,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,111,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,46,238,248,12,99,144,109,64,26,19,8,188,7,16,116,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,146,166,128,255,96,3,137,64,26,19,8,188,7,16,115,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,114,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,188,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,188,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,128,48,18,253,47,10,250,47,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,189,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,189,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,189,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,195,46,10,6,112,111,105,110,116,115,18,184,46,18,181,46,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,128,32,148,120,234,146,64,26,19,8,189,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,119,3,202,23,21,90,86,64,26,19,8,189,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,39,56,36,184,5,93,92,64,26,19,8,189,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,65,205,38,114,248,85,147,64,26,19,8,189,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,242,109,46,248,25,216,147,64,26,19,8,189,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,89,70,116,108,61,185,100,64,26,19,8,189,7,16,14,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,215,19,50,134,86,22,148,64,26,19,8,189,7,16,16,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,122,253,171,252,194,111,104,64,26,19,8,189,7,16,17,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,15,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,184,54,82,140,101,148,64,26,19,8,189,7,16,19,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,113,239,162,142,129,88,113,64,26,19,8,189,7,16,20,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,18,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,60,98,55,38,221,112,148,64,26,19,8,189,7,16,22,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,244,150,230,6,182,218,117,64,26,19,8,189,7,16,23,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,21,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,189,104,50,240,254,27,148,64,26,19,8,189,7,16,25,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,207,88,87,207,98,94,125,64,26,19,8,189,7,16,26,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,24,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,37,196,45,36,201,204,147,64,26,19,8,189,7,16,28,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,246,41,123,135,111,193,127,64,26,19,8,189,7,16,29,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,27,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,142,206,37,52,255,68,147,64,26,19,8,189,7,16,31,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,91,39,208,243,142,29,129,64,26,19,8,189,7,16,32,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,30,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,87,107,221,131,223,255,129,64,26,19,8,189,7,16,35,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,197,49,27,244,241,143,146,64,26,19,8,189,7,16,34,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,33,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,74,69,12,82,87,145,145,64,26,19,8,189,7,16,37,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,238,96,229,115,169,135,130,64,26,19,8,189,7,16,38,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,36,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,242,9,108,188,105,145,64,26,19,8,189,7,16,40,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,238,96,229,115,169,135,130,64,26,19,8,189,7,16,41,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,39,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,188,224,167,115,56,130,64,26,19,8,189,7,16,44,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,231,84,0,106,168,197,144,64,26,19,8,189,7,16,43,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,42,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,156,177,250,95,121,101,144,64,26,19,8,189,7,16,46,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,89,201,214,59,183,142,129,64,26,19,8,189,7,16,47,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,45,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,120,229,223,94,187,143,64,26,19,8,189,7,16,49,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,248,135,116,63,71,80,127,64,26,19,8,189,7,16,50,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,48,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,58,193,72,151,112,101,124,64,26,19,8,189,7,16,53,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,216,208,226,143,27,142,143,64,26,19,8,189,7,16,52,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,51,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,216,208,226,143,27,142,143,64,26,19,8,189,7,16,55,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,185,119,254,214,19,114,119,64,26,19,8,189,7,16,56,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,54,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,56,99,245,191,242,10,144,64,26,19,8,189,7,16,58,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,51,114,193,166,7,97,115,64,26,19,8,189,7,16,59,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,57,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,106,10,248,15,54,56,144,64,26,19,8,189,7,16,61,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,58,140,173,206,142,13,114,64,26,19,8,189,7,16,62,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,60,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,240,11,232,174,139,145,64,26,19,8,189,7,16,64,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,186,216,134,156,20,246,101,64,26,19,8,189,7,16,65,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,63,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,98,190,89,76,156,244,98,64,26,19,8,189,7,16,68,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,250,229,19,216,120,19,146,64,26,19,8,189,7,16,67,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,66,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,126,33,210,113,251,146,64,26,19,8,189,7,16,70,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,30,192,62,216,166,33,94,64,26,19,8,189,7,16,71,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,69,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,201,41,44,228,136,147,64,26,19,8,189,7,16,73,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,39,56,36,184,5,93,92,64,26,19,8,189,7,16,74,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,72,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,242,109,46,248,25,216,147,64,26,19,8,189,7,16,76,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,39,56,36,184,5,93,92,64,26,19,8,189,7,16,77,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,75,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,60,98,55,38,221,112,148,64,26,19,8,189,7,16,79,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,6,232,57,140,116,213,96,64,26,19,8,189,7,16,80,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,78,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,9,58,118,32,158,148,64,26,19,8,189,7,16,82,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,203,200,81,92,210,108,98,64,26,19,8,189,7,16,83,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,81,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,4,80,69,138,126,94,149,64,26,19,8,189,7,16,85,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,169,176,145,6,76,50,112,64,26,19,8,189,7,16,86,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,84,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,128,235,80,8,133,36,150,64,26,19,8,189,7,16,88,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,3,94,83,215,125,26,125,64,26,19,8,189,7,16,89,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,87,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,23,225,88,248,78,172,150,64,26,19,8,189,7,16,91,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,41,128,205,163,75,240,128,64,26,19,8,189,7,16,92,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,90,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,150,137,90,10,153,200,150,64,26,19,8,189,7,16,94,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,142,206,210,67,210,74,129,64,26,19,8,189,7,16,95,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,93,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,149,218,93,46,45,1,151,64,26,19,8,189,7,16,97,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,38,115,215,15,8,154,129,64,26,19,8,189,7,16,98,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,96,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,131,95,64,119,29,151,64,26,19,8,189,7,16,100,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,38,115,215,15,8,154,129,64,26,19,8,189,7,16,101,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,99,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,69,204,104,216,226,187,151,64,26,19,8,189,7,16,103,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,91,39,208,243,142,29,129,64,26,19,8,189,7,16,104,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,102,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,42,114,108,102,31,250,151,64,26,19,8,189,7,16,106,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,247,216,202,83,8,195,128,64,26,19,8,189,7,16,107,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,105,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,81,133,116,118,162,153,64,26,19,8,189,7,16,109,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,165,41,58,95,126,108,123,64,26,19,8,189,7,16,110,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,108,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,145,149,190,178,183,154,64,26,19,8,189,7,16,112,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,242,56,237,78,222,75,118,64,26,19,8,189,7,16,113,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,111,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,50,157,68,212,57,155,64,26,19,8,189,7,16,115,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,207,35,188,6,129,6,115,64,26,19,8,189,7,16,116,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,114,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,152,42,163,184,171,159,155,64,26,19,8,189,7,16,118,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,243,206,16,221,192,39,111,64,26,19,8,189,7,16,119,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,117,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,150,204,169,0,212,16,156,64,26,19,8,189,7,16,121,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,140,237,118,188,128,230,100,64,26,19,8,189,7,16,122,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,120,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,162,141,170,174,6,37,77,64,26,19,8,189,7,16,125,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,200,115,172,80,23,62,156,64,26,19,8,189,7,16,124,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,123,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,22,36,168,238,137,244,155,64,26,19,8,189,7,16,127,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,115,175,202,208,30,0,9,64,26,20,8,189,7,16,128,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,126,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,49,126,164,96,77,182,155,64,26,20,8,189,7,16,130,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,208,15,228,39,120,210,62,192,26,20,8,189,7,16,131,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,189,7,16,129,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,24,211,164,202,245,187,155,64,26,20,8,189,7,16,133,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,238,65,154,119,89,43,83,64,26,20,8,189,7,16,134,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,189,7,16,132,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,178,213,162,78,3,154,155,64,26,20,8,189,7,16,136,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,39,159,113,28,250,139,100,64,26,20,8,189,7,16,137,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,189,7,16,135,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,217,159,148,23,103,155,64,26,20,8,189,7,16,139,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,117,171,149,254,48,118,112,64,26,20,8,189,7,16,140,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,189,7,16,138,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,103,50,157,68,212,57,155,64,26,20,8,189,7,16,142,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,51,114,193,166,7,97,115,64,26,20,8,189,7,16,143,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,189,7,16,141,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,130,140,153,182,151,251,154,64,26,20,8,189,7,16,145,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,143,72,225,102,47,128,117,64,26,20,8,189,7,16,146,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,189,7,16,144,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,159,68,143,224,50,76,154,64,26,20,8,189,7,16,148,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,27,104,10,191,194,61,120,64,26,20,8,189,7,16,149,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,189,7,16,147,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,33,250,134,134,192,190,153,64,26,20,8,189,7,16,151,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,180,187,11,103,100,84,120,64,26,20,8,189,7,16,152,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,189,7,16,150,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,9,254,131,204,212,139,153,64,26,20,8,189,7,16,154,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,80,109,6,199,221,249,119,64,26,20,8,189,7,16,155,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,189,7,16,153,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,138,4,127,150,246,54,153,64,26,20,8,189,7,16,157,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,242,56,237,78,222,75,118,64,26,20,8,189,7,16,158,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,189,7,16,156,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,88,93,124,70,179,9,153,64,26,20,8,189,7,16,160,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,45,88,213,126,128,180,116,64,26,20,8,189,7,16,161,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,189,7,16,159,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,95,122,202,192,231,152,64,26,20,8,189,7,16,163,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,211,223,174,118,48,36,114,64,26,20,8,189,7,16,164,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,189,7,16,162,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,189,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,197,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,163,4,18,160,4,10,157,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,227,86,124,92,138,150,64,26,19,8,190,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,189,70,160,77,63,222,40,192,26,19,8,190,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,190,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,190,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,190,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,190,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,190,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,16,49,163,97,139,239,123,64,26,19,8,190,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,189,70,160,77,63,222,40,192,26,19,8,190,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,177,227,86,124,92,138,150,64,26,19,8,190,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,204,100,58,137,168,243,116,64,26,19,8,190,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,190,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,190,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,197,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,163,4,18,160,4,10,157,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,191,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,191,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,26,107,153,204,235,50,103,64,26,19,8,191,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,243,14,119,166,44,175,152,64,26,19,8,191,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,72,216,165,177,206,28,108,64,26,19,8,191,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,228,110,241,112,237,22,112,64,26,19,8,191,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,191,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,243,14,119,166,44,175,152,64,26,19,8,191,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,26,107,153,204,235,50,103,64,26,19,8,191,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,191,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,191,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,191,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,191,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,200,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,163,4,18,160,4,10,157,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,192,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,173,164,174,76,6,157,104,64,26,19,8,192,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,146,205,103,154,233,170,151,64,26,19,8,192,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,48,17,57,225,6,221,100,64,26,19,8,192,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,187,210,104,129,194,11,104,64,26,19,8,192,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,192,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,146,205,103,154,233,170,151,64,26,19,8,192,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,173,164,174,76,6,157,104,64,26,19,8,192,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,192,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,192,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,192,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,192,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,192,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,199,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,163,4,18,160,4,10,157,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,193,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,193,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,118,65,185,140,19,82,105,64,26,19,8,193,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,176,52,90,160,240,194,150,64,26,19,8,193,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,8,185,189,129,44,180,109,64,26,19,8,193,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,6,185,189,129,44,180,109,64,26,19,8,193,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,193,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,176,52,90,160,240,194,150,64,26,19,8,193,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,118,65,185,140,19,82,105,64,26,19,8,193,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,193,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,193,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,193,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,193,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,199,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,163,4,18,160,4,10,157,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,194,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,194,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,118,65,185,140,19,82,105,64,26,19,8,194,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,176,52,90,160,240,194,150,64,26,19,8,194,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,8,185,189,129,44,180,109,64,26,19,8,194,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,6,185,189,129,44,180,109,64,26,19,8,194,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,194,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,176,52,90,160,240,194,150,64,26,19,8,194,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,118,65,185,140,19,82,105,64,26,19,8,194,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,194,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,194,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,194,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,194,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,199,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,195,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,195,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,195,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,118,65,185,140,19,82,105,64,26,19,8,195,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,176,52,90,160,240,194,150,64,26,19,8,195,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,8,185,189,129,44,180,109,64,26,19,8,195,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,6,185,189,129,44,180,109,64,26,19,8,195,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,195,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,118,65,185,140,19,82,105,64,26,19,8,195,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,176,52,90,160,240,194,150,64,26,19,8,195,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,195,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,195,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,195,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,199,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,163,4,18,160,4,10,157,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,196,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,8,185,189,129,44,180,109,64,26,19,8,196,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,6,185,189,129,44,180,109,64,26,19,8,196,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,118,65,185,140,19,82,105,64,26,19,8,196,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,176,52,90,160,240,194,150,64,26,19,8,196,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,196,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,176,52,90,160,240,194,150,64,26,19,8,196,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,118,65,185,140,19,82,105,64,26,19,8,196,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,196,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,196,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,196,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,196,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,196,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,199,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,185,75,18,182,75,10,179,75,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,210,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,210,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,210,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,145,74,10,6,112,111,105,110,116,115,18,134,74,18,131,74,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,237,167,24,125,169,22,131,64,26,19,8,210,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,223,212,235,43,245,182,96,192,26,19,8,210,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,110,14,228,16,93,131,64,26,19,8,210,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,223,212,235,43,245,182,96,192,26,19,8,210,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,161,188,27,76,144,133,64,26,19,8,210,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,147,34,58,17,63,229,87,192,26,19,8,210,7,16,14,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,27,44,61,54,174,237,80,192,26,19,8,210,7,16,17,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,203,157,14,107,29,205,134,64,26,19,8,210,7,16,16,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,15,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,248,193,246,5,100,113,135,64,26,19,8,210,7,16,19,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,107,21,248,189,242,150,71,192,26,19,8,210,7,16,20,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,18,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,200,31,233,57,67,207,135,64,26,19,8,210,7,16,22,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,195,147,126,190,11,148,61,192,26,19,8,210,7,16,23,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,21,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,245,67,209,212,137,115,136,64,26,19,8,210,7,16,25,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,186,168,159,73,254,176,56,64,26,19,8,210,7,16,26,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,24,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,81,10,199,59,241,185,136,64,26,19,8,210,7,16,28,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,12,2,166,68,5,70,82,64,26,19,8,210,7,16,29,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,27,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,81,10,199,59,241,185,136,64,26,19,8,210,7,16,31,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,55,137,67,139,176,206,91,64,26,19,8,210,7,16,32,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,30,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,245,67,209,212,137,115,136,64,26,19,8,210,7,16,34,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,31,179,52,229,81,214,96,64,26,19,8,210,7,16,35,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,33,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,201,89,84,222,56,136,64,26,19,8,210,7,16,37,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,49,136,240,232,173,171,98,64,26,19,8,210,7,16,38,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,36,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,127,216,42,90,210,252,103,64,26,19,8,210,7,16,41,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,40,100,4,210,132,19,135,64,26,19,8,210,7,16,40,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,39,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,192,79,244,41,79,116,105,64,26,19,8,210,7,16,44,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,181,139,154,29,250,122,134,64,26,19,8,210,7,16,43,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,42,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,20,208,181,181,59,191,133,64,26,19,8,210,7,16,46,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,145,173,230,93,46,210,105,64,26,19,8,210,7,16,47,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,45,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,114,195,129,92,97,133,64,26,19,8,210,7,16,49,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,240,241,1,246,111,22,105,64,26,19,8,210,7,16,50,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,48,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,20,209,77,125,3,133,64,26,19,8,210,7,16,52,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,222,28,70,242,19,65,103,64,26,19,8,210,7,16,53,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,51,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,187,135,229,127,174,118,132,64,26,19,8,210,7,16,55,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,96,42,254,180,206,77,98,64,26,19,8,210,7,16,56,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,54,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,164,117,113,50,139,36,132,64,26,19,8,210,7,16,58,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,102,43,81,87,209,112,91,64,26,19,8,210,7,16,59,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,57,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,192,133,197,136,241,142,62,64,26,19,8,210,7,16,62,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,118,146,246,126,87,1,132,64,26,19,8,210,7,16,61,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,60,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,153,89,205,209,200,132,64,26,19,8,210,7,16,64,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,152,70,184,48,146,92,28,64,26,19,8,210,7,16,65,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,63,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,254,174,79,43,238,133,64,26,19,8,210,7,16,67,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,170,91,194,70,238,78,30,192,26,19,8,210,7,16,68,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,66,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,53,11,56,149,228,134,64,26,19,8,210,7,16,70,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,170,91,194,70,238,78,30,192,26,19,8,210,7,16,71,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,69,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,221,114,202,110,121,162,136,64,26,19,8,210,7,16,73,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,83,0,130,87,60,12,36,64,26,19,8,210,7,16,74,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,72,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,79,140,161,10,23,188,137,64,26,19,8,210,7,16,76,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,127,14,252,184,116,23,61,64,26,19,8,210,7,16,77,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,75,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,214,183,236,243,215,39,139,64,26,19,8,210,7,16,79,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,112,107,65,226,88,242,77,64,26,19,8,210,7,16,80,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,78,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,43,8,19,38,220,141,64,26,19,8,210,7,16,82,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,96,42,254,180,206,77,98,64,26,19,8,210,7,16,83,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,81,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,249,96,200,7,234,142,64,26,19,8,210,7,16,85,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,180,118,131,136,167,154,101,64,26,19,8,210,7,16,86,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,84,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,13,191,83,190,52,227,102,64,26,19,8,210,7,16,89,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,225,209,202,124,146,130,143,64,26,19,8,210,7,16,88,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,87,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,239,169,210,37,92,66,144,64,26,19,8,210,7,16,91,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,55,101,22,40,161,137,104,64,26,19,8,210,7,16,92,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,90,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,214,25,57,167,94,242,144,64,26,19,8,210,7,16,94,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,240,241,1,246,111,22,105,64,26,19,8,210,7,16,95,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,93,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,165,184,152,194,80,209,145,64,26,19,8,210,7,16,97,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,79,54,29,142,177,90,104,64,26,19,8,210,7,16,98,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,96,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,35,154,188,29,237,146,146,64,26,19,8,210,7,16,100,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,85,50,104,240,101,86,102,64,26,19,8,210,7,16,101,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,99,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,78,255,17,160,70,184,147,64,26,19,8,210,7,16,103,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,215,63,32,179,32,99,97,64,26,19,8,210,7,16,104,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,102,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,224,53,251,226,121,148,64,26,19,8,210,7,16,106,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,55,137,67,139,176,206,91,64,26,19,8,210,7,16,107,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,105,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,225,51,23,48,25,77,149,64,26,19,8,210,7,16,109,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,107,70,193,220,70,138,81,64,26,19,8,210,7,16,110,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,108,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,11,74,0,11,36,208,72,64,26,19,8,210,7,16,113,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,131,174,142,176,196,135,149,64,26,19,8,210,7,16,112,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,111,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,26,32,76,138,94,153,149,64,26,19,8,210,7,16,115,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,129,126,71,44,55,3,64,64,26,19,8,210,7,16,116,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,114,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,232,38,101,30,249,167,68,192,26,19,8,210,7,16,119,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,247,69,139,125,60,159,149,64,26,19,8,210,7,16,118,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,117,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,61,250,12,151,128,147,149,64,26,19,8,210,7,16,121,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,209,54,57,149,39,185,76,192,26,19,8,210,7,16,122,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,120,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,166,136,79,189,230,129,149,64,26,19,8,210,7,16,124,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,27,44,61,54,174,237,80,192,26,19,8,210,7,16,125,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,123,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,225,51,23,48,25,77,149,64,26,19,8,210,7,16,127,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,34,9,99,117,161,203,86,192,26,20,8,210,7,16,128,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,126,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,179,80,156,124,229,41,149,64,26,20,8,210,7,16,130,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,213,153,3,225,187,92,89,192,26,20,8,210,7,16,131,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,129,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,136,42,164,76,214,237,91,192,26,20,8,210,7,16,134,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,16,214,36,252,57,239,148,64,26,20,8,210,7,16,133,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,132,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,183,204,177,24,247,143,91,192,26,20,8,210,7,16,137,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,40,167,43,98,74,192,148,64,26,20,8,210,7,16,136,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,135,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,65,55,197,224,71,16,148,64,26,20,8,210,7,16,139,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,206,188,221,161,200,126,83,192,26,20,8,210,7,16,140,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,138,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,43,37,81,147,36,190,147,64,26,20,8,210,7,16,142,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,114,242,29,253,229,116,77,192,26,20,8,210,7,16,143,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,141,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,230,47,98,146,205,72,147,64,26,20,8,210,7,16,145,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,57,200,197,223,30,199,52,192,26,20,8,210,7,16,146,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,144,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,33,219,41,5,0,20,147,64,26,20,8,210,7,16,148,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,139,140,108,178,171,160,16,64,26,20,8,210,7,16,149,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,147,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,197,20,52,158,152,205,146,64,26,20,8,210,7,16,151,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,135,91,109,107,42,225,69,64,26,20,8,210,7,16,152,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,150,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,163,249,5,170,99,82,146,64,26,20,8,210,7,16,154,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,215,63,32,179,32,99,97,64,26,20,8,210,7,16,155,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,153,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,13,209,79,30,6,146,64,26,20,8,210,7,16,157,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,108,3,111,86,118,39,102,64,26,20,8,210,7,16,158,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,156,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,61,233,232,180,215,97,145,64,26,20,8,210,7,16,160,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,44,109,128,99,56,146,108,64,26,20,8,210,7,16,161,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,159,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,225,34,243,77,112,27,145,64,26,20,8,210,7,16,163,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,62,66,60,103,148,103,110,64,26,20,8,210,7,16,164,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,162,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,203,16,127,0,77,201,144,64,26,20,8,210,7,16,166,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,52,116,127,104,0,7,112,64,26,20,8,210,7,16,167,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,165,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,207,17,25,58,72,144,64,26,20,8,210,7,16,169,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,49,246,89,55,38,9,113,64,26,20,8,210,7,16,170,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,168,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,61,152,192,227,249,200,143,64,26,20,8,210,7,16,172,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,117,235,72,56,125,126,113,64,26,20,8,210,7,16,173,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,171,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,134,202,103,46,24,187,142,64,26,20,8,210,7,16,175,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,70,73,59,108,92,220,113,64,26,20,8,210,7,16,176,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,174,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,231,205,21,223,70,126,141,64,26,20,8,210,7,16,178,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,70,73,59,108,92,220,113,64,26,20,8,210,7,16,179,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,177,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,95,162,202,245,133,18,140,64,26,20,8,210,7,16,181,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,165,141,86,4,158,32,113,64,26,20,8,210,7,16,182,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,180,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,168,11,124,53,120,30,112,64,26,20,8,210,7,16,185,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,98,32,240,38,96,16,139,64,26,20,8,210,7,16,184,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,183,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,9,216,31,241,210,199,137,64,26,20,8,210,7,16,187,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,252,202,114,151,23,240,108,64,26,20,8,210,7,16,188,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,186,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,80,75,52,35,4,59,137,64,26,20,8,210,7,16,190,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,97,11,217,145,13,48,106,64,26,20,8,210,7,16,191,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,189,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,37,144,90,36,69,180,102,64,26,20,8,210,7,16,194,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,58,57,192,213,224,232,136,64,26,20,8,210,7,16,193,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,192,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,151,190,72,85,53,174,136,64,26,20,8,210,7,16,196,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,239,16,39,25,49,52,97,64,26,20,8,210,7,16,197,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,195,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,197,111,108,239,18,181,90,64,26,20,8,210,7,16,200,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,151,190,72,85,53,174,136,64,26,20,8,210,7,16,199,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,198,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,81,10,199,59,241,185,136,64,26,20,8,210,7,16,202,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,161,197,244,231,90,10,87,64,26,20,8,210,7,16,203,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,201,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,174,208,188,162,88,0,137,64,26,20,8,210,7,16,205,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,47,244,119,18,220,122,76,64,26,20,8,210,7,16,206,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,204,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,126,46,175,214,55,94,137,64,26,20,8,210,7,16,208,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,231,159,136,3,108,37,69,64,26,20,8,210,7,16,209,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,207,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,70,228,163,155,173,105,68,64,26,20,8,210,7,16,212,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,195,35,158,215,142,211,137,64,26,20,8,210,7,16,211,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,210,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,144,3,107,218,147,51,139,64,26,20,8,210,7,16,214,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,142,56,147,170,29,191,75,64,26,20,8,210,7,16,215,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,213,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,60,164,179,16,38,232,81,64,26,20,8,210,7,16,218,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,235,10,206,40,14,251,139,64,26,20,8,210,7,16,217,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,216,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,94,175,93,68,206,140,64,26,20,8,210,7,16,220,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,132,248,162,31,150,61,89,64,26,20,8,210,7,16,221,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,219,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,20,242,253,121,141,34,142,64,26,20,8,210,7,16,223,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,19,187,158,32,233,222,100,64,26,20,8,210,7,16,224,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,222,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,145,173,230,93,46,210,105,64,26,20,8,210,7,16,227,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,64,22,230,20,212,198,142,64,26,20,8,210,7,16,226,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,225,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,155,29,73,99,78,142,143,64,26,20,8,210,7,16,229,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,62,66,60,103,148,103,110,64,26,20,8,210,7,16,230,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,228,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,215,216,203,191,75,113,144,64,26,20,8,210,7,16,232,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,91,156,28,161,146,175,114,64,26,20,8,210,7,16,233,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,231,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,177,128,229,129,79,121,145,64,26,20,8,210,7,16,235,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,219,12,138,15,178,160,118,64,26,20,8,210,7,16,236,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,234,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,146,89,207,114,203,145,64,26,20,8,210,7,16,238,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,216,142,100,222,215,162,119,64,26,20,8,210,7,16,239,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,237,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,82,60,202,233,13,53,146,64,26,20,8,210,7,16,241,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,97,121,66,224,133,141,120,64,26,20,8,210,7,16,242,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,240,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,31,69,157,65,88,146,64,26,20,8,210,7,16,244,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,166,110,49,225,220,2,121,64,26,20,8,210,7,16,245,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,243,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,35,154,188,29,237,146,146,64,26,20,8,210,7,16,247,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,118,204,35,21,188,96,121,64,26,20,8,210,7,16,248,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,246,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,68,181,234,17,34,14,147,64,26,20,8,210,7,16,250,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,47,89,15,227,138,237,121,64,26,20,8,210,7,16,251,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,249,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,206,193,173,191,39,148,64,26,20,8,210,7,16,253,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,231,229,250,176,89,122,122,64,26,20,8,210,7,16,254,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,252,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,53,111,120,33,73,104,148,64,26,20,8,210,7,16,128,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,136,161,223,24,24,54,123,64,26,20,8,210,7,16,129,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,210,7,16,255,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,210,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,211,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,211,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,211,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,224,217,243,107,67,222,107,64,26,19,8,211,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,15,124,1,56,100,128,107,64,26,19,8,211,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,41,88,188,64,136,202,112,192,26,19,8,211,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,94,175,93,68,206,140,64,26,19,8,211,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,211,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,94,175,93,68,206,140,64,26,19,8,211,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,41,88,188,64,136,202,112,192,26,19,8,211,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,211,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,211,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,211,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,0,94,175,93,68,206,140,64,26,19,8,212,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,224,217,243,107,67,222,107,64,26,19,8,212,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,15,124,1,56,100,128,107,64,26,19,8,212,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,41,88,188,64,136,202,112,192,26,19,8,212,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,212,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,94,175,93,68,206,140,64,26,19,8,212,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,41,88,188,64,136,202,112,192,26,19,8,212,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,212,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,212,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,212,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,212,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,212,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,212,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,213,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,213,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,213,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,15,124,1,56,100,128,107,64,26,19,8,213,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,41,88,188,64,136,202,112,192,26,19,8,213,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,94,175,93,68,206,140,64,26,19,8,213,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,224,217,243,107,67,222,107,64,26,19,8,213,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,213,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,94,175,93,68,206,140,64,26,19,8,213,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,41,88,188,64,136,202,112,192,26,19,8,213,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,213,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,213,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,213,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,214,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,214,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,214,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,41,88,188,64,136,202,112,192,26,19,8,214,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,94,175,93,68,206,140,64,26,19,8,214,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,151,113,189,217,153,33,64,26,19,8,214,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,214,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,214,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,94,175,93,68,206,140,64,26,19,8,214,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,41,88,188,64,136,202,112,192,26,19,8,214,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,214,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,214,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,214,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,232,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,163,4,18,160,4,10,157,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,41,88,188,64,136,202,112,192,26,19,8,215,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,94,175,93,68,206,140,64,26,19,8,215,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,151,113,189,217,153,33,64,26,19,8,215,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,215,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,215,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,94,175,93,68,206,140,64,26,19,8,215,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,41,88,188,64,136,202,112,192,26,19,8,215,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,215,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,215,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,215,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,215,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,215,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,215,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,232,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,205,145,198,217,32,132,112,192,26,19,8,216,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,46,65,42,17,120,241,140,64,26,19,8,216,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,216,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,216,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,216,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,216,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,216,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,46,65,42,17,120,241,140,64,26,19,8,216,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,96,200,134,11,61,205,62,64,26,19,8,216,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,232,217,243,107,67,222,59,64,26,19,8,216,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,205,145,198,217,32,132,112,192,26,19,8,216,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,216,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,216,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,217,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,217,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,205,145,198,217,32,132,112,192,26,19,8,217,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,46,65,42,17,120,241,140,64,26,19,8,217,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,96,200,134,11,61,205,62,64,26,19,8,217,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,232,217,243,107,67,222,59,64,26,19,8,217,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,217,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,46,65,42,17,120,241,140,64,26,19,8,217,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,205,145,198,217,32,132,112,192,26,19,8,217,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,217,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,217,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,217,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,217,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,218,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,162,125,154,33,60,128,80,64,26,19,8,218,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,111,125,202,73,213,97,111,192,26,19,8,218,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,92,36,165,196,171,20,141,64,26,19,8,218,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,168,125,154,33,60,128,80,64,26,19,8,218,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,218,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,92,36,165,196,171,20,141,64,26,19,8,218,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,111,125,202,73,213,97,111,192,26,19,8,218,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,218,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,218,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,218,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,218,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,218,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,219,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,219,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,219,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,40,10,182,23,164,238,111,192,26,19,8,219,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,116,245,171,42,188,229,140,64,26,19,8,219,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,240,174,175,111,159,179,93,64,26,19,8,219,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,50,38,121,63,28,43,95,64,26,19,8,219,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,219,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,116,245,171,42,188,229,140,64,26,19,8,219,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,40,10,182,23,164,238,111,192,26,19,8,219,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,219,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,219,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,219,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,235,10,206,40,14,251,139,64,26,19,8,220,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,83,254,126,170,244,112,114,192,26,19,8,220,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,220,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,220,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,220,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,220,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,220,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,83,254,126,170,244,112,114,192,26,19,8,220,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,235,10,206,40,14,251,139,64,26,19,8,220,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,44,73,83,0,41,77,105,64,26,19,8,220,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,182,51,49,2,215,55,106,64,26,19,8,220,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,220,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,220,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,137,250,70,5,58,142,64,26,19,8,221,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,254,99,243,173,55,72,110,192,26,19,8,221,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,221,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,221,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,221,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,221,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,221,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,254,99,243,173,55,72,110,192,26,19,8,221,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,136,137,250,70,5,58,142,64,26,19,8,221,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,192,43,199,198,63,47,102,64,26,19,8,221,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,2,163,144,150,188,166,103,64,26,19,8,221,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,221,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,221,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,222,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,254,99,243,173,55,72,110,192,26,19,8,222,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,136,137,250,70,5,58,142,64,26,19,8,222,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,192,43,199,198,63,47,102,64,26,19,8,222,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,2,163,144,150,188,166,103,64,26,19,8,222,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,222,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,137,250,70,5,58,142,64,26,19,8,222,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,254,99,243,173,55,72,110,192,26,19,8,222,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,222,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,222,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,222,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,222,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,222,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,223,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,223,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,223,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,254,99,243,173,55,72,110,192,26,19,8,223,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,136,137,250,70,5,58,142,64,26,19,8,223,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,192,43,199,198,63,47,102,64,26,19,8,223,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,2,163,144,150,188,166,103,64,26,19,8,223,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,223,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,137,250,70,5,58,142,64,26,19,8,223,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,254,99,243,173,55,72,110,192,26,19,8,223,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,223,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,223,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,223,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,224,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,224,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,224,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,254,99,243,173,55,72,110,192,26,19,8,224,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,136,137,250,70,5,58,142,64,26,19,8,224,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,192,43,199,198,63,47,102,64,26,19,8,224,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,2,163,144,150,188,166,103,64,26,19,8,224,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,224,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,137,250,70,5,58,142,64,26,19,8,224,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,254,99,243,173,55,72,110,192,26,19,8,224,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,224,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,224,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,224,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,254,99,243,173,55,72,110,192,26,19,8,225,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,136,137,250,70,5,58,142,64,26,19,8,225,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,192,43,199,198,63,47,102,64,26,19,8,225,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,2,163,144,150,188,166,103,64,26,19,8,225,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,225,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,137,250,70,5,58,142,64,26,19,8,225,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,254,99,243,173,55,72,110,192,26,19,8,225,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,225,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,225,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,225,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,225,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,225,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,225,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,226,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,226,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,226,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,136,137,250,70,5,58,142,64,26,19,8,226,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,192,43,199,198,63,47,102,64,26,19,8,226,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,2,163,144,150,188,166,103,64,26,19,8,226,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,254,99,243,173,55,72,110,192,26,19,8,226,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,226,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,137,250,70,5,58,142,64,26,19,8,226,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,254,99,243,173,55,72,110,192,26,19,8,226,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,226,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,226,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,226,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,227,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,227,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,227,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,56,69,158,98,221,72,103,64,26,19,8,227,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,245,201,31,245,20,205,99,64,26,19,8,227,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,166,74,4,126,205,189,117,192,26,19,8,227,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,65,55,197,224,71,16,148,64,26,19,8,227,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,227,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,55,197,224,71,16,148,64,26,19,8,227,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,166,74,4,126,205,189,117,192,26,19,8,227,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,227,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,227,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,227,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,228,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,228,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,166,74,4,126,205,189,117,192,26,19,8,228,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,65,55,197,224,71,16,148,64,26,19,8,228,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,56,69,158,98,221,72,103,64,26,19,8,228,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,245,201,31,245,20,205,99,64,26,19,8,228,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,228,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,166,74,4,126,205,189,117,192,26,19,8,228,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,65,55,197,224,71,16,148,64,26,19,8,228,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,228,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,228,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,228,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,228,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,229,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,229,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,166,74,4,126,205,189,117,192,26,19,8,229,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,65,55,197,224,71,16,148,64,26,19,8,229,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,56,69,158,98,221,72,103,64,26,19,8,229,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,245,201,31,245,20,205,99,64,26,19,8,229,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,229,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,55,197,224,71,16,148,64,26,19,8,229,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,166,74,4,126,205,189,117,192,26,19,8,229,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,229,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,229,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,229,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,229,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,166,74,4,126,205,189,117,192,26,19,8,230,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,65,55,197,224,71,16,148,64,26,19,8,230,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,56,69,158,98,221,72,103,64,26,19,8,230,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,245,201,31,245,20,205,99,64,26,19,8,230,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,230,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,55,197,224,71,16,148,64,26,19,8,230,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,166,74,4,126,205,189,117,192,26,19,8,230,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,230,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,230,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,230,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,230,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,230,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,230,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,231,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,231,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,231,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,245,201,31,245,20,205,99,64,26,19,8,231,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,166,74,4,126,205,189,117,192,26,19,8,231,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,65,55,197,224,71,16,148,64,26,19,8,231,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,56,69,158,98,221,72,103,64,26,19,8,231,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,231,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,55,197,224,71,16,148,64,26,19,8,231,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,166,74,4,126,205,189,117,192,26,19,8,231,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,231,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,231,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,231,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,247,95,18,244,95,10,241,95,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,233,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,207,94,10,6,112,111,105,110,116,115,18,196,94,18,193,94,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,160,207,0,237,57,151,64,26,19,8,233,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,134,255,140,132,46,243,120,192,26,19,8,233,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,108,209,93,55,230,152,64,26,19,8,233,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,56,175,82,19,10,162,115,192,26,19,8,233,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,236,77,245,184,211,167,153,64,26,19,8,233,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,252,51,212,165,65,38,112,192,26,19,8,233,7,16,14,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,26,49,112,108,7,203,153,64,26,19,8,233,7,16,16,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,93,168,14,70,121,140,109,192,26,19,8,233,7,16,17,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,15,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,248,134,205,110,68,106,104,192,26,19,8,233,7,16,20,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,142,200,108,57,127,226,153,64,26,19,8,233,7,16,19,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,18,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,37,58,42,19,25,244,153,64,26,19,8,233,7,16,22,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,223,212,235,43,245,182,96,192,26,19,8,233,7,16,23,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,21,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,238,171,44,93,232,153,64,26,19,8,233,7,16,25,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,34,9,99,117,161,203,86,192,26,19,8,233,7,16,26,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,24,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,166,153,115,159,143,179,153,64,26,19,8,233,7,16,28,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,143,191,111,197,170,65,75,192,26,19,8,233,7,16,29,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,27,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,249,188,43,6,115,153,64,26,19,8,233,7,16,31,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,5,11,72,142,136,11,63,192,26,19,8,233,7,16,32,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,30,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,155,202,247,38,21,153,64,26,19,8,233,7,16,34,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,170,91,194,70,238,78,30,192,26,19,8,233,7,16,35,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,33,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,64,137,86,170,3,195,152,64,26,19,8,233,7,16,37,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,139,140,108,178,171,160,16,64,26,19,8,233,7,16,38,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,36,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,90,93,16,20,148,152,64,26,19,8,233,7,16,40,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,152,70,184,48,146,92,28,64,26,19,8,233,7,16,41,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,39,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,227,194,96,67,156,124,152,64,26,19,8,233,7,16,43,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,152,70,184,48,146,92,28,64,26,19,8,233,7,16,44,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,42,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,72,233,194,240,65,152,64,26,19,8,233,7,16,46,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,62,158,171,40,133,92,251,191,26,19,8,233,7,16,47,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,45,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,54,63,47,28,223,24,152,64,26,19,8,233,7,16,49,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,101,214,63,65,87,210,45,192,26,19,8,233,7,16,50,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,48,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,120,57,181,119,210,151,64,26,19,8,233,7,16,52,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,173,140,193,141,111,14,73,192,26,19,8,233,7,16,53,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,51,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,177,239,139,217,3,178,85,192,26,19,8,233,7,16,56,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,206,111,127,14,102,169,151,64,26,19,8,233,7,16,55,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,54,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,149,190,1,68,175,151,64,26,19,8,233,7,16,58,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,201,161,109,28,83,101,93,192,26,19,8,233,7,16,59,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,57,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,225,60,232,255,186,151,64,26,19,8,233,7,16,61,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,15,119,249,247,21,89,96,192,26,19,8,233,7,16,62,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,60,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,120,57,181,119,210,151,64,26,19,8,233,7,16,64,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,128,144,208,147,179,114,97,192,26,19,8,233,7,16,65,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,63,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,146,101,140,151,15,72,99,192,26,19,8,233,7,16,68,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,54,63,47,28,223,24,152,64,26,19,8,233,7,16,67,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,66,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,110,40,182,206,71,152,64,26,19,8,233,7,16,70,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,51,33,113,255,205,3,100,192,26,19,8,233,7,16,71,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,69,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,76,81,163,105,2,107,152,64,26,19,8,233,7,16,73,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,51,33,113,255,205,3,100,192,26,19,8,233,7,16,74,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,72,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,128,144,208,147,179,114,97,192,26,19,8,233,7,16,77,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,40,184,79,68,243,241,152,64,26,19,8,233,7,16,76,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,75,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,50,199,196,158,44,153,64,26,19,8,233,7,16,79,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,172,212,27,84,142,152,95,192,26,19,8,233,7,16,80,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,78,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,248,21,66,120,210,79,153,64,26,19,8,233,7,16,82,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,136,42,164,76,214,237,91,192,26,19,8,233,7,16,83,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,81,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,249,188,43,6,115,153,64,26,19,8,233,7,16,85,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,129,77,126,13,227,15,86,192,26,19,8,233,7,16,86,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,84,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,154,144,185,248,125,138,153,64,26,19,8,233,7,16,88,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,48,123,84,45,105,253,75,192,26,19,8,233,7,16,89,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,87,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,154,144,185,248,125,138,153,64,26,19,8,233,7,16,91,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,71,107,128,182,58,236,67,192,26,19,8,233,7,16,92,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,90,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,50,2,119,210,23,156,153,64,26,19,8,233,7,16,94,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,163,126,156,7,251,112,24,192,26,19,8,233,7,16,95,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,93,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,50,2,119,210,23,156,153,64,26,19,8,233,7,16,97,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,208,175,92,122,154,54,77,64,26,19,8,233,7,16,98,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,96,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,224,68,59,18,194,126,153,64,26,19,8,233,7,16,100,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,227,60,190,183,215,129,88,64,26,19,8,233,7,16,101,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,99,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,213,59,129,107,176,85,153,64,26,19,8,233,7,16,103,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,239,16,39,25,49,52,97,64,26,19,8,233,7,16,104,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,102,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,121,117,139,4,73,15,153,64,26,19,8,233,7,16,106,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,198,75,63,140,3,112,103,64,26,19,8,233,7,16,107,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,105,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,145,70,146,106,89,224,152,64,26,19,8,233,7,16,109,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,97,11,217,145,13,48,106,64,26,19,8,233,7,16,110,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,108,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,216,185,166,156,138,83,152,64,26,19,8,233,7,16,112,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,144,58,117,207,103,77,112,64,26,19,8,233,7,16,113,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,111,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,120,57,181,119,210,151,64,26,19,8,233,7,16,115,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,46,120,52,6,76,11,114,64,26,19,8,233,7,16,116,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,114,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,231,4,32,212,26,152,114,64,26,19,8,233,7,16,119,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,55,254,193,52,204,151,151,64,26,19,8,233,7,16,118,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,117,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,160,207,0,237,57,151,64,26,19,8,233,7,16,121,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,159,145,11,162,233,36,115,64,26,19,8,233,7,16,122,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,120,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,237,164,63,64,167,150,64,26,19,8,233,7,16,124,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,112,239,253,213,200,130,115,64,26,19,8,233,7,16,125,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,123,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,25,97,185,113,113,26,150,64,26,19,8,233,7,16,127,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,112,239,253,213,200,130,115,64,26,20,8,233,7,16,128,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,126,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,142,183,72,87,214,176,149,64,26,20,8,233,7,16,130,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,91,156,28,161,146,175,114,64,26,20,8,233,7,16,131,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,129,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,131,174,142,176,196,135,149,64,26,20,8,233,7,16,133,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,94,26,66,210,108,173,113,64,26,20,8,233,7,16,134,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,132,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,203,19,253,144,100,149,64,26,20,8,233,7,16,136,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,28,163,120,2,240,53,112,64,26,20,8,233,7,16,137,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,135,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,120,165,212,9,179,94,149,64,26,20,8,233,7,16,139,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,2,199,189,249,203,235,106,64,26,20,8,233,7,16,140,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,138,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,236,60,209,214,42,118,149,64,26,20,8,233,7,16,142,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,55,101,22,40,161,137,104,64,26,20,8,233,7,16,143,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,141,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,2,79,69,36,78,200,149,64,26,20,8,233,7,16,145,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,180,118,131,136,167,154,101,64,26,20,8,233,7,16,146,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,144,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,130,239,251,151,215,8,150,64,26,20,8,233,7,16,148,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,90,46,179,82,26,82,100,64,26,20,8,233,7,16,149,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,147,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,25,183,233,130,157,218,98,64,26,20,8,233,7,16,152,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,128,48,105,127,234,137,150,64,26,20,8,233,7,16,151,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,150,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,138,122,144,13,15,52,151,64,26,20,8,233,7,16,154,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,25,183,233,130,157,218,98,64,26,20,8,233,7,16,155,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,153,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,44,245,7,142,186,110,151,64,26,20,8,233,7,16,157,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,233,20,220,182,124,56,99,64,26,20,8,233,7,16,158,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,156,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,206,111,127,14,102,169,151,64,26,20,8,233,7,16,160,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,90,46,179,82,26,82,100,64,26,20,8,233,7,16,161,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,159,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,113,234,246,142,17,228,151,64,26,20,8,233,7,16,163,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,85,50,104,240,101,86,102,64,26,20,8,233,7,16,164,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,162,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,216,185,166,156,138,83,152,64,26,20,8,233,7,16,166,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,157,134,87,255,213,171,109,64,26,20,8,233,7,16,167,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,165,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,146,5,37,131,70,95,152,64,26,20,8,233,7,16,169,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,199,44,26,105,66,82,111,64,26,20,8,233,7,16,170,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,168,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,103,117,141,66,58,137,118,64,26,20,8,233,7,16,173,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,41,119,226,92,224,112,152,64,26,20,8,233,7,16,172,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,171,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,111,43,100,118,36,101,152,64,26,20,8,233,7,16,175,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,50,215,52,20,101,235,120,64,26,20,8,233,7,16,176,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,174,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,100,34,170,207,18,60,152,64,26,20,8,233,7,16,178,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,112,208,216,178,7,101,123,64,26,20,8,233,7,16,179,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,177,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,19,101,110,15,189,30,152,64,26,20,8,233,7,16,181,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,110,82,179,129,45,103,124,64,26,20,8,233,7,16,182,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,180,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,183,158,120,168,85,216,151,64,26,20,8,233,7,16,184,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,35,97,121,30,34,246,125,64,26,20,8,233,7,16,185,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,183,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,241,73,64,27,136,163,151,64,26,20,8,233,7,16,187,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,80,133,97,185,104,154,126,64,26,20,8,233,7,16,188,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,186,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,149,122,80,186,191,15,127,64,26,20,8,233,7,16,191,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,184,93,11,193,66,87,151,64,26,20,8,233,7,16,190,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,189,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,28,158,217,47,214,150,64,26,20,8,233,7,16,193,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,217,111,63,187,22,133,127,64,26,20,8,233,7,16,194,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,192,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,211,172,55,88,45,38,150,64,26,20,8,233,7,16,196,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,53,54,53,34,126,203,127,64,26,20,8,233,7,16,197,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,195,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,188,154,195,10,10,212,149,64,26,20,8,233,7,16,199,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,53,54,53,34,126,203,127,64,26,20,8,233,7,16,200,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,198,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,156,62,40,47,194,215,148,64,26,20,8,233,7,16,202,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,9,18,77,135,55,39,127,64,26,20,8,233,7,16,203,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,201,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,22,210,111,94,238,234,146,64,26,20,8,233,7,16,205,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,62,176,165,181,12,197,124,64,26,20,8,233,7,16,206,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,204,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,154,175,222,27,63,168,145,64,26,20,8,233,7,16,208,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,115,78,254,227,225,98,122,64,26,20,8,233,7,16,209,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,207,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,88,231,236,122,228,151,142,64,26,20,8,233,7,16,211,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,201,55,206,11,86,203,116,64,26,20,8,233,7,16,212,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,210,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,161,25,148,197,2,138,141,64,26,20,8,233,7,16,214,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,159,145,11,162,233,36,115,64,26,20,8,233,7,16,215,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,213,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,211,57,199,194,253,41,140,64,26,20,8,233,7,16,217,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,175,91,19,3,50,129,111,64,26,20,8,233,7,16,218,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,216,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,168,212,113,64,164,4,139,64,26,20,8,233,7,16,220,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,180,118,131,136,167,154,101,64,26,20,8,233,7,16,221,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,219,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,192,165,120,166,180,213,138,64,26,20,8,233,7,16,223,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,19,187,158,32,233,222,100,64,26,20,8,233,7,16,224,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,222,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,123,176,137,165,93,96,138,64,26,20,8,233,7,16,226,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,67,93,172,236,9,129,100,64,26,20,8,233,7,16,227,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,225,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,252,254,174,79,43,238,133,64,26,20,8,233,7,16,229,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,90,46,179,82,26,82,100,64,26,20,8,233,7,16,230,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,228,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,115,20,209,77,125,3,133,64,26,20,8,233,7,16,232,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,251,233,151,186,216,13,101,64,26,20,8,233,7,16,233,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,231,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,163,182,222,25,158,165,132,64,26,20,8,233,7,16,235,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,156,165,124,34,151,201,101,64,26,20,8,233,7,16,236,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,234,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,243,150,99,101,34,131,64,26,20,8,233,7,16,238,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,210,36,176,45,171,73,107,64,26,20,8,233,7,16,239,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,237,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,192,131,48,226,98,114,130,64,26,20,8,233,7,16,241,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,62,66,60,103,148,103,110,64,26,20,8,233,7,16,242,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,240,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,54,218,191,199,199,8,130,64,26,20,8,233,7,16,244,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,96,152,103,3,71,171,112,64,26,20,8,233,7,16,245,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,243,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,102,124,205,147,232,170,129,64,26,20,8,233,7,16,247,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,91,156,28,161,146,175,114,64,26,20,8,233,7,16,248,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,246,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,102,124,205,147,232,170,129,64,26,20,8,233,7,16,250,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,135,192,4,60,217,83,115,64,26,20,8,233,7,16,251,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,249,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,19,202,96,96,194,129,64,26,20,8,233,7,16,253,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,204,181,243,60,48,201,115,64,26,20,8,233,7,16,254,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,252,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,133,66,223,10,255,85,116,64,26,20,8,233,7,16,129,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,170,113,188,148,63,32,130,64,26,20,8,233,7,16,128,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,255,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,110,14,228,16,93,131,64,26,20,8,233,7,16,131,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,198,185,168,218,123,205,117,64,26,20,8,233,7,16,132,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,130,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,48,222,116,101,19,13,132,64,26,20,8,233,7,16,134,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,127,70,148,168,74,90,118,64,26,20,8,233,7,16,135,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,133,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,93,2,93,0,90,177,132,64,26,20,8,233,7,16,137,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,79,164,134,220,41,184,118,64,26,20,8,233,7,16,138,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,136,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,139,154,29,250,122,134,64,26,20,8,233,7,16,140,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,172,106,124,67,145,254,118,64,26,20,8,233,7,16,141,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,139,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,32,169,38,87,227,152,137,64,26,20,8,233,7,16,143,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,58,81,165,167,243,228,117,64,26,20,8,233,7,16,144,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,142,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,186,169,45,68,0,218,140,64,26,20,8,233,7,16,146,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,115,109,35,7,163,128,114,64,26,20,8,233,7,16,147,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,145,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,253,223,137,44,106,208,141,64,26,20,8,233,7,16,149,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,96,152,103,3,71,171,112,64,26,20,8,233,7,16,150,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,148,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,182,108,117,250,56,93,142,64,26,20,8,233,7,16,152,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,133,181,80,153,197,218,109,64,26,20,8,233,7,16,153,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,151,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,49,105,203,197,236,141,106,64,26,20,8,233,7,16,156,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,204,126,233,71,92,175,142,64,26,20,8,233,7,16,155,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,154,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,250,97,100,251,143,210,142,64,26,20,8,233,7,16,158,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,37,144,90,36,69,180,102,64,26,20,8,233,7,16,159,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,157,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,18,51,107,97,160,163,142,64,26,20,8,233,7,16,161,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,1,230,226,28,141,9,99,64,26,20,8,233,7,16,162,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,160,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,20,242,253,121,141,34,142,64,26,20,8,233,7,16,164,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,25,188,241,194,235,1,94,64,26,20,8,233,7,16,165,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,163,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,234,154,43,19,91,141,64,26,20,8,233,7,16,167,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,132,248,162,31,150,61,89,64,26,20,8,233,7,16,168,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,166,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,118,180,62,67,169,100,140,64,26,20,8,233,7,16,170,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,96,78,43,24,222,146,85,64,26,20,8,233,7,16,171,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,169,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,154,60,110,134,15,172,135,64,26,20,8,233,7,16,173,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,40,23,82,211,232,156,70,64,26,20,8,233,7,16,174,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,172,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,160,56,185,232,195,167,133,64,26,20,8,233,7,16,176,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,129,126,71,44,55,3,64,64,26,20,8,233,7,16,177,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,175,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,110,14,228,16,93,131,64,26,20,8,233,7,16,179,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,127,14,252,184,116,23,61,64,26,20,8,233,7,16,180,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,178,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,78,171,198,45,216,217,129,64,26,20,8,233,7,16,182,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,120,49,214,121,129,57,55,64,26,20,8,233,7,16,183,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,181,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,120,49,214,121,129,57,55,64,26,20,8,233,7,16,186,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,152,156,0,145,227,74,128,64,26,20,8,233,7,16,185,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,184,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,204,72,81,243,168,126,64,26,20,8,233,7,16,188,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,127,14,252,184,116,23,61,64,26,20,8,233,7,16,189,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,187,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,57,179,113,181,85,143,125,64,26,20,8,233,7,16,191,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,195,245,16,252,179,122,65,64,26,20,8,233,7,16,192,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,190,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,86,128,195,125,26,92,123,64,26,20,8,233,7,16,194,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,11,74,0,11,36,208,72,64,26,20,8,233,7,16,195,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,193,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,71,41,45,171,152,132,120,64,26,20,8,233,7,16,197,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,12,2,166,68,5,70,82,64,26,20,8,233,7,16,198,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,233,7,16,196,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,233,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,233,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,233,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,234,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,234,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,234,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,63,21,74,33,46,131,64,26,19,8,234,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,217,106,55,123,200,93,116,192,26,19,8,234,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,117,211,99,102,106,130,132,64,26,19,8,234,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,130,160,140,118,21,19,114,192,26,19,8,234,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,208,218,198,180,228,73,133,64,26,19,8,234,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,17,135,181,218,119,249,112,192,26,19,8,234,7,16,14,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,63,28,55,62,111,134,64,26,19,8,234,7,16,16,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,111,125,202,73,213,97,111,192,26,19,8,234,7,16,17,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,7,16,15,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,154,96,186,238,9,136,64,26,19,8,234,7,16,19,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,10,92,137,114,160,63,106,192,26,19,8,234,7,16,20,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,7,16,18,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,151,190,72,85,53,174,136,64,26,19,8,234,7,16,22,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,200,228,191,162,35,200,104,192,26,19,8,234,7,16,23,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,7,16,21,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,235,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,235,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,184,78,161,135,76,81,96,64,26,19,8,235,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,92,235,96,204,73,239,88,64,26,19,8,235,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,131,129,103,83,84,245,121,192,26,19,8,235,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,22,143,72,206,40,62,133,64,26,19,8,235,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,235,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,131,129,103,83,84,245,121,192,26,19,8,235,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,22,143,72,206,40,62,133,64,26,19,8,235,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,235,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,235,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,235,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,235,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,236,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,131,129,103,83,84,245,121,192,26,19,8,236,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,22,143,72,206,40,62,133,64,26,19,8,236,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,184,78,161,135,76,81,96,64,26,19,8,236,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,92,235,96,204,73,239,88,64,26,19,8,236,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,236,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,22,143,72,206,40,62,133,64,26,19,8,236,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,131,129,103,83,84,245,121,192,26,19,8,236,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,236,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,236,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,236,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,236,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,236,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,166,52,4,75,120,163,131,64,26,19,8,237,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,248,40,32,3,46,173,122,64,26,19,8,237,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,14,124,1,56,100,128,123,64,26,19,8,237,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,229,67,168,28,112,55,120,192,26,19,8,237,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,237,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,166,52,4,75,120,163,131,64,26,19,8,237,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,229,67,168,28,112,55,120,192,26,19,8,237,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,237,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,237,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,237,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,237,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,237,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,237,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,166,52,4,75,120,163,131,64,26,19,8,238,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,229,67,168,28,112,55,120,192,26,19,8,238,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,238,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,238,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,238,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,238,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,238,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,14,124,1,56,100,128,123,64,26,19,8,238,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,229,67,168,28,112,55,120,192,26,19,8,238,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,166,52,4,75,120,163,131,64,26,19,8,238,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,248,40,32,3,46,173,122,64,26,19,8,238,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,238,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,238,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,166,52,4,75,120,163,131,64,26,19,8,239,7,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,248,40,32,3,46,173,122,64,26,19,8,239,7,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,14,124,1,56,100,128,123,64,26,19,8,239,7,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,229,67,168,28,112,55,120,192,26,19,8,239,7,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,239,7,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,229,67,168,28,112,55,120,192,26,19,8,239,7,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,166,52,4,75,120,163,131,64,26,19,8,239,7,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,239,7,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,239,7,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,239,7,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,99,50,100,55,98,26,19,8,239,7,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,239,7,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,239,7,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,28,18,206,28,10,203,28,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,181,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,148,27,10,6,112,111,105,110,116,115,18,137,27,18,134,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,105,64,26,19,8,181,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,85,87,64,26,19,8,181,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,170,112,64,26,19,8,181,7,16,10,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,63,80,64,26,19,8,181,7,16,11,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,9,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,42,77,64,26,19,8,181,7,16,14,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,85,114,64,26,19,8,181,7,16,13,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,12,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,15,115,64,26,19,8,181,7,16,16,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,42,77,64,26,19,8,181,7,16,17,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,15,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,95,115,64,26,19,8,181,7,16,19,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,234,81,64,26,19,8,181,7,16,20,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,18,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,95,115,64,26,19,8,181,7,16,22,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,127,86,64,26,19,8,181,7,16,23,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,21,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,191,114,64,26,19,8,181,7,16,25,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,234,91,64,26,19,8,181,7,16,26,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,24,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,31,98,64,26,19,8,181,7,16,29,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,170,112,64,26,19,8,181,7,16,28,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,27,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,110,64,26,19,8,181,7,16,31,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,99,64,26,19,8,181,7,16,32,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,30,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,181,107,64,26,19,8,181,7,16,34,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,99,64,26,19,8,181,7,16,35,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,33,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,234,97,64,26,19,8,181,7,16,38,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,10,106,64,26,19,8,181,7,16,37,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,36,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,149,93,64,26,19,8,181,7,16,41,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,106,105,64,26,19,8,181,7,16,40,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,39,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,106,105,64,26,19,8,181,7,16,43,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,42,88,64,26,19,8,181,7,16,44,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,42,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,105,64,26,19,8,181,7,16,46,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,213,84,64,26,19,8,181,7,16,47,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,45,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,181,107,64,26,19,8,181,7,16,49,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,63,80,64,26,19,8,181,7,16,50,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,48,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,138,108,64,26,19,8,181,7,16,52,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,77,64,26,19,8,181,7,16,53,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,51,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,90,112,64,26,19,8,181,7,16,55,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,85,71,64,26,19,8,181,7,16,56,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,54,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,5,114,64,26,19,8,181,7,16,58,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,127,70,64,26,19,8,181,7,16,59,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,57,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,42,77,64,26,19,8,181,7,16,62,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,5,114,64,26,19,8,181,7,16,61,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,60,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,207,113,64,26,19,8,181,7,16,64,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,234,81,64,26,19,8,181,7,16,65,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,63,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,250,112,64,26,19,8,181,7,16,67,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,85,64,26,19,8,181,7,16,68,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,66,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,223,111,64,26,19,8,181,7,16,70,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,149,88,64,26,19,8,181,7,16,71,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,69,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,107,64,26,19,8,181,7,16,73,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,191,92,64,26,19,8,181,7,16,74,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,72,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,42,104,64,26,19,8,181,7,16,76,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,63,95,64,26,19,8,181,7,16,77,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,75,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,181,102,64,26,19,8,181,7,16,79,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,170,95,64,26,19,8,181,7,16,80,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,78,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,100,64,26,19,8,181,7,16,82,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,63,95,64,26,19,8,181,7,16,83,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,81,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,95,99,64,26,19,8,181,7,16,85,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,42,93,64,26,19,8,181,7,16,86,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,84,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,245,98,64,26,19,8,181,7,16,88,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,21,91,64,26,19,8,181,7,16,89,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,87,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,245,98,64,26,19,8,181,7,16,91,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,234,86,64,26,19,8,181,7,16,92,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,90,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,202,99,64,26,19,8,181,7,16,94,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,106,84,64,26,19,8,181,7,16,95,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,93,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,101,64,26,19,8,181,7,16,97,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,234,81,64,26,19,8,181,7,16,98,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,96,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,181,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,102,52,57,52,26,19,8,181,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,181,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,34,19,8,186,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,163,4,18,160,4,10,157,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,105,64,26,19,8,182,7,16,12,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,19,64,26,19,8,182,7,16,13,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,182,7,16,11,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,182,7,16,10,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,182,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,102,52,57,52,26,19,8,182,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,182,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,19,64,26,19,8,182,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,105,64,26,19,8,182,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,85,64,26,19,8,182,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,170,170,170,170,170,106,100,64,26,19,8,182,7,16,9,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,182,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,182,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,34,19,8,187,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,163,4,18,160,4,10,157,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,183,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,85,64,26,19,8,183,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,170,170,170,170,170,106,100,64,26,19,8,183,7,16,9,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,19,64,26,19,8,183,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,105,64,26,19,8,183,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,183,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,105,64,26,19,8,183,7,16,12,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,19,64,26,19,8,183,7,16,13,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,183,7,16,11,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,183,7,16,10,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,183,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,102,52,57,52,26,19,8,183,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,183,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,34,19,8,187,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,184,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,102,52,57,52,26,19,8,184,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,184,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,105,64,26,19,8,184,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,85,64,26,19,8,184,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,170,170,170,170,170,106,100,64,26,19,8,184,7,16,9,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,19,64,26,19,8,184,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,184,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,105,64,26,19,8,184,7,16,12,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,19,64,26,19,8,184,7,16,13,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,184,7,16,11,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,184,7,16,10,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,184,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,34,19,8,187,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,185,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,102,52,57,52,26,19,8,185,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,185,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,85,64,26,19,8,185,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,170,170,170,170,170,106,100,64,26,19,8,185,7,16,9,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,19,64,26,19,8,185,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,105,64,26,19,8,185,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,185,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,105,64,26,19,8,185,7,16,12,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,19,64,26,19,8,185,7,16,13,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,185,7,16,11,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,185,7,16,10,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,185,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,34,19,8,187,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,188,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,102,52,57,52,26,19,8,188,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,188,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,90,64,26,19,8,188,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,84,85,85,85,85,85,98,64,26,19,8,188,7,16,9,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,188,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,188,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,188,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,188,7,16,12,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,188,7,16,13,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,188,7,16,11,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,188,7,16,10,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,188,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,34,19,8,197,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,163,4,18,160,4,10,157,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,189,7,16,12,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,189,7,16,13,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,189,7,16,11,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,189,7,16,10,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,189,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,102,52,57,52,26,19,8,189,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,189,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,189,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,189,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,90,64,26,19,8,189,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,84,85,85,85,85,85,98,64,26,19,8,189,7,16,9,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,189,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,189,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,34,19,8,197,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,190,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,102,52,57,52,26,19,8,190,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,190,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,190,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,190,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,90,64,26,19,8,190,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,84,85,85,85,85,85,98,64,26,19,8,190,7,16,9,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,190,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,190,7,16,12,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,190,7,16,13,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,190,7,16,11,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,190,7,16,10,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,190,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,34,19,8,197,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,163,4,18,160,4,10,157,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,191,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,191,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,90,64,26,19,8,191,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,84,85,85,85,85,85,98,64,26,19,8,191,7,16,9,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,191,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,191,7,16,12,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,191,7,16,13,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,191,7,16,11,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,191,7,16,10,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,191,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,102,52,57,52,26,19,8,191,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,191,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,191,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,34,19,8,197,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,192,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,102,52,57,52,26,19,8,192,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,192,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,192,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,192,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,90,64,26,19,8,192,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,84,85,85,85,85,85,98,64,26,19,8,192,7,16,9,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,192,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,192,7,16,12,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,192,7,16,13,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,192,7,16,11,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,192,7,16,10,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,192,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,34,19,8,197,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,193,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,102,52,57,52,26,19,8,193,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,193,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,84,85,85,85,85,85,98,64,26,19,8,193,7,16,9,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,193,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,193,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,90,64,26,19,8,193,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,193,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,193,7,16,12,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,193,7,16,13,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,193,7,16,11,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,193,7,16,10,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,193,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,34,19,8,197,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,194,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,102,52,57,52,26,19,8,194,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,194,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,194,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,90,64,26,19,8,194,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,84,85,85,85,85,85,98,64,26,19,8,194,7,16,9,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,194,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,194,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,194,7,16,12,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,194,7,16,13,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,194,7,16,11,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,194,7,16,10,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,194,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,34,19,8,197,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,163,4,18,160,4,10,157,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,195,7,16,12,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,195,7,16,13,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,195,7,16,11,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,195,7,16,10,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,195,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,102,52,57,52,26,19,8,195,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,195,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,192,26,19,8,195,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,64,26,19,8,195,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,90,64,26,19,8,195,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,84,85,85,85,85,85,98,64,26,19,8,195,7,16,9,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,195,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,195,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,34,19,8,197,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,183,23,18,180,23,10,177,23,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,196,7,16,2,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,102,52,57,52,26,19,8,196,7,16,3,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,196,7,16,4,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,250,21,10,6,112,111,105,110,116,115,18,239,21,18,236,21,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,255,115,64,26,19,8,196,7,16,7,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,85,39,192,26,19,8,196,7,16,8,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,6,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,170,111,64,26,19,8,196,7,16,10,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,67,64,26,19,8,196,7,16,11,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,9,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,106,105,64,26,19,8,196,7,16,13,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,106,84,64,26,19,8,196,7,16,14,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,12,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,102,64,26,19,8,196,7,16,16,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,106,89,64,26,19,8,196,7,16,17,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,15,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,102,64,26,19,8,196,7,16,19,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,85,87,64,26,19,8,196,7,16,20,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,18,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,202,104,64,26,19,8,196,7,16,22,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,80,64,26,19,8,196,7,16,23,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,21,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,250,112,64,26,19,8,196,7,16,25,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,85,55,192,26,19,8,196,7,16,26,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,24,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,85,66,192,26,19,8,196,7,16,29,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,113,64,26,19,8,196,7,16,28,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,27,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,191,114,64,26,19,8,196,7,16,31,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,127,70,192,26,19,8,196,7,16,32,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,30,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,245,114,64,26,19,8,196,7,16,34,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,127,70,192,26,19,8,196,7,16,35,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,33,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,31,114,64,26,19,8,196,7,16,37,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,42,67,192,26,19,8,196,7,16,38,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,36,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,10,106,64,26,19,8,196,7,16,40,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,42,67,64,26,19,8,196,7,16,41,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,39,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,42,99,64,26,19,8,196,7,16,43,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,213,89,64,26,19,8,196,7,16,44,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,42,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,42,99,64,26,19,8,196,7,16,46,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,234,86,64,26,19,8,196,7,16,47,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,45,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,202,99,64,26,19,8,196,7,16,49,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,149,83,64,26,19,8,196,7,16,50,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,48,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,191,103,64,26,19,8,196,7,16,52,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,69,64,26,19,8,196,7,16,53,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,51,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,31,108,64,26,19,8,196,7,16,55,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,85,39,64,26,19,8,196,7,16,56,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,54,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,95,115,64,26,19,8,196,7,16,58,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,213,73,192,26,19,8,196,7,16,59,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,57,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,42,115,64,26,19,8,196,7,16,61,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,213,73,192,26,19,8,196,7,16,62,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,60,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,218,114,64,26,19,8,196,7,16,64,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,127,70,192,26,19,8,196,7,16,65,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,63,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,5,114,64,26,19,8,196,7,16,67,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,85,66,192,26,19,8,196,7,16,68,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,66,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,31,108,64,26,19,8,196,7,16,70,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,58,64,26,19,8,196,7,16,71,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,69,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,127,102,64,26,19,8,196,7,16,73,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,106,84,64,26,19,8,196,7,16,74,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,72,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,101,64,26,19,8,196,7,16,76,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,149,88,64,26,19,8,196,7,16,77,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,75,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,223,101,64,26,19,8,196,7,16,79,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,42,88,64,26,19,8,196,7,16,80,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,78,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,5,26,12,98,255,53,51,217,176,234,142,137,51,119,41,18,19,8,196,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,34,19,8,198,7,16,1,26,12,98,255,53,51,217,176,234,142,137,51,119,41,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,200,7,16,2,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,97,57,97,101,48,26,19,8,200,7,16,3,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,200,7,16,4,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,43,167,19,107,173,154,77,192,26,19,8,200,7,16,7,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,41,224,50,177,197,40,94,192,26,19,8,200,7,16,8,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,200,7,16,6,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,33,41,78,241,25,111,78,192,26,19,8,200,7,16,10,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,46,159,21,110,143,190,93,192,26,19,8,200,7,16,11,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,200,7,16,9,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,163,158,94,212,241,75,192,26,19,8,200,7,16,13,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,99,212,211,139,58,46,89,192,26,19,8,200,7,16,14,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,200,7,16,12,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,158,143,85,32,151,165,67,192,26,19,8,200,7,16,16,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,199,127,109,10,199,119,80,192,26,19,8,200,7,16,17,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,200,7,16,15,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,156,11,98,2,241,254,62,192,26,19,8,200,7,16,19,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,50,94,248,42,89,212,66,192,26,19,8,200,7,16,20,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,200,7,16,18,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,200,7,16,5,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,200,7,16,1,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,178,9,18,175,9,10,172,9,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,201,7,16,4,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,81,159,41,82,251,72,74,192,26,19,8,201,7,16,7,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,22,228,167,189,158,209,95,192,26,19,8,201,7,16,8,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,201,7,16,6,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,178,72,243,119,124,177,65,64,26,19,8,201,7,16,10,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,22,228,167,189,158,209,95,192,26,19,8,201,7,16,11,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,201,7,16,9,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,202,45,254,232,133,66,64,26,19,8,201,7,16,13,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,137,146,98,128,234,29,96,192,26,19,8,201,7,16,14,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,201,7,16,12,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,76,104,132,85,90,67,64,26,19,8,201,7,16,16,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,22,228,167,189,158,209,95,192,26,19,8,201,7,16,17,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,201,7,16,15,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,76,104,132,85,90,67,64,26,19,8,201,7,16,19,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,75,25,102,219,73,65,91,192,26,19,8,201,7,16,20,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,201,7,16,18,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,197,68,126,107,163,8,64,64,26,19,8,201,7,16,22,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,151,9,146,169,229,157,84,192,26,19,8,201,7,16,23,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,201,7,16,21,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,113,62,140,48,28,54,64,26,19,8,201,7,16,25,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,200,243,123,239,2,245,75,192,26,19,8,201,7,16,26,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,201,7,16,24,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,56,102,223,102,165,33,49,64,26,19,8,201,7,16,28,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,2,232,28,202,119,250,70,192,26,19,8,201,7,16,29,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,201,7,16,27,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,188,188,234,155,230,159,43,64,26,19,8,201,7,16,31,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,12,102,226,67,11,38,70,192,26,19,8,201,7,16,32,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,201,7,16,30,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,201,7,16,5,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,201,7,16,2,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,97,57,97,101,48,26,19,8,201,7,16,3,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,201,7,16,1,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,202,7,16,2,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,97,57,97,101,48,26,19,8,202,7,16,3,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,202,7,16,4,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,4,185,203,217,136,41,38,192,26,19,8,202,7,16,7,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,12,102,226,67,11,38,70,192,26,19,8,202,7,16,8,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,202,7,16,6,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,130,210,23,23,155,215,69,64,26,19,8,202,7,16,10,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,248,105,87,80,228,206,71,192,26,19,8,202,7,16,11,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,202,7,16,9,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,202,7,16,5,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,202,7,16,1,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,203,7,16,2,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,97,57,97,101,48,26,19,8,203,7,16,3,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,203,7,16,4,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,21,5,179,220,34,70,192,26,19,8,203,7,16,7,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,36,149,94,217,55,16,53,192,26,19,8,203,7,16,8,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,203,7,16,6,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,234,160,189,254,194,10,58,192,26,19,8,203,7,16,11,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,120,18,35,26,33,8,4,18,8,240,222,167,73,93,37,225,63,26,19,8,203,7,16,10,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,203,7,16,9,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,158,138,110,117,2,7,89,64,26,19,8,203,7,16,13,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,196,168,167,23,117,92,61,192,26,19,8,203,7,16,14,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,203,7,16,12,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,203,7,16,5,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,203,7,16,1,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,204,7,16,2,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,97,57,97,101,48,26,19,8,204,7,16,3,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,204,7,16,4,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,92,60,182,185,253,73,64,26,19,8,204,7,16,7,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,196,168,167,23,117,92,61,192,26,19,8,204,7,16,8,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,204,7,16,6,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,130,210,23,23,155,215,69,64,26,19,8,204,7,16,10,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,6,99,183,13,22,158,33,64,26,19,8,204,7,16,11,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,204,7,16,9,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,140,80,221,144,46,3,69,64,26,19,8,204,7,16,13,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,17,177,182,27,153,62,95,64,26,19,8,204,7,16,14,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,204,7,16,12,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,204,7,16,5,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,204,7,16,1,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,221,13,18,218,13,10,215,13,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,114,184,113,87,163,154,100,64,26,19,8,205,7,16,7,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,2,232,28,202,119,250,70,192,26,19,8,205,7,16,8,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,6,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,23,227,53,136,101,100,64,26,19,8,205,7,16,10,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,2,232,28,202,119,250,70,192,26,19,8,205,7,16,11,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,9,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,23,227,53,136,101,100,64,26,19,8,205,7,16,13,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,200,243,123,239,2,245,75,192,26,19,8,205,7,16,14,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,12,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,123,54,55,209,54,198,99,64,26,19,8,205,7,16,16,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,199,127,109,10,199,119,80,192,26,19,8,205,7,16,17,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,15,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,142,50,194,196,93,29,98,64,26,19,8,205,7,16,19,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,161,135,87,35,121,201,83,192,26,19,8,205,7,16,20,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,18,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,207,219,217,159,169,96,64,26,19,8,205,7,16,22,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,147,74,175,236,27,8,85,192,26,19,8,205,7,16,23,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,21,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,89,37,100,48,64,95,64,26,19,8,205,7,16,25,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,147,74,175,236,27,8,85,192,26,19,8,205,7,16,26,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,24,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,211,117,209,234,194,92,64,26,19,8,205,7,16,28,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,171,5,29,157,12,245,82,192,26,19,8,205,7,16,29,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,27,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,125,81,59,75,126,238,91,64,26,19,8,205,7,16,31,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,199,127,109,10,199,119,80,192,26,19,8,205,7,16,32,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,30,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,125,81,59,75,126,238,91,64,26,19,8,205,7,16,34,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,21,228,167,189,158,81,69,192,26,19,8,205,7,16,35,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,33,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,211,117,209,234,194,92,64,26,19,8,205,7,16,37,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,40,224,50,177,197,168,67,192,26,19,8,205,7,16,38,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,36,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,111,106,251,186,222,96,64,26,19,8,205,7,16,40,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,50,94,248,42,89,212,66,192,26,19,8,205,7,16,41,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,39,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,147,241,164,129,39,179,97,64,26,19,8,205,7,16,43,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,12,102,226,67,11,38,70,192,26,19,8,205,7,16,44,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,42,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,17,146,51,163,66,232,97,64,26,19,8,205,7,16,46,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,210,113,65,105,150,32,75,192,26,19,8,205,7,16,47,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,45,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,5,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,205,7,16,2,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,97,57,97,101,48,26,19,8,205,7,16,3,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,205,7,16,4,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,205,7,16,1,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,206,7,16,2,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,97,57,97,101,48,26,19,8,206,7,16,3,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,206,7,16,4,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,66,66,150,246,193,192,104,64,26,19,8,206,7,16,7,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,27,163,138,122,104,103,95,192,26,19,8,206,7,16,8,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,206,7,16,6,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,215,157,146,200,205,226,102,64,26,19,8,206,7,16,10,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,180,131,226,22,160,32,82,192,26,19,8,206,7,16,11,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,206,7,16,9,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,94,188,230,99,124,67,102,64,26,19,8,206,7,16,13,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,2,232,28,202,119,250,70,192,26,19,8,206,7,16,14,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,206,7,16,12,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,109,249,142,154,217,4,101,64,26,19,8,206,7,16,16,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,138,228,204,168,16,98,62,64,26,19,8,206,7,16,17,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,206,7,16,15,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,239,88,0,121,190,207,100,64,26,19,8,206,7,16,19,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,166,210,43,251,6,98,82,64,26,19,8,206,7,16,20,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,206,7,16,18,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,206,7,16,5,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,206,7,16,1,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,207,7,16,2,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,97,57,97,101,48,26,19,8,207,7,16,3,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,207,7,16,4,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,75,192,91,112,85,236,103,64,26,19,8,207,7,16,7,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,210,113,65,105,150,32,75,192,26,19,8,207,7,16,8,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,207,7,16,6,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,206,31,205,78,58,183,103,64,26,19,8,207,7,16,10,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,210,113,65,105,150,32,75,192,26,19,8,207,7,16,11,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,207,7,16,9,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,158,169,241,237,88,221,107,64,26,19,8,207,7,16,13,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,210,113,65,105,150,32,75,192,26,19,8,207,7,16,14,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,207,7,16,12,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,207,7,16,5,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,207,7,16,1,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,208,7,16,2,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,97,57,97,101,48,26,19,8,208,7,16,3,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,208,7,16,4,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,75,192,91,112,85,236,103,64,26,19,8,208,7,16,7,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,69,90,131,30,128,43,65,192,26,19,8,208,7,16,8,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,208,7,16,6,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,138,173,102,250,49,134,109,64,26,19,8,208,7,16,10,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,79,216,72,152,19,87,64,192,26,19,8,208,7,16,11,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,208,7,16,9,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,25,139,198,187,1,112,64,26,19,8,208,7,16,13,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,215,164,50,11,156,179,59,192,26,19,8,208,7,16,14,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,208,7,16,12,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,208,7,16,5,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,208,7,16,1,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,152,4,18,149,4,10,146,4,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,109,199,99,34,197,113,64,26,19,8,209,7,16,7,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,98,154,76,153,156,111,99,192,26,19,8,209,7,16,8,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,209,7,16,6,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,129,230,189,82,30,115,64,26,19,8,209,7,16,10,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,27,163,138,122,104,103,95,192,26,19,8,209,7,16,11,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,209,7,16,9,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,67,148,5,24,131,119,116,64,26,19,8,209,7,16,13,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,79,216,72,152,19,215,90,192,26,19,8,209,7,16,14,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,209,7,16,12,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,209,7,16,5,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,209,7,16,2,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,97,57,97,101,48,26,19,8,209,7,16,3,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,209,7,16,4,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,209,7,16,1,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,97,57,97,101,48,26,19,8,210,7,16,3,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,210,7,16,4,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,241,170,111,154,127,134,112,64,26,19,8,210,7,16,7,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,89,86,14,18,167,2,90,192,26,19,8,210,7,16,8,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,210,7,16,6,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,182,206,191,10,129,117,64,26,19,8,210,7,16,10,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,89,86,14,18,167,2,90,192,26,19,8,210,7,16,11,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,210,7,16,9,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,210,7,16,5,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,210,7,16,2,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,210,7,16,1,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,204,14,18,201,14,10,198,14,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,211,7,16,2,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,97,57,97,101,48,26,19,8,211,7,16,3,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,211,7,16,4,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,75,254,187,154,187,112,64,26,19,8,211,7,16,7,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,181,247,240,251,219,157,77,192,26,19,8,211,7,16,8,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,6,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,236,235,140,221,181,240,112,64,26,19,8,211,7,16,10,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,239,235,145,214,80,163,72,192,26,19,8,211,7,16,11,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,9,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,50,94,248,42,89,212,66,192,26,19,8,211,7,16,14,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,120,18,35,26,33,8,4,18,8,38,125,113,177,121,117,113,64,26,19,8,211,7,16,13,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,12,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,64,201,122,28,180,114,64,26,19,8,211,7,16,16,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,74,141,116,192,133,190,49,192,26,19,8,211,7,16,17,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,15,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,33,117,223,109,83,115,64,26,19,8,211,7,16,19,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,7,3,43,54,245,135,41,192,26,19,8,211,7,16,20,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,18,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,4,68,62,135,245,92,116,64,26,19,8,211,7,16,22,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,7,3,43,54,245,135,41,192,26,19,8,211,7,16,23,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,21,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,125,37,234,235,70,252,116,64,26,19,8,211,7,16,25,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,55,145,233,204,94,103,51,192,26,19,8,211,7,16,26,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,24,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,22,64,158,239,75,117,64,26,19,8,211,7,16,28,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,234,160,189,254,194,10,58,192,26,19,8,211,7,16,29,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,27,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,182,206,191,10,129,117,64,26,19,8,211,7,16,31,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,50,94,248,42,89,212,66,192,26,19,8,211,7,16,32,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,30,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,182,206,191,10,129,117,64,26,19,8,211,7,16,34,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,239,235,145,214,80,163,72,192,26,19,8,211,7,16,35,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,33,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,200,243,123,239,2,245,75,192,26,19,8,211,7,16,38,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,120,18,35,26,33,8,4,18,8,251,197,120,13,98,49,117,64,26,19,8,211,7,16,37,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,36,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,67,148,5,24,131,119,116,64,26,19,8,211,7,16,40,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,162,251,101,8,181,70,79,192,26,19,8,211,7,16,41,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,39,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,140,98,146,34,164,189,115,64,26,19,8,211,7,16,43,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,199,127,109,10,199,119,80,192,26,19,8,211,7,16,44,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,42,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,64,201,122,28,180,114,64,26,19,8,211,7,16,46,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,195,192,138,77,253,225,80,192,26,19,8,211,7,16,47,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,45,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,205,56,66,7,144,113,64,26,19,8,211,7,16,49,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,199,127,109,10,199,119,80,192,26,19,8,211,7,16,50,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,48,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,5,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,211,7,16,1,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,212,7,16,2,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,97,57,97,101,48,26,19,8,212,7,16,3,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,212,7,16,4,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,93,137,255,179,172,21,48,192,26,19,8,212,7,16,8,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,120,18,35,26,33,8,4,18,8,202,178,89,179,49,216,115,64,26,19,8,212,7,16,7,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,212,7,16,6,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,149,224,87,156,55,233,114,64,26,19,8,212,7,16,10,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,224,106,161,38,200,239,36,64,26,19,8,212,7,16,11,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,212,7,16,9,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,33,190,142,244,175,223,113,64,26,19,8,212,7,16,13,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,171,145,14,184,208,119,76,64,26,19,8,212,7,16,14,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,212,7,16,12,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,212,7,16,5,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,212,7,16,1,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,213,7,16,2,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,97,57,97,101,48,26,19,8,213,7,16,3,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,213,7,16,4,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,143,108,73,183,251,27,109,64,26,19,8,213,7,16,7,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,171,145,14,184,208,119,76,64,26,19,8,213,7,16,8,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,213,7,16,6,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,48,251,54,43,13,161,112,64,26,19,8,213,7,16,10,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,152,149,131,196,169,32,78,64,26,19,8,213,7,16,11,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,213,7,16,9,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,116,167,36,114,179,208,117,64,26,19,8,213,7,16,13,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,156,84,102,129,115,54,83,64,26,19,8,213,7,16,14,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,213,7,16,12,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,77,175,14,139,101,34,121,64,26,19,8,213,7,16,16,26,12,99,0,245,75,152,207,109,6,237,10,122,97,10,40,10,1,121,18,35,26,33,8,4,18,8,137,88,219,141,76,223,84,64,26,19,8,213,7,16,17,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,213,7,16,15,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,213,7,16,5,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,213,7,16,1,26,12,99,0,245,75,152,207,109,6,237,10,122,97,18,19,8,134,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,183,214,32,10,6,115,104,97,112,101,115,18,171,214,32,18,167,214,32,10,156,5,18,153,5,10,150,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,191,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,96,192,26,19,8,191,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,203,154,124,64,26,19,8,191,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,191,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,68,192,26,19,8,191,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,203,74,124,64,26,19,8,191,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,191,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,65,192,26,19,8,191,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,203,122,127,64,26,19,8,191,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,191,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,65,192,26,19,8,191,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,213,128,64,26,19,8,191,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,191,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,191,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,191,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,191,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,191,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,171,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,156,5,18,153,5,10,150,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,192,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,192,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,192,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,84,64,26,19,8,192,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,203,234,123,64,26,19,8,192,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,192,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,64,26,19,8,192,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,203,42,123,64,26,19,8,192,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,192,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,101,64,26,19,8,192,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,203,90,127,64,26,19,8,192,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,192,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,101,64,26,19,8,192,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,181,128,64,26,19,8,192,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,192,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,192,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,192,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,164,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,193,3,16,2,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,99,98,54,56,48,26,19,8,193,3,16,3,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,193,3,16,4,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,132,64,26,19,8,193,3,16,7,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,84,64,26,19,8,193,3,16,8,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,193,3,16,6,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,109,64,26,19,8,193,3,16,11,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,132,64,26,19,8,193,3,16,10,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,193,3,16,9,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,132,64,26,19,8,193,3,16,13,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,112,64,26,19,8,193,3,16,14,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,193,3,16,12,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,132,64,26,19,8,193,3,16,16,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,113,64,26,19,8,193,3,16,17,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,193,3,16,15,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,114,64,26,19,8,193,3,16,20,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,193,3,16,19,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,193,3,16,18,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,193,3,16,5,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,193,3,16,1,26,12,98,255,26,214,217,176,234,142,137,48,119,164,34,19,8,176,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,199,9,18,196,9,10,193,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,194,3,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,49,101,99,102,99,26,19,8,194,3,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,194,3,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,124,194,254,1,186,116,64,26,19,8,194,3,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,234,150,241,97,231,21,130,192,26,19,8,194,3,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,194,3,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,71,108,159,211,151,173,118,64,26,19,8,194,3,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,17,71,253,26,96,111,129,192,26,19,8,194,3,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,194,3,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,236,191,222,9,184,119,64,26,19,8,194,3,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,25,55,153,217,17,78,129,192,26,19,8,194,3,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,194,3,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,123,68,43,202,227,120,64,26,19,8,194,3,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,25,55,153,217,17,78,129,192,26,19,8,194,3,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,194,3,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,132,160,25,218,100,70,123,64,26,19,8,194,3,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,175,97,249,135,226,166,129,192,26,19,8,194,3,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,194,3,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,197,31,123,251,186,101,126,64,26,19,8,194,3,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,123,201,3,49,95,127,130,192,26,19,8,194,3,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,194,3,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,206,206,207,70,121,138,130,192,26,19,8,194,3,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,224,148,3,219,248,89,127,64,26,19,8,194,3,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,194,3,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,60,36,66,173,155,128,64,26,19,8,194,3,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,48,180,211,217,246,82,130,192,26,19,8,194,3,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,194,3,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,75,191,42,88,172,171,129,64,26,19,8,194,3,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,96,84,123,81,33,139,129,192,26,19,8,194,3,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,194,3,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,194,3,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,194,3,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,34,19,8,186,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,190,3,18,187,3,10,184,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,96,64,26,19,8,195,3,16,8,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,137,64,26,19,8,195,3,16,7,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,195,3,16,6,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,137,64,26,19,8,195,3,16,10,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,128,64,26,19,8,195,3,16,11,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,195,3,16,9,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,195,3,16,5,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,195,3,16,2,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,99,98,54,56,48,26,19,8,195,3,16,3,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,195,3,16,4,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,195,3,16,1,26,12,98,255,26,214,217,176,234,142,137,48,119,164,34,19,8,169,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,233,7,18,230,7,10,227,7,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,196,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,178,156,64,26,19,8,196,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,155,5,119,64,26,19,8,196,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,196,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,113,158,64,26,19,8,196,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,208,118,64,26,19,8,196,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,196,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,208,123,64,26,19,8,196,3,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,113,158,64,26,19,8,196,3,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,196,3,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,106,158,64,26,19,8,196,3,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,234,123,64,26,19,8,196,3,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,196,3,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,106,158,64,26,19,8,196,3,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,155,165,124,64,26,19,8,196,3,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,196,3,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,99,158,64,26,19,8,196,3,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,155,165,124,64,26,19,8,196,3,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,196,3,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,99,158,64,26,19,8,196,3,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,96,125,64,26,19,8,196,3,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,196,3,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,196,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,196,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,196,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,196,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,176,4,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,242,13,18,239,13,10,236,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,197,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,197,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,197,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,98,64,26,19,8,197,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,237,132,64,26,19,8,197,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,96,64,26,19,8,197,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,101,132,64,26,19,8,197,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,13,132,64,26,19,8,197,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,95,64,26,19,8,197,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,96,64,26,19,8,197,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,149,131,64,26,19,8,197,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,97,64,26,19,8,197,3,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,85,131,64,26,19,8,197,3,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,98,64,26,19,8,197,3,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,77,131,64,26,19,8,197,3,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,99,64,26,19,8,197,3,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,69,131,64,26,19,8,197,3,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,93,131,64,26,19,8,197,3,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,102,64,26,19,8,197,3,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,103,64,26,19,8,197,3,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,165,131,64,26,19,8,197,3,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,29,132,64,26,19,8,197,3,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,104,64,26,19,8,197,3,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,104,64,26,19,8,197,3,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,77,132,64,26,19,8,197,3,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,102,64,26,19,8,197,3,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,157,132,64,26,19,8,197,3,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,99,64,26,19,8,197,3,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,221,132,64,26,19,8,197,3,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,98,64,26,19,8,197,3,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,221,132,64,26,19,8,197,3,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,197,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,170,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,156,5,18,153,5,10,150,5,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,99,98,54,56,48,26,19,8,197,3,16,3,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,197,3,16,4,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,140,64,26,19,8,197,3,16,7,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,197,3,16,8,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,197,3,16,6,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,140,64,26,19,8,197,3,16,10,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,120,64,26,19,8,197,3,16,11,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,197,3,16,9,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,139,64,26,19,8,197,3,16,13,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,128,64,26,19,8,197,3,16,14,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,197,3,16,12,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,138,64,26,19,8,197,3,16,16,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,138,64,26,19,8,197,3,16,17,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,197,3,16,15,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,197,3,16,5,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,197,3,16,2,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,197,3,16,1,26,12,98,255,26,214,217,176,234,142,137,48,119,164,34,19,8,173,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,208,15,18,205,15,10,202,15,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,199,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,199,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,199,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,147,14,10,6,112,111,105,110,116,115,18,136,14,18,133,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,115,64,26,19,8,199,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,109,132,64,26,19,8,199,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,115,64,26,19,8,199,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,45,132,64,26,19,8,199,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,64,26,19,8,199,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,197,131,64,26,19,8,199,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,114,64,26,19,8,199,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,93,131,64,26,19,8,199,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,199,3,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,53,131,64,26,19,8,199,3,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,115,64,26,19,8,199,3,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,21,131,64,26,19,8,199,3,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,116,64,26,19,8,199,3,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,29,131,64,26,19,8,199,3,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,118,64,26,19,8,199,3,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,93,131,64,26,19,8,199,3,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,117,131,64,26,19,8,199,3,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,118,64,26,19,8,199,3,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,119,64,26,19,8,199,3,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,197,131,64,26,19,8,199,3,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,120,64,26,19,8,199,3,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,85,132,64,26,19,8,199,3,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,119,64,26,19,8,199,3,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,149,132,64,26,19,8,199,3,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,118,64,26,19,8,199,3,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,189,132,64,26,19,8,199,3,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,117,64,26,19,8,199,3,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,189,132,64,26,19,8,199,3,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,116,64,26,19,8,199,3,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,133,132,64,26,19,8,199,3,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,93,132,64,26,19,8,199,3,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,115,64,26,19,8,199,3,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,199,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,169,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,190,3,18,187,3,10,184,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,99,98,54,56,48,26,19,8,199,3,16,3,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,199,3,16,4,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,143,64,26,19,8,199,3,16,7,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,92,64,26,19,8,199,3,16,8,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,199,3,16,6,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,143,64,26,19,8,199,3,16,10,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,114,64,26,19,8,199,3,16,11,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,199,3,16,9,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,199,3,16,5,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,199,3,16,2,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,199,3,16,1,26,12,98,255,26,214,217,176,234,142,137,48,119,164,34,19,8,168,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,190,3,18,187,3,10,184,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,99,98,54,56,48,26,19,8,201,3,16,3,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,201,3,16,4,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,141,64,26,19,8,201,3,16,7,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,102,64,26,19,8,201,3,16,8,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,201,3,16,6,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,145,64,26,19,8,201,3,16,10,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,102,64,26,19,8,201,3,16,11,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,201,3,16,9,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,201,3,16,5,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,201,3,16,2,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,201,3,16,1,26,12,98,255,26,214,217,176,234,142,137,48,119,164,34,19,8,177,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,208,15,18,205,15,10,202,15,10,147,14,10,6,112,111,105,110,116,115,18,136,14,18,133,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,120,64,26,19,8,202,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,45,136,64,26,19,8,202,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,119,64,26,19,8,202,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,45,136,64,26,19,8,202,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,117,64,26,19,8,202,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,197,135,64,26,19,8,202,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,116,64,26,19,8,202,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,29,135,64,26,19,8,202,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,116,64,26,19,8,202,3,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,237,134,64,26,19,8,202,3,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,116,64,26,19,8,202,3,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,157,134,64,26,19,8,202,3,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,116,64,26,19,8,202,3,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,69,134,64,26,19,8,202,3,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,116,64,26,19,8,202,3,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,29,134,64,26,19,8,202,3,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,117,64,26,19,8,202,3,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,5,134,64,26,19,8,202,3,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,202,3,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,21,134,64,26,19,8,202,3,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,119,64,26,19,8,202,3,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,85,134,64,26,19,8,202,3,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,120,64,26,19,8,202,3,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,149,134,64,26,19,8,202,3,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,120,64,26,19,8,202,3,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,189,134,64,26,19,8,202,3,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,157,135,64,26,19,8,202,3,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,120,64,26,19,8,202,3,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,120,64,26,19,8,202,3,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,205,135,64,26,19,8,202,3,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,202,3,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,13,136,64,26,19,8,202,3,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,202,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,202,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,202,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,202,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,221,4,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,216,8,18,213,8,10,210,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,203,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,203,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,203,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,122,157,64,26,19,8,203,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,225,181,97,64,26,19,8,203,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,203,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,102,157,64,26,19,8,203,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,54,75,102,64,26,19,8,203,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,203,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,102,157,64,26,19,8,203,3,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,225,213,105,64,26,19,8,203,3,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,203,3,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,162,157,64,26,19,8,203,3,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,54,107,105,64,26,19,8,203,3,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,203,3,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,26,158,64,26,19,8,203,3,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,54,107,105,64,26,19,8,203,3,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,203,3,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,46,158,64,26,19,8,203,3,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,139,160,105,64,26,19,8,203,3,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,203,3,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,139,192,98,64,26,19,8,203,3,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,158,64,26,19,8,203,3,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,203,3,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,102,157,64,26,19,8,203,3,16,28,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,225,245,98,64,26,19,8,203,3,16,29,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,203,3,16,27,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,203,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,203,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,191,4,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,225,14,18,222,14,10,219,14,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,204,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,204,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,204,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,205,134,64,26,19,8,204,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,127,64,26,19,8,204,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,126,64,26,19,8,204,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,165,134,64,26,19,8,204,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,37,134,64,26,19,8,204,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,124,64,26,19,8,204,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,124,64,26,19,8,204,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,245,133,64,26,19,8,204,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,124,64,26,19,8,204,3,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,93,133,64,26,19,8,204,3,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,124,64,26,19,8,204,3,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,37,133,64,26,19,8,204,3,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,125,64,26,19,8,204,3,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,229,132,64,26,19,8,204,3,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,127,64,26,19,8,204,3,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,197,132,64,26,19,8,204,3,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,127,64,26,19,8,204,3,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,221,132,64,26,19,8,204,3,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,204,3,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,21,133,64,26,19,8,204,3,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,128,64,26,19,8,204,3,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,149,133,64,26,19,8,204,3,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,128,64,26,19,8,204,3,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,253,133,64,26,19,8,204,3,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,128,64,26,19,8,204,3,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,117,134,64,26,19,8,204,3,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,128,64,26,19,8,204,3,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,213,134,64,26,19,8,204,3,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,204,3,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,213,134,64,26,19,8,204,3,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,204,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,220,4,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,205,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,205,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,205,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,143,64,26,19,8,205,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,205,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,144,64,26,19,8,205,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,119,64,26,19,8,205,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,119,64,26,19,8,205,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,145,64,26,19,8,205,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,205,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,145,64,26,19,8,205,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,121,64,26,19,8,205,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,145,64,26,19,8,205,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,166,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,200,22,18,197,22,10,194,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,206,3,16,4,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,139,21,10,6,112,111,105,110,116,115,18,128,21,18,253,20,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,145,64,26,19,8,206,3,16,7,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,112,64,26,19,8,206,3,16,8,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,6,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,144,64,26,19,8,206,3,16,10,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,112,64,26,19,8,206,3,16,11,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,9,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,112,64,26,19,8,206,3,16,14,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,144,64,26,19,8,206,3,16,13,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,12,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,144,64,26,19,8,206,3,16,16,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,113,64,26,19,8,206,3,16,17,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,15,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,144,64,26,19,8,206,3,16,19,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,116,64,26,19,8,206,3,16,20,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,18,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,144,64,26,19,8,206,3,16,22,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,117,64,26,19,8,206,3,16,23,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,21,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,145,64,26,19,8,206,3,16,25,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,118,64,26,19,8,206,3,16,26,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,24,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,145,64,26,19,8,206,3,16,28,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,119,64,26,19,8,206,3,16,29,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,27,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,145,64,26,19,8,206,3,16,31,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,120,64,26,19,8,206,3,16,32,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,30,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,121,64,26,19,8,206,3,16,35,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,146,64,26,19,8,206,3,16,34,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,33,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,146,64,26,19,8,206,3,16,37,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,121,64,26,19,8,206,3,16,38,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,36,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,147,64,26,19,8,206,3,16,40,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,120,64,26,19,8,206,3,16,41,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,39,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,148,64,26,19,8,206,3,16,43,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,119,64,26,19,8,206,3,16,44,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,42,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,114,64,26,19,8,206,3,16,47,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,149,64,26,19,8,206,3,16,46,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,45,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,149,64,26,19,8,206,3,16,49,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,113,64,26,19,8,206,3,16,50,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,48,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,110,64,26,19,8,206,3,16,53,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,149,64,26,19,8,206,3,16,52,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,51,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,148,64,26,19,8,206,3,16,55,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,104,64,26,19,8,206,3,16,56,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,54,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,148,64,26,19,8,206,3,16,58,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,103,64,26,19,8,206,3,16,59,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,57,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,148,64,26,19,8,206,3,16,61,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,103,64,26,19,8,206,3,16,62,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,60,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,147,64,26,19,8,206,3,16,64,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,102,64,26,19,8,206,3,16,65,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,63,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,146,64,26,19,8,206,3,16,67,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,105,64,26,19,8,206,3,16,68,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,66,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,107,64,26,19,8,206,3,16,71,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,146,64,26,19,8,206,3,16,70,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,69,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,145,64,26,19,8,206,3,16,73,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,112,64,26,19,8,206,3,16,74,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,72,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,145,64,26,19,8,206,3,16,76,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,113,64,26,19,8,206,3,16,77,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,75,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,5,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,206,3,16,2,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,99,98,54,56,48,26,19,8,206,3,16,3,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,206,3,16,1,26,12,98,255,26,214,217,176,234,142,137,48,119,164,34,19,8,161,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,208,15,18,205,15,10,202,15,10,147,14,10,6,112,111,105,110,116,115,18,136,14,18,133,14,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,77,138,64,26,19,8,207,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,129,64,26,19,8,207,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,128,64,26,19,8,207,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,157,137,64,26,19,8,207,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,128,64,26,19,8,207,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,101,137,64,26,19,8,207,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,128,64,26,19,8,207,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,245,136,64,26,19,8,207,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,128,64,26,19,8,207,3,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,93,136,64,26,19,8,207,3,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,128,64,26,19,8,207,3,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,45,136,64,26,19,8,207,3,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,129,64,26,19,8,207,3,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,45,136,64,26,19,8,207,3,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,130,64,26,19,8,207,3,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,101,136,64,26,19,8,207,3,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,130,64,26,19,8,207,3,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,205,136,64,26,19,8,207,3,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,130,64,26,19,8,207,3,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,53,137,64,26,19,8,207,3,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,130,64,26,19,8,207,3,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,237,137,64,26,19,8,207,3,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,130,64,26,19,8,207,3,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,29,138,64,26,19,8,207,3,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,130,64,26,19,8,207,3,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,85,138,64,26,19,8,207,3,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,101,138,64,26,19,8,207,3,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,130,64,26,19,8,207,3,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,85,138,64,26,19,8,207,3,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,129,64,26,19,8,207,3,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,129,64,26,19,8,207,3,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,53,138,64,26,19,8,207,3,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,207,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,207,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,207,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,246,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,199,9,18,196,9,10,193,9,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,113,64,26,19,8,208,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,114,64,26,19,8,208,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,208,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,113,64,26,19,8,208,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,115,64,26,19,8,208,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,208,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,113,64,26,19,8,208,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,117,64,26,19,8,208,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,208,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,113,64,26,19,8,208,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,118,64,26,19,8,208,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,208,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,119,64,26,19,8,208,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,113,64,26,19,8,208,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,208,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,114,64,26,19,8,208,3,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,119,64,26,19,8,208,3,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,208,3,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,115,64,26,19,8,208,3,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,119,64,26,19,8,208,3,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,208,3,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,116,64,26,19,8,208,3,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,119,64,26,19,8,208,3,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,208,3,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,118,64,26,19,8,208,3,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,118,64,26,19,8,208,3,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,208,3,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,208,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,208,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,208,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,208,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,208,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,225,4,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,173,4,18,170,4,10,167,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,209,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,209,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,209,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,156,64,26,19,8,209,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,155,37,112,64,26,19,8,209,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,209,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,162,157,64,26,19,8,209,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,54,171,111,64,26,19,8,209,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,209,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,83,159,64,26,19,8,209,3,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,10,112,64,26,19,8,209,3,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,209,3,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,209,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,209,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,185,4,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,210,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,210,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,210,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,69,157,64,26,19,8,210,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,176,115,64,26,19,8,210,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,210,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,89,157,64,26,19,8,210,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,155,149,115,64,26,19,8,210,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,210,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,79,158,64,26,19,8,210,3,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,155,149,115,64,26,19,8,210,3,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,210,3,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,37,159,64,26,19,8,210,3,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,202,115,64,26,19,8,210,3,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,210,3,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,0,160,64,26,19,8,210,3,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,202,115,64,26,19,8,210,3,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,210,3,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,210,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,210,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,183,4,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,191,16,18,188,16,10,185,16,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,211,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,211,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,211,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,130,15,10,6,112,111,105,110,116,115,18,247,14,18,244,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,191,26,19,8,211,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,181,137,64,26,19,8,211,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,40,192,26,19,8,211,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,117,137,64,26,19,8,211,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,51,192,26,19,8,211,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,5,137,64,26,19,8,211,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,192,26,19,8,211,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,165,136,64,26,19,8,211,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,48,192,26,19,8,211,3,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,61,136,64,26,19,8,211,3,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,24,192,26,19,8,211,3,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,253,135,64,26,19,8,211,3,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,237,135,64,26,19,8,211,3,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,211,3,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,44,64,26,19,8,211,3,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,253,135,64,26,19,8,211,3,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,85,136,64,26,19,8,211,3,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,66,64,26,19,8,211,3,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,69,64,26,19,8,211,3,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,149,136,64,26,19,8,211,3,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,73,64,26,19,8,211,3,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,69,137,64,26,19,8,211,3,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,73,64,26,19,8,211,3,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,157,137,64,26,19,8,211,3,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,72,64,26,19,8,211,3,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,197,137,64,26,19,8,211,3,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,65,64,26,19,8,211,3,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,21,138,64,26,19,8,211,3,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,46,64,26,19,8,211,3,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,29,138,64,26,19,8,211,3,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,205,137,64,26,19,8,211,3,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,191,26,19,8,211,3,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,192,26,19,8,211,3,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,165,137,64,26,19,8,211,3,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,168,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,174,17,18,171,17,10,168,17,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,212,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,212,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,241,15,10,6,112,111,105,110,116,115,18,230,15,18,227,15,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,117,64,26,19,8,212,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,112,64,26,19,8,212,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,119,64,26,19,8,212,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,112,64,26,19,8,212,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,121,64,26,19,8,212,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,112,64,26,19,8,212,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,122,64,26,19,8,212,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,112,64,26,19,8,212,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,123,64,26,19,8,212,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,113,64,26,19,8,212,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,123,64,26,19,8,212,3,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,113,64,26,19,8,212,3,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,123,64,26,19,8,212,3,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,114,64,26,19,8,212,3,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,123,64,26,19,8,212,3,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,115,64,26,19,8,212,3,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,123,64,26,19,8,212,3,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,115,64,26,19,8,212,3,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,123,64,26,19,8,212,3,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,116,64,26,19,8,212,3,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,121,64,26,19,8,212,3,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,116,64,26,19,8,212,3,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,120,64,26,19,8,212,3,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,116,64,26,19,8,212,3,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,120,64,26,19,8,212,3,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,115,64,26,19,8,212,3,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,121,64,26,19,8,212,3,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,212,3,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,121,64,26,19,8,212,3,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,113,64,26,19,8,212,3,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,122,64,26,19,8,212,3,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,113,64,26,19,8,212,3,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,124,64,26,19,8,212,3,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,212,3,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,125,64,26,19,8,212,3,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,115,64,26,19,8,212,3,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,212,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,212,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,227,4,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,213,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,213,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,213,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,125,64,26,19,8,213,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,115,64,26,19,8,213,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,213,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,115,64,26,19,8,213,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,125,64,26,19,8,213,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,213,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,213,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,213,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,251,19,18,248,19,10,245,19,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,214,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,214,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,214,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,190,18,10,6,112,111,105,110,116,115,18,179,18,18,176,18,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,94,64,26,19,8,214,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,53,139,64,26,19,8,214,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,96,64,26,19,8,214,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,189,138,64,26,19,8,214,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,98,64,26,19,8,214,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,133,138,64,26,19,8,214,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,149,138,64,26,19,8,214,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,214,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,101,64,26,19,8,214,3,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,181,138,64,26,19,8,214,3,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,102,64,26,19,8,214,3,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,53,139,64,26,19,8,214,3,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,101,64,26,19,8,214,3,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,101,139,64,26,19,8,214,3,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,102,64,26,19,8,214,3,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,245,138,64,26,19,8,214,3,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,214,3,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,221,138,64,26,19,8,214,3,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,104,64,26,19,8,214,3,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,213,138,64,26,19,8,214,3,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,106,64,26,19,8,214,3,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,5,139,64,26,19,8,214,3,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,105,64,26,19,8,214,3,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,37,139,64,26,19,8,214,3,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,102,64,26,19,8,214,3,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,85,139,64,26,19,8,214,3,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,104,64,26,19,8,214,3,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,53,139,64,26,19,8,214,3,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,105,64,26,19,8,214,3,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,53,139,64,26,19,8,214,3,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,107,64,26,19,8,214,3,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,77,139,64,26,19,8,214,3,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,109,64,26,19,8,214,3,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,173,139,64,26,19,8,214,3,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,109,64,26,19,8,214,3,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,213,139,64,26,19,8,214,3,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,214,3,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,213,139,64,26,19,8,214,3,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,108,64,26,19,8,214,3,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,157,139,64,26,19,8,214,3,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,109,64,26,19,8,214,3,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,133,139,64,26,19,8,214,3,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,173,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,182,10,18,179,10,10,176,10,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,116,64,26,19,8,215,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,97,64,26,19,8,215,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,215,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,119,64,26,19,8,215,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,97,64,26,19,8,215,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,215,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,215,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,97,64,26,19,8,215,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,215,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,123,64,26,19,8,215,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,97,64,26,19,8,215,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,215,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,123,64,26,19,8,215,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,98,64,26,19,8,215,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,215,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,122,64,26,19,8,215,3,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,99,64,26,19,8,215,3,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,215,3,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,121,64,26,19,8,215,3,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,99,64,26,19,8,215,3,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,215,3,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,120,64,26,19,8,215,3,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,99,64,26,19,8,215,3,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,215,3,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,121,64,26,19,8,215,3,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,98,64,26,19,8,215,3,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,215,3,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,122,64,26,19,8,215,3,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,94,64,26,19,8,215,3,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,215,3,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,215,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,215,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,215,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,215,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,215,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,179,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,131,13,18,128,13,10,253,12,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,216,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,216,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,216,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,119,64,26,19,8,216,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,13,141,64,26,19,8,216,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,119,64,26,19,8,216,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,149,140,64,26,19,8,216,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,119,64,26,19,8,216,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,229,139,64,26,19,8,216,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,119,64,26,19,8,216,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,237,139,64,26,19,8,216,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,122,64,26,19,8,216,3,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,93,141,64,26,19,8,216,3,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,122,64,26,19,8,216,3,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,101,140,64,26,19,8,216,3,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,122,64,26,19,8,216,3,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,37,140,64,26,19,8,216,3,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,123,64,26,19,8,216,3,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,133,140,64,26,19,8,216,3,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,124,64,26,19,8,216,3,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,109,141,64,26,19,8,216,3,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,124,64,26,19,8,216,3,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,165,140,64,26,19,8,216,3,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,125,64,26,19,8,216,3,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,93,140,64,26,19,8,216,3,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,126,64,26,19,8,216,3,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,85,141,64,26,19,8,216,3,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,127,64,26,19,8,216,3,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,93,141,64,26,19,8,216,3,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,166,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,233,7,18,230,7,10,227,7,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,216,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,227,155,64,26,19,8,216,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,225,149,109,64,26,19,8,216,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,216,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,221,155,64,26,19,8,216,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,54,203,109,64,26,19,8,216,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,216,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,94,155,64,26,19,8,216,3,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,54,203,109,64,26,19,8,216,3,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,216,3,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,103,154,64,26,19,8,216,3,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,54,43,109,64,26,19,8,216,3,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,216,3,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,110,154,64,26,19,8,216,3,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,225,53,110,64,26,19,8,216,3,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,216,3,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,110,154,64,26,19,8,216,3,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,155,229,115,64,26,19,8,216,3,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,216,3,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,117,154,64,26,19,8,216,3,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,26,116,64,26,19,8,216,3,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,216,3,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,216,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,216,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,216,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,216,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,165,4,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,218,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,218,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,218,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,126,64,26,19,8,218,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,218,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,218,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,127,64,26,19,8,218,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,218,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,218,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,127,64,26,19,8,218,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,96,64,26,19,8,218,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,218,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,127,64,26,19,8,218,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,96,64,26,19,8,218,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,218,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,127,64,26,19,8,218,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,97,64,26,19,8,218,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,218,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,218,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,218,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,176,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,173,4,18,170,4,10,167,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,219,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,219,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,219,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,125,64,26,19,8,219,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,99,64,26,19,8,219,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,219,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,125,64,26,19,8,219,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,100,64,26,19,8,219,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,219,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,125,64,26,19,8,219,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,103,64,26,19,8,219,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,219,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,219,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,219,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,180,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,132,26,18,129,26,10,254,25,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,219,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,219,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,219,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,199,24,10,6,112,111,105,110,116,115,18,188,24,18,185,24,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,130,64,26,19,8,219,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,117,142,64,26,19,8,219,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,130,64,26,19,8,219,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,21,142,64,26,19,8,219,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,130,64,26,19,8,219,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,53,141,64,26,19,8,219,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,130,64,26,19,8,219,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,165,140,64,26,19,8,219,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,131,64,26,19,8,219,3,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,5,142,64,26,19,8,219,3,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,69,142,64,26,19,8,219,3,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,132,64,26,19,8,219,3,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,132,64,26,19,8,219,3,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,125,142,64,26,19,8,219,3,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,132,64,26,19,8,219,3,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,29,141,64,26,19,8,219,3,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,219,3,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,189,140,64,26,19,8,219,3,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,133,64,26,19,8,219,3,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,221,141,64,26,19,8,219,3,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,77,142,64,26,19,8,219,3,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,133,64,26,19,8,219,3,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,133,64,26,19,8,219,3,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,61,141,64,26,19,8,219,3,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,133,64,26,19,8,219,3,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,173,140,64,26,19,8,219,3,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,133,64,26,19,8,219,3,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,213,140,64,26,19,8,219,3,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,134,64,26,19,8,219,3,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,85,142,64,26,19,8,219,3,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,134,64,26,19,8,219,3,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,133,142,64,26,19,8,219,3,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,134,64,26,19,8,219,3,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,141,141,64,26,19,8,219,3,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,134,64,26,19,8,219,3,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,245,140,64,26,19,8,219,3,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,134,64,26,19,8,219,3,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,253,140,64,26,19,8,219,3,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,135,64,26,19,8,219,3,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,189,142,64,26,19,8,219,3,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,135,64,26,19,8,219,3,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,157,141,64,26,19,8,219,3,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,135,64,26,19,8,219,3,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,37,141,64,26,19,8,219,3,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,135,64,26,19,8,219,3,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,5,141,64,26,19,8,219,3,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,136,64,26,19,8,219,3,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,69,141,64,26,19,8,219,3,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,136,64,26,19,8,219,3,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,29,142,64,26,19,8,219,3,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,197,141,64,26,19,8,219,3,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,136,64,26,19,8,219,3,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,137,64,26,19,8,219,3,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,157,141,64,26,19,8,219,3,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,181,141,64,26,19,8,219,3,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,138,64,26,19,8,219,3,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,241,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,173,4,18,170,4,10,167,4,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,126,64,26,19,8,221,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,105,64,26,19,8,221,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,221,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,126,64,26,19,8,221,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,221,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,221,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,112,64,26,19,8,221,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,126,64,26,19,8,221,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,221,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,221,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,221,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,221,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,221,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,221,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,230,4,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,250,6,18,247,6,10,244,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,222,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,222,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,222,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,222,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,157,129,64,26,19,8,222,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,121,64,26,19,8,222,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,181,128,64,26,19,8,222,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,122,64,26,19,8,222,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,13,128,64,26,19,8,222,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,124,64,26,19,8,222,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,203,202,124,64,26,19,8,222,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,124,64,26,19,8,222,3,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,203,202,123,64,26,19,8,222,3,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,3,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,126,64,26,19,8,222,3,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,141,129,64,26,19,8,222,3,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,3,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,196,4,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,156,5,18,153,5,10,150,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,223,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,128,64,26,19,8,223,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,113,64,26,19,8,223,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,223,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,128,64,26,19,8,223,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,114,64,26,19,8,223,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,223,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,128,64,26,19,8,223,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,125,64,26,19,8,223,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,223,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,129,64,26,19,8,223,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,129,64,26,19,8,223,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,223,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,223,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,223,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,223,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,223,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,195,4,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,233,7,18,230,7,10,227,7,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,43,154,64,26,19,8,224,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,218,119,64,26,19,8,224,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,224,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,110,154,64,26,19,8,224,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,155,165,119,64,26,19,8,224,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,224,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,155,165,119,64,26,19,8,224,3,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,197,154,64,26,19,8,224,3,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,224,3,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,230,154,64,26,19,8,224,3,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,112,119,64,26,19,8,224,3,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,224,3,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,47,155,64,26,19,8,224,3,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,112,119,64,26,19,8,224,3,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,224,3,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,61,155,64,26,19,8,224,3,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,176,120,64,26,19,8,224,3,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,224,3,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,61,155,64,26,19,8,224,3,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,10,122,64,26,19,8,224,3,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,224,3,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,224,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,224,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,224,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,224,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,224,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,168,4,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,225,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,225,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,225,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,131,64,26,19,8,225,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,85,133,64,26,19,8,225,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,133,64,26,19,8,225,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,197,128,64,26,19,8,225,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,133,64,26,19,8,225,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,13,129,64,26,19,8,225,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,134,64,26,19,8,225,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,221,133,64,26,19,8,225,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,134,64,26,19,8,225,3,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,237,134,64,26,19,8,225,3,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,3,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,180,4,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,156,5,18,153,5,10,150,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,226,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,226,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,226,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,133,64,26,19,8,226,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,71,64,26,19,8,226,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,226,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,134,64,26,19,8,226,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,71,64,26,19,8,226,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,226,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,140,64,26,19,8,226,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,74,64,26,19,8,226,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,226,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,144,64,26,19,8,226,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,74,64,26,19,8,226,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,226,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,226,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,226,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,243,4,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,182,10,18,179,10,10,176,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,227,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,227,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,227,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,143,64,26,19,8,227,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,237,137,64,26,19,8,227,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,143,64,26,19,8,227,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,181,137,64,26,19,8,227,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,143,64,26,19,8,227,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,109,136,64,26,19,8,227,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,229,132,64,26,19,8,227,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,143,64,26,19,8,227,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,144,64,26,19,8,227,3,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,29,128,64,26,19,8,227,3,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,3,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,203,58,127,64,26,19,8,227,3,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,144,64,26,19,8,227,3,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,3,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,144,64,26,19,8,227,3,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,125,131,64,26,19,8,227,3,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,3,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,144,64,26,19,8,227,3,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,229,132,64,26,19,8,227,3,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,3,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,144,64,26,19,8,227,3,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,181,137,64,26,19,8,227,3,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,3,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,144,64,26,19,8,227,3,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,37,139,64,26,19,8,227,3,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,3,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,236,4,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,216,8,18,213,8,10,210,8,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,228,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,145,64,26,19,8,228,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,5,142,64,26,19,8,228,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,145,64,26,19,8,228,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,61,139,64,26,19,8,228,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,146,64,26,19,8,228,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,37,130,64,26,19,8,228,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,189,128,64,26,19,8,228,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,147,64,26,19,8,228,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,147,64,26,19,8,228,3,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,229,130,64,26,19,8,228,3,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,3,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,165,135,64,26,19,8,228,3,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,147,64,26,19,8,228,3,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,3,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,147,64,26,19,8,228,3,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,157,136,64,26,19,8,228,3,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,3,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,148,64,26,19,8,228,3,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,221,138,64,26,19,8,228,3,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,3,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,228,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,228,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,238,4,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,139,6,18,136,6,10,133,6,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,148,64,26,19,8,229,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,68,64,26,19,8,229,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,229,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,148,64,26,19,8,229,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,99,64,26,19,8,229,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,229,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,149,64,26,19,8,229,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,229,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,229,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,122,64,26,19,8,229,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,149,64,26,19,8,229,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,229,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,150,64,26,19,8,229,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,133,64,26,19,8,229,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,229,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,229,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,229,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,229,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,229,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,229,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,161,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,230,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,230,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,230,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,150,64,26,19,8,230,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,94,64,26,19,8,230,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,151,64,26,19,8,230,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,96,64,26,19,8,230,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,151,64,26,19,8,230,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,102,64,26,19,8,230,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,151,64,26,19,8,230,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,230,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,151,64,26,19,8,230,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,128,64,26,19,8,230,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,159,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,233,7,18,230,7,10,227,7,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,231,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,231,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,51,156,64,26,19,8,231,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,16,120,64,26,19,8,231,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,231,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,51,156,64,26,19,8,231,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,202,120,64,26,19,8,231,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,231,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,58,156,64,26,19,8,231,3,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,202,120,64,26,19,8,231,3,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,231,3,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,58,156,64,26,19,8,231,3,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,80,121,64,26,19,8,231,3,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,231,3,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,78,156,64,26,19,8,231,3,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,155,117,122,64,26,19,8,231,3,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,231,3,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,185,156,64,26,19,8,231,3,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,64,122,64,26,19,8,231,3,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,231,3,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,15,157,64,26,19,8,231,3,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,64,122,64,26,19,8,231,3,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,231,3,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,231,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,231,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,231,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,173,4,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,173,4,18,170,4,10,167,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,232,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,232,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,232,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,143,64,26,19,8,232,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,83,64,26,19,8,232,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,82,64,26,19,8,232,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,144,64,26,19,8,232,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,146,64,26,19,8,232,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,82,64,26,19,8,232,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,241,4,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,173,4,18,170,4,10,167,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,233,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,233,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,233,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,139,64,26,19,8,233,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,92,64,26,19,8,233,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,141,64,26,19,8,233,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,92,64,26,19,8,233,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,143,64,26,19,8,233,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,93,64,26,19,8,233,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,244,4,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,156,5,18,153,5,10,150,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,234,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,81,64,26,19,8,234,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,137,64,26,19,8,234,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,137,64,26,19,8,234,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,88,64,26,19,8,234,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,137,64,26,19,8,234,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,234,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,137,64,26,19,8,234,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,99,64,26,19,8,234,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,234,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,234,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,247,4,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,156,5,18,153,5,10,150,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,235,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,235,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,235,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,134,64,26,19,8,235,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,85,64,26,19,8,235,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,235,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,89,64,26,19,8,235,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,138,64,26,19,8,235,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,235,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,90,64,26,19,8,235,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,140,64,26,19,8,235,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,235,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,142,64,26,19,8,235,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,90,64,26,19,8,235,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,235,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,235,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,235,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,245,4,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,250,6,18,247,6,10,244,6,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,13,158,64,26,19,8,236,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,160,121,64,26,19,8,236,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,236,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,66,158,64,26,19,8,236,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,106,121,64,26,19,8,236,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,236,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,50,159,64,26,19,8,236,3,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,106,121,64,26,19,8,236,3,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,236,3,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,50,159,64,26,19,8,236,3,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,80,121,64,26,19,8,236,3,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,236,3,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,159,64,26,19,8,236,3,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,80,121,64,26,19,8,236,3,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,236,3,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,57,159,64,26,19,8,236,3,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,74,123,64,26,19,8,236,3,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,236,3,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,236,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,236,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,236,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,236,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,236,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,181,4,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,156,5,18,153,5,10,150,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,237,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,237,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,237,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,38,192,26,19,8,237,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,129,64,26,19,8,237,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,129,64,26,19,8,237,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,67,64,26,19,8,237,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,129,64,26,19,8,237,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,81,64,26,19,8,237,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,129,64,26,19,8,237,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,103,64,26,19,8,237,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,177,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,233,7,18,230,7,10,227,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,238,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,238,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,238,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,130,64,26,19,8,238,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,192,26,19,8,238,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,238,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,130,64,26,19,8,238,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,75,64,26,19,8,238,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,238,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,130,64,26,19,8,238,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,101,64,26,19,8,238,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,238,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,130,64,26,19,8,238,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,111,64,26,19,8,238,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,238,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,114,64,26,19,8,238,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,130,64,26,19,8,238,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,238,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,122,64,26,19,8,238,3,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,130,64,26,19,8,238,3,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,238,3,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,130,64,26,19,8,238,3,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,129,64,26,19,8,238,3,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,238,3,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,238,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,238,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,171,4,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,239,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,239,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,239,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,6,158,64,26,19,8,239,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,109,86,87,64,26,19,8,239,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,239,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,249,157,64,26,19,8,239,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,109,214,89,64,26,19,8,239,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,239,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,255,157,64,26,19,8,239,3,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,54,11,101,64,26,19,8,239,3,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,239,3,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,19,158,64,26,19,8,239,3,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,225,213,100,64,26,19,8,239,3,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,239,3,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,54,11,101,64,26,19,8,239,3,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,226,158,64,26,19,8,239,3,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,239,3,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,239,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,239,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,188,4,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,190,3,18,187,3,10,184,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,240,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,240,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,240,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,130,64,26,19,8,240,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,127,64,26,19,8,240,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,240,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,130,64,26,19,8,240,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,122,64,26,19,8,240,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,240,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,240,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,240,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,172,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,208,15,18,205,15,10,202,15,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,241,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,147,14,10,6,112,111,105,110,116,115,18,136,14,18,133,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,130,64,26,19,8,241,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,122,64,26,19,8,241,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,131,64,26,19,8,241,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,121,64,26,19,8,241,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,131,64,26,19,8,241,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,121,64,26,19,8,241,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,131,64,26,19,8,241,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,121,64,26,19,8,241,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,131,64,26,19,8,241,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,118,64,26,19,8,241,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,131,64,26,19,8,241,3,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,118,64,26,19,8,241,3,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,131,64,26,19,8,241,3,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,117,64,26,19,8,241,3,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,130,64,26,19,8,241,3,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,116,64,26,19,8,241,3,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,130,64,26,19,8,241,3,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,115,64,26,19,8,241,3,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,130,64,26,19,8,241,3,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,241,3,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,129,64,26,19,8,241,3,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,111,64,26,19,8,241,3,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,130,64,26,19,8,241,3,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,241,3,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,130,64,26,19,8,241,3,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,104,64,26,19,8,241,3,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,130,64,26,19,8,241,3,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,241,3,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,131,64,26,19,8,241,3,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,96,64,26,19,8,241,3,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,132,64,26,19,8,241,3,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,84,64,26,19,8,241,3,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,241,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,241,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,171,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,216,8,18,213,8,10,210,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,242,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,242,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,242,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,133,64,26,19,8,242,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,70,64,26,19,8,242,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,132,64,26,19,8,242,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,69,64,26,19,8,242,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,131,64,26,19,8,242,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,69,64,26,19,8,242,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,129,64,26,19,8,242,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,70,64,26,19,8,242,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,125,64,26,19,8,242,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,75,64,26,19,8,242,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,120,64,26,19,8,242,3,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,80,64,26,19,8,242,3,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,3,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,119,64,26,19,8,242,3,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,82,64,26,19,8,242,3,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,3,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,88,64,26,19,8,242,3,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,116,64,26,19,8,242,3,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,3,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,227,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,139,6,18,136,6,10,133,6,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,243,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,114,64,26,19,8,243,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,91,64,26,19,8,243,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,243,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,112,64,26,19,8,243,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,94,64,26,19,8,243,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,243,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,64,26,19,8,243,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,98,64,26,19,8,243,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,243,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,96,64,26,19,8,243,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,99,64,26,19,8,243,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,243,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,90,64,26,19,8,243,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,101,64,26,19,8,243,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,243,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,243,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,243,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,243,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,243,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,162,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,139,6,18,136,6,10,133,6,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,82,64,26,19,8,244,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,104,64,26,19,8,244,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,244,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,72,64,26,19,8,244,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,107,64,26,19,8,244,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,244,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,62,64,26,19,8,244,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,110,64,26,19,8,244,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,244,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,50,64,26,19,8,244,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,112,64,26,19,8,244,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,244,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,44,64,26,19,8,244,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,113,64,26,19,8,244,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,244,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,244,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,244,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,244,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,244,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,244,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,163,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,216,8,18,213,8,10,210,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,245,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,245,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,245,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,40,64,26,19,8,245,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,115,64,26,19,8,245,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,44,64,26,19,8,245,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,115,64,26,19,8,245,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,53,64,26,19,8,245,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,116,64,26,19,8,245,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,63,64,26,19,8,245,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,116,64,26,19,8,245,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,73,64,26,19,8,245,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,116,64,26,19,8,245,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,117,64,26,19,8,245,3,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,88,64,26,19,8,245,3,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,3,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,101,64,26,19,8,245,3,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,117,64,26,19,8,245,3,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,3,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,107,64,26,19,8,245,3,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,117,64,26,19,8,245,3,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,3,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,174,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,216,8,18,213,8,10,210,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,246,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,246,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,246,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,119,64,26,19,8,246,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,98,64,26,19,8,246,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,246,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,121,64,26,19,8,246,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,94,64,26,19,8,246,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,246,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,122,64,26,19,8,246,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,91,64,26,19,8,246,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,246,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,246,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,91,64,26,19,8,246,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,246,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,124,64,26,19,8,246,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,91,64,26,19,8,246,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,246,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,135,64,26,19,8,246,3,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,97,64,26,19,8,246,3,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,246,3,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,138,64,26,19,8,246,3,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,99,64,26,19,8,246,3,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,246,3,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,138,64,26,19,8,246,3,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,100,64,26,19,8,246,3,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,246,3,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,246,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,246,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,227,4,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,233,7,18,230,7,10,227,7,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,247,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,247,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,139,64,26,19,8,247,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,102,64,26,19,8,247,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,247,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,142,64,26,19,8,247,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,113,64,26,19,8,247,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,247,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,143,64,26,19,8,247,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,247,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,247,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,144,64,26,19,8,247,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,118,64,26,19,8,247,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,247,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,145,64,26,19,8,247,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,119,64,26,19,8,247,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,247,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,145,64,26,19,8,247,3,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,120,64,26,19,8,247,3,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,247,3,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,146,64,26,19,8,247,3,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,120,64,26,19,8,247,3,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,247,3,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,247,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,247,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,247,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,166,4,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,225,14,18,222,14,10,219,14,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,248,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,149,64,26,19,8,248,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,109,64,26,19,8,248,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,149,64,26,19,8,248,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,248,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,149,64,26,19,8,248,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,248,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,148,64,26,19,8,248,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,101,64,26,19,8,248,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,101,64,26,19,8,248,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,148,64,26,19,8,248,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,148,64,26,19,8,248,3,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,100,64,26,19,8,248,3,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,147,64,26,19,8,248,3,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,248,3,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,147,64,26,19,8,248,3,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,101,64,26,19,8,248,3,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,146,64,26,19,8,248,3,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,104,64,26,19,8,248,3,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,145,64,26,19,8,248,3,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,108,64,26,19,8,248,3,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,143,64,26,19,8,248,3,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,113,64,26,19,8,248,3,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,141,64,26,19,8,248,3,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,248,3,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,136,64,26,19,8,248,3,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,123,64,26,19,8,248,3,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,134,64,26,19,8,248,3,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,126,64,26,19,8,248,3,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,127,64,26,19,8,248,3,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,133,64,26,19,8,248,3,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,248,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,248,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,248,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,162,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,165,11,18,162,11,10,159,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,249,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,249,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,249,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,134,64,26,19,8,249,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,119,64,26,19,8,249,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,134,64,26,19,8,249,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,119,64,26,19,8,249,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,134,64,26,19,8,249,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,119,64,26,19,8,249,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,136,64,26,19,8,249,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,124,64,26,19,8,249,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,139,64,26,19,8,249,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,128,64,26,19,8,249,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,140,64,26,19,8,249,3,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,129,64,26,19,8,249,3,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,3,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,141,64,26,19,8,249,3,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,130,64,26,19,8,249,3,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,3,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,143,64,26,19,8,249,3,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,130,64,26,19,8,249,3,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,3,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,130,64,26,19,8,249,3,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,144,64,26,19,8,249,3,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,3,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,144,64,26,19,8,249,3,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,130,64,26,19,8,249,3,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,3,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,144,64,26,19,8,249,3,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,130,64,26,19,8,249,3,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,3,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,173,4,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,156,5,18,153,5,10,150,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,250,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,250,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,250,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,145,64,26,19,8,250,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,126,64,26,19,8,250,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,250,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,145,64,26,19,8,250,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,125,64,26,19,8,250,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,250,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,144,64,26,19,8,250,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,124,64,26,19,8,250,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,250,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,143,64,26,19,8,250,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,124,64,26,19,8,250,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,250,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,250,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,250,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,233,4,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,156,5,18,153,5,10,150,5,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,251,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,251,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,141,64,26,19,8,251,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,121,64,26,19,8,251,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,251,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,144,64,26,19,8,251,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,120,64,26,19,8,251,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,251,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,144,64,26,19,8,251,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,120,64,26,19,8,251,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,251,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,144,64,26,19,8,251,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,123,64,26,19,8,251,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,251,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,251,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,251,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,251,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,165,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,139,6,18,136,6,10,133,6,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,252,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,145,64,26,19,8,252,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,252,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,146,64,26,19,8,252,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,123,64,26,19,8,252,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,146,64,26,19,8,252,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,123,64,26,19,8,252,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,146,64,26,19,8,252,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,123,64,26,19,8,252,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,146,64,26,19,8,252,3,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,125,64,26,19,8,252,3,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,3,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,252,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,252,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,232,4,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,156,5,18,153,5,10,150,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,253,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,253,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,253,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,146,64,26,19,8,253,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,123,64,26,19,8,253,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,147,64,26,19,8,253,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,122,64,26,19,8,253,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,149,64,26,19,8,253,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,121,64,26,19,8,253,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,149,64,26,19,8,253,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,126,64,26,19,8,253,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,163,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,156,5,18,153,5,10,150,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,254,3,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,91,64,26,19,8,254,3,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,149,64,26,19,8,254,3,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,254,3,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,149,64,26,19,8,254,3,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,92,64,26,19,8,254,3,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,254,3,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,149,64,26,19,8,254,3,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,92,64,26,19,8,254,3,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,254,3,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,149,64,26,19,8,254,3,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,106,64,26,19,8,254,3,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,254,3,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,254,3,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,254,3,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,254,3,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,254,3,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,175,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,191,16,18,188,16,10,185,16,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,255,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,255,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,255,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,130,15,10,6,112,111,105,110,116,115,18,247,14,18,244,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,129,64,26,19,8,255,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,53,135,64,26,19,8,255,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,127,64,26,19,8,255,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,53,135,64,26,19,8,255,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,123,64,26,19,8,255,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,221,134,64,26,19,8,255,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,122,64,26,19,8,255,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,189,134,64,26,19,8,255,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,118,64,26,19,8,255,3,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,205,133,64,26,19,8,255,3,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,118,64,26,19,8,255,3,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,125,133,64,26,19,8,255,3,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,118,64,26,19,8,255,3,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,253,132,64,26,19,8,255,3,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,118,64,26,19,8,255,3,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,13,132,64,26,19,8,255,3,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,122,64,26,19,8,255,3,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,125,131,64,26,19,8,255,3,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,123,64,26,19,8,255,3,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,157,131,64,26,19,8,255,3,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,127,64,26,19,8,255,3,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,37,132,64,26,19,8,255,3,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,127,64,26,19,8,255,3,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,85,132,64,26,19,8,255,3,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,253,132,64,26,19,8,255,3,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,255,3,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,128,64,26,19,8,255,3,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,93,133,64,26,19,8,255,3,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,128,64,26,19,8,255,3,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,189,133,64,26,19,8,255,3,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,127,64,26,19,8,255,3,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,181,134,64,26,19,8,255,3,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,126,64,26,19,8,255,3,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,61,135,64,26,19,8,255,3,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,220,4,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,128,4,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,128,4,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,128,4,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,128,64,26,19,8,128,4,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,21,131,64,26,19,8,128,4,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,128,4,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,128,64,26,19,8,128,4,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,109,131,64,26,19,8,128,4,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,128,4,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,127,64,26,19,8,128,4,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,109,132,64,26,19,8,128,4,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,128,4,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,125,64,26,19,8,128,4,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,37,134,64,26,19,8,128,4,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,128,4,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,122,64,26,19,8,128,4,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,117,135,64,26,19,8,128,4,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,128,4,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,128,4,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,128,4,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,165,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,199,9,18,196,9,10,193,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,129,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,129,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,129,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,148,64,26,19,8,129,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,71,64,26,19,8,129,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,129,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,149,64,26,19,8,129,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,73,64,26,19,8,129,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,129,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,74,64,26,19,8,129,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,149,64,26,19,8,129,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,129,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,150,64,26,19,8,129,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,76,64,26,19,8,129,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,129,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,151,64,26,19,8,129,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,76,64,26,19,8,129,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,129,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,152,64,26,19,8,129,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,74,64,26,19,8,129,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,129,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,152,64,26,19,8,129,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,96,64,26,19,8,129,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,129,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,152,64,26,19,8,129,4,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,102,64,26,19,8,129,4,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,129,4,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,123,64,26,19,8,129,4,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,153,64,26,19,8,129,4,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,129,4,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,129,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,129,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,158,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,153,64,26,19,8,130,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,123,64,26,19,8,130,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,130,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,153,64,26,19,8,130,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,123,64,26,19,8,130,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,130,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,130,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,130,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,130,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,130,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,130,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,156,5,18,153,5,10,150,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,130,4,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,130,4,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,130,4,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,203,154,122,64,26,19,8,130,4,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,131,64,26,19,8,130,4,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,130,4,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,130,64,26,19,8,130,4,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,203,26,124,64,26,19,8,130,4,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,130,4,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,129,64,26,19,8,130,4,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,203,202,126,64,26,19,8,130,4,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,130,4,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,127,64,26,19,8,130,4,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,101,173,128,64,26,19,8,130,4,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,130,4,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,130,4,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,130,4,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,172,4,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,174,17,18,171,17,10,168,17,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,132,4,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,132,4,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,132,4,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,241,15,10,6,112,111,105,110,116,115,18,230,15,18,227,15,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,114,64,26,19,8,132,4,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,170,119,64,26,19,8,132,4,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,111,64,26,19,8,132,4,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,138,118,64,26,19,8,132,4,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,110,64,26,19,8,132,4,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,250,117,64,26,19,8,132,4,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,108,64,26,19,8,132,4,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,58,117,64,26,19,8,132,4,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,108,64,26,19,8,132,4,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,202,116,64,26,19,8,132,4,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,108,64,26,19,8,132,4,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,42,115,64,26,19,8,132,4,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,186,114,64,26,19,8,132,4,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,108,64,26,19,8,132,4,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,109,64,26,19,8,132,4,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,26,114,64,26,19,8,132,4,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,112,64,26,19,8,132,4,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,74,113,64,26,19,8,132,4,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,113,64,26,19,8,132,4,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,42,113,64,26,19,8,132,4,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,114,64,26,19,8,132,4,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,154,113,64,26,19,8,132,4,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,116,64,26,19,8,132,4,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,58,115,64,26,19,8,132,4,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,58,118,64,26,19,8,132,4,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,119,64,26,19,8,132,4,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,119,64,26,19,8,132,4,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,250,118,64,26,19,8,132,4,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,120,64,26,19,8,132,4,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,218,119,64,26,19,8,132,4,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,132,4,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,234,120,64,26,19,8,132,4,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,132,4,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,154,121,64,26,19,8,132,4,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,132,4,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,234,121,64,26,19,8,132,4,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,132,4,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,225,4,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,250,6,18,247,6,10,244,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,133,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,133,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,133,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,151,64,26,19,8,133,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,118,64,26,19,8,133,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,150,64,26,19,8,133,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,117,64,26,19,8,133,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,149,64,26,19,8,133,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,118,64,26,19,8,133,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,148,64,26,19,8,133,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,123,64,26,19,8,133,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,148,64,26,19,8,133,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,130,64,26,19,8,133,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,148,64,26,19,8,133,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,131,64,26,19,8,133,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,163,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,250,6,18,247,6,10,244,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,134,4,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,134,4,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,134,4,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,122,123,64,26,19,8,134,4,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,109,64,26,19,8,134,4,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,134,4,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,110,64,26,19,8,134,4,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,90,122,64,26,19,8,134,4,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,134,4,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,112,64,26,19,8,134,4,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,90,120,64,26,19,8,134,4,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,134,4,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,116,64,26,19,8,134,4,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,58,116,64,26,19,8,134,4,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,134,4,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,116,64,26,19,8,134,4,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,122,115,64,26,19,8,134,4,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,134,4,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,120,64,26,19,8,134,4,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,250,112,64,26,19,8,134,4,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,134,4,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,134,4,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,134,4,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,225,4,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,135,4,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,135,4,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,135,4,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,113,64,26,19,8,135,4,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,148,53,111,64,26,19,8,135,4,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,135,4,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,113,64,26,19,8,135,4,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,26,113,64,26,19,8,135,4,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,135,4,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,111,64,26,19,8,135,4,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,218,121,64,26,19,8,135,4,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,135,4,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,110,64,26,19,8,135,4,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,106,124,64,26,19,8,135,4,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,135,4,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,111,64,26,19,8,135,4,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,170,127,64,26,19,8,135,4,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,135,4,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,135,4,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,135,4,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,172,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,156,5,18,153,5,10,150,5,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,148,64,26,19,8,136,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,133,64,26,19,8,136,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,136,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,150,64,26,19,8,136,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,133,64,26,19,8,136,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,136,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,132,64,26,19,8,136,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,152,64,26,19,8,136,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,136,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,155,64,26,19,8,136,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,136,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,136,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,136,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,136,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,136,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,136,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,136,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,235,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,250,6,18,247,6,10,244,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,137,4,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,137,4,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,137,4,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,119,64,26,19,8,137,4,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,218,122,64,26,19,8,137,4,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,137,4,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,118,64,26,19,8,137,4,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,250,120,64,26,19,8,137,4,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,137,4,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,114,64,26,19,8,137,4,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,202,115,64,26,19,8,137,4,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,137,4,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,113,64,26,19,8,137,4,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,202,114,64,26,19,8,137,4,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,137,4,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,112,64,26,19,8,137,4,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,234,113,64,26,19,8,137,4,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,137,4,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,110,64,26,19,8,137,4,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,186,113,64,26,19,8,137,4,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,137,4,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,137,4,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,137,4,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,225,4,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,216,8,18,213,8,10,210,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,138,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,138,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,138,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,149,64,26,19,8,138,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,131,64,26,19,8,138,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,138,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,131,64,26,19,8,138,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,149,64,26,19,8,138,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,138,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,151,64,26,19,8,138,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,138,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,138,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,153,64,26,19,8,138,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,130,64,26,19,8,138,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,138,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,152,64,26,19,8,138,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,131,64,26,19,8,138,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,138,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,151,64,26,19,8,138,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,131,64,26,19,8,138,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,138,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,149,64,26,19,8,138,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,132,64,26,19,8,138,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,138,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,147,64,26,19,8,138,4,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,132,64,26,19,8,138,4,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,138,4,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,138,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,138,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,240,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,233,7,18,230,7,10,227,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,139,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,139,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,139,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,148,64,26,19,8,139,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,131,64,26,19,8,139,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,139,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,148,64,26,19,8,139,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,130,64,26,19,8,139,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,139,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,149,64,26,19,8,139,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,130,64,26,19,8,139,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,139,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,150,64,26,19,8,139,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,130,64,26,19,8,139,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,139,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,129,64,26,19,8,139,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,151,64,26,19,8,139,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,139,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,151,64,26,19,8,139,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,129,64,26,19,8,139,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,139,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,150,64,26,19,8,139,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,125,64,26,19,8,139,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,139,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,139,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,139,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,164,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,225,14,18,222,14,10,219,14,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,140,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,140,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,140,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,101,64,26,19,8,140,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,145,64,26,19,8,140,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,145,64,26,19,8,140,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,99,64,26,19,8,140,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,145,64,26,19,8,140,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,97,64,26,19,8,140,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,145,64,26,19,8,140,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,94,64,26,19,8,140,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,145,64,26,19,8,140,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,91,64,26,19,8,140,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,146,64,26,19,8,140,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,90,64,26,19,8,140,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,146,64,26,19,8,140,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,92,64,26,19,8,140,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,146,64,26,19,8,140,4,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,97,64,26,19,8,140,4,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,140,4,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,146,64,26,19,8,140,4,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,146,64,26,19,8,140,4,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,64,26,19,8,140,4,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,146,64,26,19,8,140,4,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,99,64,26,19,8,140,4,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,147,64,26,19,8,140,4,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,97,64,26,19,8,140,4,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,147,64,26,19,8,140,4,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,96,64,26,19,8,140,4,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,147,64,26,19,8,140,4,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,100,64,26,19,8,140,4,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,147,64,26,19,8,140,4,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,106,64,26,19,8,140,4,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,175,4,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,199,9,18,196,9,10,193,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,141,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,141,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,141,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,146,64,26,19,8,141,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,114,64,26,19,8,141,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,146,64,26,19,8,141,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,114,64,26,19,8,141,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,116,64,26,19,8,141,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,146,64,26,19,8,141,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,146,64,26,19,8,141,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,117,64,26,19,8,141,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,117,64,26,19,8,141,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,146,64,26,19,8,141,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,146,64,26,19,8,141,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,115,64,26,19,8,141,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,146,64,26,19,8,141,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,118,64,26,19,8,141,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,147,64,26,19,8,141,4,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,118,64,26,19,8,141,4,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,4,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,147,64,26,19,8,141,4,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,115,64,26,19,8,141,4,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,4,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,173,4,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,182,10,18,179,10,10,176,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,142,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,142,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,142,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,146,64,26,19,8,142,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,112,64,26,19,8,142,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,142,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,146,64,26,19,8,142,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,111,64,26,19,8,142,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,142,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,146,64,26,19,8,142,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,110,64,26,19,8,142,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,142,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,147,64,26,19,8,142,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,109,64,26,19,8,142,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,142,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,147,64,26,19,8,142,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,113,64,26,19,8,142,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,142,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,147,64,26,19,8,142,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,112,64,26,19,8,142,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,142,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,147,64,26,19,8,142,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,111,64,26,19,8,142,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,142,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,148,64,26,19,8,142,4,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,110,64,26,19,8,142,4,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,142,4,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,148,64,26,19,8,142,4,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,110,64,26,19,8,142,4,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,142,4,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,148,64,26,19,8,142,4,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,114,64,26,19,8,142,4,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,142,4,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,142,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,142,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,161,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,216,8,18,213,8,10,210,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,143,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,143,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,143,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,147,64,26,19,8,143,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,114,64,26,19,8,143,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,143,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,147,64,26,19,8,143,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,115,64,26,19,8,143,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,143,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,147,64,26,19,8,143,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,115,64,26,19,8,143,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,143,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,148,64,26,19,8,143,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,143,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,143,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,148,64,26,19,8,143,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,115,64,26,19,8,143,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,143,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,148,64,26,19,8,143,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,115,64,26,19,8,143,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,143,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,148,64,26,19,8,143,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,64,26,19,8,143,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,143,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,148,64,26,19,8,143,4,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,113,64,26,19,8,143,4,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,143,4,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,143,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,143,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,162,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,199,9,18,196,9,10,193,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,144,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,144,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,144,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,146,64,26,19,8,144,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,114,64,26,19,8,144,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,146,64,26,19,8,144,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,113,64,26,19,8,144,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,146,64,26,19,8,144,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,113,64,26,19,8,144,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,146,64,26,19,8,144,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,113,64,26,19,8,144,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,145,64,26,19,8,144,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,113,64,26,19,8,144,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,145,64,26,19,8,144,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,113,64,26,19,8,144,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,145,64,26,19,8,144,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,112,64,26,19,8,144,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,145,64,26,19,8,144,4,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,115,64,26,19,8,144,4,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,4,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,145,64,26,19,8,144,4,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,114,64,26,19,8,144,4,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,4,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,230,4,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,148,12,18,145,12,10,142,12,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,145,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,145,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,145,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,215,10,10,6,112,111,105,110,116,115,18,204,10,18,201,10,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,145,64,26,19,8,145,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,116,64,26,19,8,145,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,145,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,145,64,26,19,8,145,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,115,64,26,19,8,145,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,145,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,145,64,26,19,8,145,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,117,64,26,19,8,145,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,145,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,145,64,26,19,8,145,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,117,64,26,19,8,145,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,145,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,145,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,146,64,26,19,8,145,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,145,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,146,64,26,19,8,145,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,118,64,26,19,8,145,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,145,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,146,64,26,19,8,145,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,118,64,26,19,8,145,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,145,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,146,64,26,19,8,145,4,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,145,4,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,145,4,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,146,64,26,19,8,145,4,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,119,64,26,19,8,145,4,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,145,4,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,146,64,26,19,8,145,4,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,119,64,26,19,8,145,4,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,145,4,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,147,64,26,19,8,145,4,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,119,64,26,19,8,145,4,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,145,4,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,147,64,26,19,8,145,4,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,119,64,26,19,8,145,4,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,145,4,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,145,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,145,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,173,4,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,173,4,18,170,4,10,167,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,146,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,146,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,146,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,117,64,26,19,8,146,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,147,64,26,19,8,146,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,146,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,147,64,26,19,8,146,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,118,64,26,19,8,146,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,146,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,117,64,26,19,8,146,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,147,64,26,19,8,146,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,146,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,146,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,146,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,223,4,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,250,6,18,247,6,10,244,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,147,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,147,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,147,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,147,64,26,19,8,147,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,117,64,26,19,8,147,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,147,64,26,19,8,147,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,117,64,26,19,8,147,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,147,64,26,19,8,147,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,117,64,26,19,8,147,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,147,64,26,19,8,147,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,117,64,26,19,8,147,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,147,64,26,19,8,147,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,118,64,26,19,8,147,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,147,64,26,19,8,147,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,118,64,26,19,8,147,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,222,4,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,156,5,18,153,5,10,150,5,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,118,64,26,19,8,148,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,147,64,26,19,8,148,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,148,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,148,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,147,64,26,19,8,148,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,148,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,147,64,26,19,8,148,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,118,64,26,19,8,148,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,148,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,147,64,26,19,8,148,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,118,64,26,19,8,148,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,148,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,148,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,148,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,148,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,148,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,148,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,232,4,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,190,3,18,187,3,10,184,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,149,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,147,64,26,19,8,149,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,116,64,26,19,8,149,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,149,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,147,64,26,19,8,149,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,149,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,149,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,149,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,149,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,149,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,149,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,235,4,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,173,4,18,170,4,10,167,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,150,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,150,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,150,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,148,64,26,19,8,150,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,114,64,26,19,8,150,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,150,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,148,64,26,19,8,150,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,116,64,26,19,8,150,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,150,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,148,64,26,19,8,150,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,116,64,26,19,8,150,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,150,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,150,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,150,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,227,4,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,151,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,151,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,151,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,148,64,26,19,8,151,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,116,64,26,19,8,151,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,151,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,148,64,26,19,8,151,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,117,64,26,19,8,151,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,151,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,147,64,26,19,8,151,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,118,64,26,19,8,151,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,151,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,147,64,26,19,8,151,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,151,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,151,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,147,64,26,19,8,151,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,151,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,151,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,151,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,151,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,224,4,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,216,8,18,213,8,10,210,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,151,4,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,49,101,99,102,99,26,19,8,151,4,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,151,4,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,23,67,104,210,46,132,64,26,19,8,151,4,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,219,204,200,118,24,57,125,64,26,19,8,151,4,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,151,4,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,231,236,68,58,110,98,133,64,26,19,8,151,4,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,238,157,51,167,152,205,125,64,26,19,8,151,4,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,151,4,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,7,70,245,225,76,126,64,26,19,8,151,4,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,152,247,79,179,174,213,134,64,26,19,8,151,4,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,151,4,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,69,155,2,74,184,51,136,64,26,19,8,151,4,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,7,61,79,156,134,140,126,64,26,19,8,151,4,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,151,4,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,10,164,167,126,189,161,126,64,26,19,8,151,4,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,122,64,146,22,203,198,137,64,26,19,8,151,4,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,151,4,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,7,16,32,17,66,38,138,64,26,19,8,151,4,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,5,214,246,185,79,119,126,64,26,19,8,151,4,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,151,4,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,142,17,253,70,75,91,138,64,26,19,8,151,4,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,249,57,149,48,116,34,126,64,26,19,8,151,4,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,151,4,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,147,223,173,11,185,133,138,64,26,19,8,151,4,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,249,57,149,48,116,34,126,64,26,19,8,151,4,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,151,4,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,151,4,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,151,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,34,19,8,160,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,250,6,18,247,6,10,244,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,153,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,153,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,153,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,133,64,26,19,8,153,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,108,64,26,19,8,153,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,153,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,133,64,26,19,8,153,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,112,64,26,19,8,153,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,153,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,134,64,26,19,8,153,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,114,64,26,19,8,153,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,153,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,134,64,26,19,8,153,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,153,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,153,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,134,64,26,19,8,153,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,117,64,26,19,8,153,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,153,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,135,64,26,19,8,153,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,117,64,26,19,8,153,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,153,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,153,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,153,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,169,4,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,216,8,18,213,8,10,210,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,154,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,154,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,154,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,136,64,26,19,8,154,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,154,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,154,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,135,64,26,19,8,154,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,117,64,26,19,8,154,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,154,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,134,64,26,19,8,154,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,118,64,26,19,8,154,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,154,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,133,64,26,19,8,154,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,118,64,26,19,8,154,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,154,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,132,64,26,19,8,154,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,118,64,26,19,8,154,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,154,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,130,64,26,19,8,154,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,118,64,26,19,8,154,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,154,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,118,64,26,19,8,154,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,130,64,26,19,8,154,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,154,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,129,64,26,19,8,154,4,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,117,64,26,19,8,154,4,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,154,4,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,154,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,154,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,171,4,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,182,10,18,179,10,10,176,10,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,155,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,155,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,132,64,26,19,8,155,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,111,64,26,19,8,155,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,155,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,111,64,26,19,8,155,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,132,64,26,19,8,155,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,155,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,133,64,26,19,8,155,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,113,64,26,19,8,155,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,155,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,133,64,26,19,8,155,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,114,64,26,19,8,155,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,155,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,134,64,26,19,8,155,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,114,64,26,19,8,155,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,155,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,135,64,26,19,8,155,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,114,64,26,19,8,155,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,155,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,135,64,26,19,8,155,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,114,64,26,19,8,155,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,155,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,135,64,26,19,8,155,4,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,114,64,26,19,8,155,4,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,155,4,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,135,64,26,19,8,155,4,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,114,64,26,19,8,155,4,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,155,4,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,136,64,26,19,8,155,4,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,112,64,26,19,8,155,4,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,155,4,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,155,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,155,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,155,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,169,4,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,156,5,18,153,5,10,150,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,156,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,156,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,156,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,137,64,26,19,8,156,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,102,64,26,19,8,156,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,156,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,136,64,26,19,8,156,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,103,64,26,19,8,156,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,156,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,110,64,26,19,8,156,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,134,64,26,19,8,156,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,156,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,134,64,26,19,8,156,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,112,64,26,19,8,156,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,156,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,156,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,156,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,176,4,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,199,9,18,196,9,10,193,9,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,157,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,133,64,26,19,8,157,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,103,64,26,19,8,157,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,157,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,134,64,26,19,8,157,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,107,64,26,19,8,157,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,157,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,134,64,26,19,8,157,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,109,64,26,19,8,157,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,157,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,135,64,26,19,8,157,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,110,64,26,19,8,157,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,157,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,135,64,26,19,8,157,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,110,64,26,19,8,157,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,157,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,135,64,26,19,8,157,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,109,64,26,19,8,157,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,157,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,136,64,26,19,8,157,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,110,64,26,19,8,157,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,157,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,136,64,26,19,8,157,4,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,110,64,26,19,8,157,4,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,157,4,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,136,64,26,19,8,157,4,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,109,64,26,19,8,157,4,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,157,4,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,157,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,157,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,157,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,157,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,176,4,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,177,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,177,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,177,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,192,108,64,26,19,8,177,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,84,64,26,19,8,177,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,85,64,26,19,8,177,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,146,64,26,19,8,177,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,177,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,146,64,26,19,8,177,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,85,64,26,19,8,177,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,177,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,177,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,177,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,187,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,183,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,183,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,183,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,75,64,26,19,8,183,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,151,64,26,19,8,183,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,128,66,64,26,19,8,183,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,192,99,64,26,19,8,183,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,75,64,26,19,8,183,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,152,64,26,19,8,183,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,186,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,163,4,18,160,4,10,157,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,150,64,26,19,8,188,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,104,64,26,19,8,188,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,188,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,188,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,188,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,104,64,26,19,8,188,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,150,64,26,19,8,188,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,96,112,64,26,19,8,188,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,128,81,64,26,19,8,188,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,218,4,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,158,31,18,155,31,10,152,31,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,167,6,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,102,99,52,102,102,26,19,8,167,6,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,167,6,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,225,29,10,6,112,111,105,110,116,115,18,214,29,18,211,29,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,153,64,26,19,8,167,6,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,104,64,26,19,8,167,6,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,153,64,26,19,8,167,6,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,167,6,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,153,64,26,19,8,167,6,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,113,64,26,19,8,167,6,16,14,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,152,64,26,19,8,167,6,16,16,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,118,64,26,19,8,167,6,16,17,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,15,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,151,64,26,19,8,167,6,16,19,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,119,64,26,19,8,167,6,16,20,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,18,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,149,64,26,19,8,167,6,16,22,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,120,64,26,19,8,167,6,16,23,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,21,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,118,64,26,19,8,167,6,16,26,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,149,64,26,19,8,167,6,16,25,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,24,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,150,64,26,19,8,167,6,16,28,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,113,64,26,19,8,167,6,16,29,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,27,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,151,64,26,19,8,167,6,16,31,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,64,26,19,8,167,6,16,32,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,30,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,151,64,26,19,8,167,6,16,34,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,115,64,26,19,8,167,6,16,35,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,33,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,153,64,26,19,8,167,6,16,37,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,121,64,26,19,8,167,6,16,38,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,36,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,154,64,26,19,8,167,6,16,40,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,123,64,26,19,8,167,6,16,41,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,39,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,154,64,26,19,8,167,6,16,43,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,123,64,26,19,8,167,6,16,44,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,42,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,155,64,26,19,8,167,6,16,46,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,123,64,26,19,8,167,6,16,47,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,45,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,155,64,26,19,8,167,6,16,49,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,122,64,26,19,8,167,6,16,50,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,48,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,155,64,26,19,8,167,6,16,52,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,117,64,26,19,8,167,6,16,53,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,51,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,154,64,26,19,8,167,6,16,55,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,116,64,26,19,8,167,6,16,56,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,54,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,153,64,26,19,8,167,6,16,58,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,115,64,26,19,8,167,6,16,59,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,57,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,115,64,26,19,8,167,6,16,62,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,153,64,26,19,8,167,6,16,61,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,60,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,152,64,26,19,8,167,6,16,64,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,116,64,26,19,8,167,6,16,65,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,63,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,152,64,26,19,8,167,6,16,67,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,117,64,26,19,8,167,6,16,68,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,66,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,151,64,26,19,8,167,6,16,70,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,120,64,26,19,8,167,6,16,71,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,69,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,151,64,26,19,8,167,6,16,73,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,123,64,26,19,8,167,6,16,74,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,72,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,150,64,26,19,8,167,6,16,76,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,124,64,26,19,8,167,6,16,77,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,75,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,150,64,26,19,8,167,6,16,79,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,125,64,26,19,8,167,6,16,80,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,78,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,149,64,26,19,8,167,6,16,82,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,124,64,26,19,8,167,6,16,83,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,81,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,149,64,26,19,8,167,6,16,85,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,121,64,26,19,8,167,6,16,86,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,84,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,149,64,26,19,8,167,6,16,88,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,118,64,26,19,8,167,6,16,89,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,87,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,150,64,26,19,8,167,6,16,91,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,115,64,26,19,8,167,6,16,92,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,90,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,151,64,26,19,8,167,6,16,94,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,115,64,26,19,8,167,6,16,95,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,93,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,151,64,26,19,8,167,6,16,97,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,116,64,26,19,8,167,6,16,98,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,96,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,153,64,26,19,8,167,6,16,100,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,121,64,26,19,8,167,6,16,101,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,99,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,154,64,26,19,8,167,6,16,103,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,126,64,26,19,8,167,6,16,104,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,102,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,155,64,26,19,8,167,6,16,106,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,128,64,26,19,8,167,6,16,107,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,105,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,167,6,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,236,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,218,34,18,215,34,10,212,34,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,161,6,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,102,99,52,102,102,26,19,8,161,6,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,161,6,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,157,33,10,6,112,111,105,110,116,115,18,146,33,18,143,33,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,151,64,26,19,8,161,6,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,109,64,26,19,8,161,6,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,151,64,26,19,8,161,6,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,111,64,26,19,8,161,6,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,151,64,26,19,8,161,6,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,114,64,26,19,8,161,6,16,14,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,115,64,26,19,8,161,6,16,17,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,151,64,26,19,8,161,6,16,16,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,15,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,150,64,26,19,8,161,6,16,19,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,115,64,26,19,8,161,6,16,20,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,18,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,150,64,26,19,8,161,6,16,22,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,117,64,26,19,8,161,6,16,23,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,21,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,118,64,26,19,8,161,6,16,26,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,149,64,26,19,8,161,6,16,25,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,24,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,149,64,26,19,8,161,6,16,28,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,118,64,26,19,8,161,6,16,29,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,27,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,149,64,26,19,8,161,6,16,31,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,118,64,26,19,8,161,6,16,32,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,30,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,149,64,26,19,8,161,6,16,34,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,118,64,26,19,8,161,6,16,35,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,33,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,148,64,26,19,8,161,6,16,37,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,117,64,26,19,8,161,6,16,38,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,36,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,148,64,26,19,8,161,6,16,40,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,117,64,26,19,8,161,6,16,41,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,39,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,148,64,26,19,8,161,6,16,43,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,116,64,26,19,8,161,6,16,44,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,42,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,148,64,26,19,8,161,6,16,46,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,116,64,26,19,8,161,6,16,47,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,45,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,148,64,26,19,8,161,6,16,49,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,64,26,19,8,161,6,16,50,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,48,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,113,64,26,19,8,161,6,16,53,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,148,64,26,19,8,161,6,16,52,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,51,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,148,64,26,19,8,161,6,16,55,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,112,64,26,19,8,161,6,16,56,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,54,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,148,64,26,19,8,161,6,16,58,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,112,64,26,19,8,161,6,16,59,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,57,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,149,64,26,19,8,161,6,16,61,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,112,64,26,19,8,161,6,16,62,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,60,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,149,64,26,19,8,161,6,16,64,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,112,64,26,19,8,161,6,16,65,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,63,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,151,64,26,19,8,161,6,16,67,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,121,64,26,19,8,161,6,16,68,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,66,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,152,64,26,19,8,161,6,16,70,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,122,64,26,19,8,161,6,16,71,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,69,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,152,64,26,19,8,161,6,16,73,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,122,64,26,19,8,161,6,16,74,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,72,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,153,64,26,19,8,161,6,16,76,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,120,64,26,19,8,161,6,16,77,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,75,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,152,64,26,19,8,161,6,16,79,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,112,64,26,19,8,161,6,16,80,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,78,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,152,64,26,19,8,161,6,16,82,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,115,64,26,19,8,161,6,16,83,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,81,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,118,64,26,19,8,161,6,16,86,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,151,64,26,19,8,161,6,16,85,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,84,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,150,64,26,19,8,161,6,16,88,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,120,64,26,19,8,161,6,16,89,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,87,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,150,64,26,19,8,161,6,16,91,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,122,64,26,19,8,161,6,16,92,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,90,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,149,64,26,19,8,161,6,16,94,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,122,64,26,19,8,161,6,16,95,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,93,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,148,64,26,19,8,161,6,16,97,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,119,64,26,19,8,161,6,16,98,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,96,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,148,64,26,19,8,161,6,16,100,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,117,64,26,19,8,161,6,16,101,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,99,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,148,64,26,19,8,161,6,16,103,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,116,64,26,19,8,161,6,16,104,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,102,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,149,64,26,19,8,161,6,16,106,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,115,64,26,19,8,161,6,16,107,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,105,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,152,64,26,19,8,161,6,16,109,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,120,64,26,19,8,161,6,16,110,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,108,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,153,64,26,19,8,161,6,16,112,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,123,64,26,19,8,161,6,16,113,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,111,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,124,64,26,19,8,161,6,16,116,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,153,64,26,19,8,161,6,16,115,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,114,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,155,64,26,19,8,161,6,16,118,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,126,64,26,19,8,161,6,16,119,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,117,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,161,6,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,236,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,148,6,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,102,99,52,102,102,26,19,8,148,6,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,148,6,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,102,64,26,19,8,148,6,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,147,64,26,19,8,148,6,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,96,99,64,26,19,8,148,6,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,96,97,64,26,19,8,148,6,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,148,6,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,147,64,26,19,8,148,6,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,102,64,26,19,8,148,6,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,148,6,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,148,6,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,148,6,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,102,64,26,19,8,147,6,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,147,64,26,19,8,147,6,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,96,99,64,26,19,8,147,6,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,96,97,64,26,19,8,147,6,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,147,6,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,147,64,26,19,8,147,6,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,102,64,26,19,8,147,6,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,147,6,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,147,6,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,147,6,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,102,99,52,102,102,26,19,8,147,6,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,147,6,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,147,6,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,129,6,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,102,99,52,102,102,26,19,8,129,6,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,129,6,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,147,64,26,19,8,129,6,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,96,99,64,26,19,8,129,6,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,96,97,64,26,19,8,129,6,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,102,64,26,19,8,129,6,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,129,6,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,147,64,26,19,8,129,6,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,102,64,26,19,8,129,6,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,129,6,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,129,6,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,129,6,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,142,4,18,139,4,10,136,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,102,64,26,19,8,128,6,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,147,64,26,19,8,128,6,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,96,99,64,26,19,8,128,6,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,96,97,64,26,19,8,128,6,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,128,6,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,147,64,26,19,8,128,6,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,102,64,26,19,8,128,6,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,128,6,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,128,6,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,128,6,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,102,99,52,102,102,26,19,8,128,6,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,128,6,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,128,6,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,254,96,18,251,96,10,248,96,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,234,5,16,4,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,193,95,10,6,112,111,105,110,116,115,18,182,95,18,179,95,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,149,64,26,19,8,234,5,16,7,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,234,5,16,8,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,6,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,149,64,26,19,8,234,5,16,10,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,109,64,26,19,8,234,5,16,11,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,9,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,149,64,26,19,8,234,5,16,13,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,111,64,26,19,8,234,5,16,14,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,12,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,148,64,26,19,8,234,5,16,16,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,113,64,26,19,8,234,5,16,17,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,15,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,148,64,26,19,8,234,5,16,19,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,114,64,26,19,8,234,5,16,20,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,18,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,148,64,26,19,8,234,5,16,22,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,115,64,26,19,8,234,5,16,23,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,21,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,147,64,26,19,8,234,5,16,25,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,115,64,26,19,8,234,5,16,26,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,24,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,147,64,26,19,8,234,5,16,28,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,114,64,26,19,8,234,5,16,29,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,27,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,64,26,19,8,234,5,16,32,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,147,64,26,19,8,234,5,16,31,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,30,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,147,64,26,19,8,234,5,16,34,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,112,64,26,19,8,234,5,16,35,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,33,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,147,64,26,19,8,234,5,16,37,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,111,64,26,19,8,234,5,16,38,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,36,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,110,64,26,19,8,234,5,16,41,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,147,64,26,19,8,234,5,16,40,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,39,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,147,64,26,19,8,234,5,16,43,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,110,64,26,19,8,234,5,16,44,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,42,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,147,64,26,19,8,234,5,16,46,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,110,64,26,19,8,234,5,16,47,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,45,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,148,64,26,19,8,234,5,16,49,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,111,64,26,19,8,234,5,16,50,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,48,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,112,64,26,19,8,234,5,16,53,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,148,64,26,19,8,234,5,16,52,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,51,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,150,64,26,19,8,234,5,16,55,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,116,64,26,19,8,234,5,16,56,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,54,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,150,64,26,19,8,234,5,16,58,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,117,64,26,19,8,234,5,16,59,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,57,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,150,64,26,19,8,234,5,16,61,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,117,64,26,19,8,234,5,16,62,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,60,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,151,64,26,19,8,234,5,16,64,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,118,64,26,19,8,234,5,16,65,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,63,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,151,64,26,19,8,234,5,16,67,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,117,64,26,19,8,234,5,16,68,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,66,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,151,64,26,19,8,234,5,16,70,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,117,64,26,19,8,234,5,16,71,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,69,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,234,5,16,74,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,152,64,26,19,8,234,5,16,73,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,72,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,152,64,26,19,8,234,5,16,76,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,113,64,26,19,8,234,5,16,77,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,75,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,152,64,26,19,8,234,5,16,79,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,112,64,26,19,8,234,5,16,80,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,78,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,152,64,26,19,8,234,5,16,82,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,112,64,26,19,8,234,5,16,83,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,81,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,151,64,26,19,8,234,5,16,85,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,111,64,26,19,8,234,5,16,86,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,84,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,151,64,26,19,8,234,5,16,88,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,110,64,26,19,8,234,5,16,89,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,87,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,151,64,26,19,8,234,5,16,91,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,109,64,26,19,8,234,5,16,92,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,90,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,150,64,26,19,8,234,5,16,94,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,112,64,26,19,8,234,5,16,95,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,93,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,150,64,26,19,8,234,5,16,97,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,114,64,26,19,8,234,5,16,98,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,96,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,149,64,26,19,8,234,5,16,100,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,117,64,26,19,8,234,5,16,101,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,99,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,149,64,26,19,8,234,5,16,103,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,118,64,26,19,8,234,5,16,104,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,102,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,119,64,26,19,8,234,5,16,107,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,148,64,26,19,8,234,5,16,106,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,105,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,119,64,26,19,8,234,5,16,110,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,148,64,26,19,8,234,5,16,109,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,108,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,147,64,26,19,8,234,5,16,112,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,119,64,26,19,8,234,5,16,113,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,111,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,147,64,26,19,8,234,5,16,115,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,118,64,26,19,8,234,5,16,116,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,114,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,147,64,26,19,8,234,5,16,118,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,118,64,26,19,8,234,5,16,119,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,117,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,147,64,26,19,8,234,5,16,121,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,117,64,26,19,8,234,5,16,122,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,120,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,116,64,26,19,8,234,5,16,125,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,147,64,26,19,8,234,5,16,124,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,123,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,147,64,26,19,8,234,5,16,127,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,115,64,26,20,8,234,5,16,128,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,126,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,147,64,26,20,8,234,5,16,130,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,115,64,26,20,8,234,5,16,131,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,129,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,148,64,26,20,8,234,5,16,133,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,115,64,26,20,8,234,5,16,134,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,132,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,148,64,26,20,8,234,5,16,136,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,116,64,26,20,8,234,5,16,137,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,135,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,148,64,26,20,8,234,5,16,139,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,117,64,26,20,8,234,5,16,140,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,138,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,149,64,26,20,8,234,5,16,142,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,120,64,26,20,8,234,5,16,143,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,141,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,220,149,64,26,20,8,234,5,16,145,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,121,64,26,20,8,234,5,16,146,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,144,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,150,64,26,20,8,234,5,16,148,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,122,64,26,20,8,234,5,16,149,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,147,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,150,64,26,20,8,234,5,16,151,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,122,64,26,20,8,234,5,16,152,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,150,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,151,64,26,20,8,234,5,16,154,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,121,64,26,20,8,234,5,16,155,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,153,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,151,64,26,20,8,234,5,16,157,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,120,64,26,20,8,234,5,16,158,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,156,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,151,64,26,20,8,234,5,16,160,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,118,64,26,20,8,234,5,16,161,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,159,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,116,64,26,20,8,234,5,16,164,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,151,64,26,20,8,234,5,16,163,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,162,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,151,64,26,20,8,234,5,16,166,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,115,64,26,20,8,234,5,16,167,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,165,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,150,64,26,20,8,234,5,16,169,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,114,64,26,20,8,234,5,16,170,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,168,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,150,64,26,20,8,234,5,16,172,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,114,64,26,20,8,234,5,16,173,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,171,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,150,64,26,20,8,234,5,16,175,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,114,64,26,20,8,234,5,16,176,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,174,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,4,149,64,26,20,8,234,5,16,178,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,119,64,26,20,8,234,5,16,179,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,177,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,148,64,26,20,8,234,5,16,181,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,120,64,26,20,8,234,5,16,182,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,180,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,148,64,26,20,8,234,5,16,184,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,121,64,26,20,8,234,5,16,185,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,183,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,147,64,26,20,8,234,5,16,187,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,121,64,26,20,8,234,5,16,188,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,186,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,121,64,26,20,8,234,5,16,191,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,147,64,26,20,8,234,5,16,190,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,189,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,147,64,26,20,8,234,5,16,193,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,120,64,26,20,8,234,5,16,194,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,192,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,147,64,26,20,8,234,5,16,196,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,119,64,26,20,8,234,5,16,197,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,195,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,147,64,26,20,8,234,5,16,199,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,118,64,26,20,8,234,5,16,200,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,198,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,147,64,26,20,8,234,5,16,202,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,117,64,26,20,8,234,5,16,203,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,201,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,147,64,26,20,8,234,5,16,205,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,116,64,26,20,8,234,5,16,206,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,204,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,147,64,26,20,8,234,5,16,208,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,116,64,26,20,8,234,5,16,209,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,207,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,148,64,26,20,8,234,5,16,211,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,116,64,26,20,8,234,5,16,212,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,210,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,149,64,26,20,8,234,5,16,214,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,118,64,26,20,8,234,5,16,215,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,213,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,149,64,26,20,8,234,5,16,217,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,120,64,26,20,8,234,5,16,218,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,216,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,149,64,26,20,8,234,5,16,220,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,121,64,26,20,8,234,5,16,221,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,219,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,150,64,26,20,8,234,5,16,223,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,122,64,26,20,8,234,5,16,224,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,222,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,122,64,26,20,8,234,5,16,227,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,150,64,26,20,8,234,5,16,226,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,225,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,150,64,26,20,8,234,5,16,229,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,122,64,26,20,8,234,5,16,230,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,228,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,151,64,26,20,8,234,5,16,232,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,122,64,26,20,8,234,5,16,233,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,231,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,151,64,26,20,8,234,5,16,235,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,120,64,26,20,8,234,5,16,236,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,234,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,151,64,26,20,8,234,5,16,238,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,119,64,26,20,8,234,5,16,239,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,237,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,151,64,26,20,8,234,5,16,241,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,118,64,26,20,8,234,5,16,242,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,240,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,151,64,26,20,8,234,5,16,244,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,117,64,26,20,8,234,5,16,245,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,243,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,151,64,26,20,8,234,5,16,247,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,116,64,26,20,8,234,5,16,248,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,246,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,115,64,26,20,8,234,5,16,251,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,150,64,26,20,8,234,5,16,250,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,249,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,150,64,26,20,8,234,5,16,253,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,115,64,26,20,8,234,5,16,254,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,252,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,115,64,26,20,8,234,5,16,129,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,150,64,26,20,8,234,5,16,128,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,255,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,150,64,26,20,8,234,5,16,131,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,115,64,26,20,8,234,5,16,132,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,130,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,150,64,26,20,8,234,5,16,134,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,115,64,26,20,8,234,5,16,135,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,133,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,149,64,26,20,8,234,5,16,137,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,119,64,26,20,8,234,5,16,138,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,136,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,148,64,26,20,8,234,5,16,140,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,120,64,26,20,8,234,5,16,141,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,139,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,148,64,26,20,8,234,5,16,143,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,121,64,26,20,8,234,5,16,144,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,142,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,148,64,26,20,8,234,5,16,146,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,121,64,26,20,8,234,5,16,147,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,145,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,147,64,26,20,8,234,5,16,149,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,121,64,26,20,8,234,5,16,150,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,148,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,147,64,26,20,8,234,5,16,152,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,120,64,26,20,8,234,5,16,153,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,151,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,147,64,26,20,8,234,5,16,155,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,118,64,26,20,8,234,5,16,156,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,154,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,147,64,26,20,8,234,5,16,158,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,117,64,26,20,8,234,5,16,159,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,157,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,117,64,26,20,8,234,5,16,162,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,147,64,26,20,8,234,5,16,161,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,160,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,116,64,26,20,8,234,5,16,165,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,147,64,26,20,8,234,5,16,164,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,163,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,20,148,64,26,20,8,234,5,16,167,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,116,64,26,20,8,234,5,16,168,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,166,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,148,64,26,20,8,234,5,16,170,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,116,64,26,20,8,234,5,16,171,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,169,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,148,64,26,20,8,234,5,16,173,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,118,64,26,20,8,234,5,16,174,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,172,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,148,64,26,20,8,234,5,16,176,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,118,64,26,20,8,234,5,16,177,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,175,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,149,64,26,20,8,234,5,16,179,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,121,64,26,20,8,234,5,16,180,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,178,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,149,64,26,20,8,234,5,16,182,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,122,64,26,20,8,234,5,16,183,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,181,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,150,64,26,20,8,234,5,16,185,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,123,64,26,20,8,234,5,16,186,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,184,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,150,64,26,20,8,234,5,16,188,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,123,64,26,20,8,234,5,16,189,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,187,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,151,64,26,20,8,234,5,16,191,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,123,64,26,20,8,234,5,16,192,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,190,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,151,64,26,20,8,234,5,16,194,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,122,64,26,20,8,234,5,16,195,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,193,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,151,64,26,20,8,234,5,16,197,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,122,64,26,20,8,234,5,16,198,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,196,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,151,64,26,20,8,234,5,16,200,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,121,64,26,20,8,234,5,16,201,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,20,8,234,5,16,199,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,5,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,234,5,16,2,26,12,98,255,30,132,217,176,234,142,137,49,86,22,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,102,99,52,102,102,26,19,8,234,5,16,3,26,12,98,255,30,132,217,176,234,142,137,49,86,22,18,19,8,234,5,16,1,26,12,98,255,30,132,217,176,234,142,137,49,86,22,34,19,8,138,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,192,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,192,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,192,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,64,26,19,8,192,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,151,64,26,19,8,192,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,96,108,64,26,19,8,192,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,68,64,26,19,8,192,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,192,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,154,64,26,19,8,192,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,64,26,19,8,192,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,192,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,192,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,192,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,251,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,193,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,193,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,193,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,64,26,19,8,193,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,151,64,26,19,8,193,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,96,108,64,26,19,8,193,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,68,64,26,19,8,193,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,193,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,154,64,26,19,8,193,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,64,26,19,8,193,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,193,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,193,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,193,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,251,4,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,194,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,194,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,194,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,64,26,19,8,194,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,151,64,26,19,8,194,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,96,108,64,26,19,8,194,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,68,64,26,19,8,194,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,194,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,154,64,26,19,8,194,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,64,26,19,8,194,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,194,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,194,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,194,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,251,4,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,163,4,18,160,4,10,157,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,154,64,26,19,8,219,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,64,26,19,8,219,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,219,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,219,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,219,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,219,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,219,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,96,108,64,26,19,8,219,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,68,64,26,19,8,219,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,64,26,19,8,219,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,151,64,26,19,8,219,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,219,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,219,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,251,4,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,137,31,18,134,31,10,131,31,10,225,29,10,6,112,111,105,110,116,115,18,214,29,18,211,29,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,71,135,64,26,19,8,253,6,16,8,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,106,100,64,26,19,8,253,6,16,7,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,6,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,106,110,64,26,19,8,253,6,16,10,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,85,135,64,26,19,8,253,6,16,11,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,9,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,170,112,64,26,19,8,253,6,16,13,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,138,135,64,26,19,8,253,6,16,14,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,12,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,154,113,64,26,19,8,253,6,16,16,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,205,135,64,26,19,8,253,6,16,17,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,15,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,79,116,64,26,19,8,253,6,16,19,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,191,135,64,26,19,8,253,6,16,20,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,18,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,170,117,64,26,19,8,253,6,16,22,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,181,134,64,26,19,8,253,6,16,23,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,21,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,118,64,26,19,8,253,6,16,25,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,127,134,64,26,19,8,253,6,16,26,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,24,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,127,118,64,26,19,8,253,6,16,28,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,101,134,64,26,19,8,253,6,16,29,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,27,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,85,119,64,26,19,8,253,6,16,31,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,87,134,64,26,19,8,253,6,16,32,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,30,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,119,64,26,19,8,253,6,16,34,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,101,134,64,26,19,8,253,6,16,35,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,33,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,141,134,64,26,19,8,253,6,16,38,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,149,120,64,26,19,8,253,6,16,37,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,36,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,123,64,26,19,8,253,6,16,40,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,138,135,64,26,19,8,253,6,16,41,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,39,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,165,135,64,26,19,8,253,6,16,44,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,154,123,64,26,19,8,253,6,16,43,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,42,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,117,128,64,26,19,8,253,6,16,46,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,101,134,64,26,19,8,253,6,16,47,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,45,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,7,129,64,26,19,8,253,6,16,49,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,101,134,64,26,19,8,253,6,16,50,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,48,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,5,135,64,26,19,8,253,6,16,53,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,154,129,64,26,19,8,253,6,16,52,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,51,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,98,130,64,26,19,8,253,6,16,55,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,5,135,64,26,19,8,253,6,16,56,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,54,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,223,133,64,26,19,8,253,6,16,58,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,125,135,64,26,19,8,253,6,16,59,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,57,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,31,135,64,26,19,8,253,6,16,61,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,138,135,64,26,19,8,253,6,16,62,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,60,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,98,135,64,26,19,8,253,6,16,64,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,125,135,64,26,19,8,253,6,16,65,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,63,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,165,135,64,26,19,8,253,6,16,67,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,71,135,64,26,19,8,253,6,16,68,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,66,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,15,136,64,26,19,8,253,6,16,70,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,207,134,64,26,19,8,253,6,16,71,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,69,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,82,136,64,26,19,8,253,6,16,73,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,61,134,64,26,19,8,253,6,16,74,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,72,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,61,134,64,26,19,8,253,6,16,77,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,109,136,64,26,19,8,253,6,16,76,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,75,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,18,135,64,26,19,8,253,6,16,80,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,79,137,64,26,19,8,253,6,16,79,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,78,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,159,137,64,26,19,8,253,6,16,82,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,71,135,64,26,19,8,253,6,16,83,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,81,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,137,64,26,19,8,253,6,16,85,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,71,135,64,26,19,8,253,6,16,86,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,84,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,117,138,64,26,19,8,253,6,16,88,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,114,134,64,26,19,8,253,6,16,89,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,87,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,237,138,64,26,19,8,253,6,16,91,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,61,134,64,26,19,8,253,6,16,92,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,90,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,207,139,64,26,19,8,253,6,16,94,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,74,134,64,26,19,8,253,6,16,95,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,93,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,71,140,64,26,19,8,253,6,16,97,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,114,134,64,26,19,8,253,6,16,98,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,96,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,178,140,64,26,19,8,253,6,16,100,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,114,134,64,26,19,8,253,6,16,101,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,99,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,82,141,64,26,19,8,253,6,16,103,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,47,134,64,26,19,8,253,6,16,104,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,102,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,74,134,64,26,19,8,253,6,16,107,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,39,142,64,26,19,8,253,6,16,106,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,105,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,5,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,253,6,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,53,48,53,101,102,26,19,8,253,6,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,253,6,16,4,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,253,6,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,216,8,18,213,8,10,210,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,165,5,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,48,98,50,101,26,19,8,165,5,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,165,5,16,4,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,98,64,26,19,8,165,5,16,7,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,122,64,26,19,8,165,5,16,8,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,165,5,16,6,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,98,64,26,19,8,165,5,16,10,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,119,64,26,19,8,165,5,16,11,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,165,5,16,9,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,100,64,26,19,8,165,5,16,13,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,116,64,26,19,8,165,5,16,14,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,165,5,16,12,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,101,64,26,19,8,165,5,16,16,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,116,64,26,19,8,165,5,16,17,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,165,5,16,15,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,106,64,26,19,8,165,5,16,19,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,117,64,26,19,8,165,5,16,20,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,165,5,16,18,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,119,64,26,19,8,165,5,16,23,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,106,64,26,19,8,165,5,16,22,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,165,5,16,21,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,106,64,26,19,8,165,5,16,25,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,165,5,16,26,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,165,5,16,24,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,104,64,26,19,8,165,5,16,28,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,120,64,26,19,8,165,5,16,29,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,165,5,16,27,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,165,5,16,5,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,165,5,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,34,19,8,175,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,191,16,18,188,16,10,185,16,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,160,5,16,4,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,130,15,10,6,112,111,105,110,116,115,18,247,14,18,244,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,160,5,16,7,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,112,64,26,19,8,160,5,16,8,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,6,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,114,64,26,19,8,160,5,16,10,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,111,64,26,19,8,160,5,16,11,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,9,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,114,64,26,19,8,160,5,16,13,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,111,64,26,19,8,160,5,16,14,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,12,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,114,64,26,19,8,160,5,16,16,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,112,64,26,19,8,160,5,16,17,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,15,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,111,64,26,19,8,160,5,16,20,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,115,64,26,19,8,160,5,16,19,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,18,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,115,64,26,19,8,160,5,16,22,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,111,64,26,19,8,160,5,16,23,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,21,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,116,64,26,19,8,160,5,16,25,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,110,64,26,19,8,160,5,16,26,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,24,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,115,64,26,19,8,160,5,16,28,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,112,64,26,19,8,160,5,16,29,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,27,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,115,64,26,19,8,160,5,16,31,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,112,64,26,19,8,160,5,16,32,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,30,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,117,64,26,19,8,160,5,16,34,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,112,64,26,19,8,160,5,16,35,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,33,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,116,64,26,19,8,160,5,16,37,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,111,64,26,19,8,160,5,16,38,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,36,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,116,64,26,19,8,160,5,16,40,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,113,64,26,19,8,160,5,16,41,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,39,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,113,64,26,19,8,160,5,16,44,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,115,64,26,19,8,160,5,16,43,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,42,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,116,64,26,19,8,160,5,16,46,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,160,5,16,47,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,45,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,116,64,26,19,8,160,5,16,49,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,113,64,26,19,8,160,5,16,50,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,48,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,115,64,26,19,8,160,5,16,52,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,114,64,26,19,8,160,5,16,53,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,51,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,160,5,16,55,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,113,64,26,19,8,160,5,16,56,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,54,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,5,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,160,5,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,48,48,48,48,26,19,8,160,5,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,18,19,8,160,5,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,34,19,8,161,5,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,225,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,225,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,225,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,150,64,26,19,8,225,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,67,64,26,19,8,225,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,150,64,26,19,8,225,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,67,64,26,19,8,225,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,151,64,26,19,8,225,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,61,64,26,19,8,225,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,65,64,26,19,8,225,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,151,64,26,19,8,225,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,151,64,26,19,8,225,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,97,64,26,19,8,225,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,252,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,242,13,18,239,13,10,236,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,237,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,237,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,237,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,156,64,26,19,8,237,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,64,64,26,19,8,237,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,155,64,26,19,8,237,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,50,64,26,19,8,237,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,16,64,26,19,8,237,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,154,64,26,19,8,237,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,237,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,153,64,26,19,8,237,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,152,64,26,19,8,237,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,237,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,152,64,26,19,8,237,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,16,64,26,19,8,237,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,151,64,26,19,8,237,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,16,64,26,19,8,237,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,151,64,26,19,8,237,4,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,24,64,26,19,8,237,4,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,151,64,26,19,8,237,4,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,85,64,26,19,8,237,4,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,153,64,26,19,8,237,4,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,88,64,26,19,8,237,4,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,155,64,26,19,8,237,4,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,90,64,26,19,8,237,4,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,156,64,26,19,8,237,4,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,91,64,26,19,8,237,4,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,156,64,26,19,8,237,4,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,91,64,26,19,8,237,4,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,156,64,26,19,8,237,4,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,90,64,26,19,8,237,4,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,248,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,140,19,18,137,19,10,134,19,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,249,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,249,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,249,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,207,17,10,6,112,111,105,110,116,115,18,196,17,18,193,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,155,64,26,19,8,249,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,249,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,154,64,26,19,8,249,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,108,64,26,19,8,249,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,153,64,26,19,8,249,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,249,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,109,64,26,19,8,249,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,150,64,26,19,8,249,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,150,64,26,19,8,249,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,109,64,26,19,8,249,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,150,64,26,19,8,249,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,112,64,26,19,8,249,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,150,64,26,19,8,249,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,249,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,150,64,26,19,8,249,4,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,114,64,26,19,8,249,4,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,156,64,26,19,8,249,4,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,114,64,26,19,8,249,4,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,157,64,26,19,8,249,4,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,114,64,26,19,8,249,4,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,158,64,26,19,8,249,4,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,113,64,26,19,8,249,4,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,157,64,26,19,8,249,4,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,249,4,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,157,64,26,19,8,249,4,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,249,4,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,157,64,26,19,8,249,4,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,113,64,26,19,8,249,4,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,156,64,26,19,8,249,4,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,113,64,26,19,8,249,4,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,156,64,26,19,8,249,4,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,112,64,26,19,8,249,4,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,105,64,26,19,8,249,4,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,156,64,26,19,8,249,4,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,156,64,26,19,8,249,4,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,107,64,26,19,8,249,4,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,155,64,26,19,8,249,4,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,109,64,26,19,8,249,4,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,155,64,26,19,8,249,4,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,109,64,26,19,8,249,4,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,250,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,242,13,18,239,13,10,236,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,253,4,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,253,4,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,253,4,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,149,64,26,19,8,253,4,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,121,64,26,19,8,253,4,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,153,64,26,19,8,253,4,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,119,64,26,19,8,253,4,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,153,64,26,19,8,253,4,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,125,64,26,19,8,253,4,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,153,64,26,19,8,253,4,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,125,64,26,19,8,253,4,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,152,64,26,19,8,253,4,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,124,64,26,19,8,253,4,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,151,64,26,19,8,253,4,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,124,64,26,19,8,253,4,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,150,64,26,19,8,253,4,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,125,64,26,19,8,253,4,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,149,64,26,19,8,253,4,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,125,64,26,19,8,253,4,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,149,64,26,19,8,253,4,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,125,64,26,19,8,253,4,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,149,64,26,19,8,253,4,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,124,64,26,19,8,253,4,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,121,64,26,19,8,253,4,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,149,64,26,19,8,253,4,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,149,64,26,19,8,253,4,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,121,64,26,19,8,253,4,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,149,64,26,19,8,253,4,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,121,64,26,19,8,253,4,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,149,64,26,19,8,253,4,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,121,64,26,19,8,253,4,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,253,4,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,254,4,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,149,25,18,146,25,10,143,25,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,176,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,176,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,176,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,216,23,10,6,112,111,105,110,116,115,18,205,23,18,202,23,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,147,64,26,19,8,176,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,99,64,26,19,8,176,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,147,64,26,19,8,176,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,99,64,26,19,8,176,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,146,64,26,19,8,176,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,99,64,26,19,8,176,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,97,64,26,19,8,176,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,143,64,26,19,8,176,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,143,64,26,19,8,176,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,103,64,26,19,8,176,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,143,64,26,19,8,176,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,114,64,26,19,8,176,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,143,64,26,19,8,176,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,118,64,26,19,8,176,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,145,64,26,19,8,176,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,118,64,26,19,8,176,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,147,64,26,19,8,176,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,118,64,26,19,8,176,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,146,64,26,19,8,176,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,115,64,26,19,8,176,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,146,64,26,19,8,176,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,114,64,26,19,8,176,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,144,64,26,19,8,176,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,114,64,26,19,8,176,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,144,64,26,19,8,176,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,115,64,26,19,8,176,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,144,64,26,19,8,176,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,115,64,26,19,8,176,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,144,64,26,19,8,176,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,115,64,26,19,8,176,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,145,64,26,19,8,176,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,115,64,26,19,8,176,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,145,64,26,19,8,176,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,112,64,26,19,8,176,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,145,64,26,19,8,176,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,108,64,26,19,8,176,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,145,64,26,19,8,176,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,107,64,26,19,8,176,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,145,64,26,19,8,176,5,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,107,64,26,19,8,176,5,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,145,64,26,19,8,176,5,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,107,64,26,19,8,176,5,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,146,64,26,19,8,176,5,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,106,64,26,19,8,176,5,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,146,64,26,19,8,176,5,16,73,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,112,64,26,19,8,176,5,16,74,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,72,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,146,64,26,19,8,176,5,16,76,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,112,64,26,19,8,176,5,16,77,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,75,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,147,64,26,19,8,176,5,16,79,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,113,64,26,19,8,176,5,16,80,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,78,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,113,64,26,19,8,176,5,16,83,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,148,64,26,19,8,176,5,16,82,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,81,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,147,64,26,19,8,176,5,16,85,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,108,64,26,19,8,176,5,16,86,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,84,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,176,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,193,5,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,181,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,181,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,181,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,130,64,26,19,8,181,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,56,64,26,19,8,181,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,181,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,134,64,26,19,8,181,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,56,64,26,19,8,181,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,181,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,139,64,26,19,8,181,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,51,64,26,19,8,181,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,181,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,141,64,26,19,8,181,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,51,64,26,19,8,181,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,181,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,142,64,26,19,8,181,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,99,64,26,19,8,181,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,181,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,181,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,181,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,195,5,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,200,22,18,197,22,10,194,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,182,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,182,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,182,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,139,21,10,6,112,111,105,110,116,115,18,128,21,18,253,20,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,97,64,26,19,8,182,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,139,64,26,19,8,182,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,137,64,26,19,8,182,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,96,64,26,19,8,182,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,135,64,26,19,8,182,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,182,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,131,64,26,19,8,182,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,64,26,19,8,182,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,126,64,26,19,8,182,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,93,64,26,19,8,182,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,127,64,26,19,8,182,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,106,64,26,19,8,182,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,131,64,26,19,8,182,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,105,64,26,19,8,182,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,103,64,26,19,8,182,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,140,64,26,19,8,182,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,140,64,26,19,8,182,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,107,64,26,19,8,182,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,140,64,26,19,8,182,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,182,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,139,64,26,19,8,182,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,108,64,26,19,8,182,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,137,64,26,19,8,182,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,108,64,26,19,8,182,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,108,64,26,19,8,182,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,135,64,26,19,8,182,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,133,64,26,19,8,182,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,110,64,26,19,8,182,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,133,64,26,19,8,182,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,110,64,26,19,8,182,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,133,64,26,19,8,182,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,112,64,26,19,8,182,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,133,64,26,19,8,182,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,115,64,26,19,8,182,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,132,64,26,19,8,182,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,118,64,26,19,8,182,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,132,64,26,19,8,182,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,119,64,26,19,8,182,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,133,64,26,19,8,182,5,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,118,64,26,19,8,182,5,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,135,64,26,19,8,182,5,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,117,64,26,19,8,182,5,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,138,64,26,19,8,182,5,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,182,5,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,182,5,16,74,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,143,64,26,19,8,182,5,16,73,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,72,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,112,64,26,19,8,182,5,16,77,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,145,64,26,19,8,182,5,16,76,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,75,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,182,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,194,5,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,183,23,18,180,23,10,177,23,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,183,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,183,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,250,21,10,6,112,111,105,110,116,115,18,239,21,18,236,21,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,146,64,26,19,8,183,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,69,64,26,19,8,183,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,153,64,26,19,8,183,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,69,64,26,19,8,183,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,158,64,26,19,8,183,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,56,64,26,19,8,183,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,68,64,26,19,8,183,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,158,64,26,19,8,183,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,158,64,26,19,8,183,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,86,64,26,19,8,183,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,157,64,26,19,8,183,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,101,64,26,19,8,183,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,157,64,26,19,8,183,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,101,64,26,19,8,183,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,154,64,26,19,8,183,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,99,64,26,19,8,183,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,150,64,26,19,8,183,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,98,64,26,19,8,183,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,149,64,26,19,8,183,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,98,64,26,19,8,183,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,99,64,26,19,8,183,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,149,64,26,19,8,183,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,149,64,26,19,8,183,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,110,64,26,19,8,183,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,149,64,26,19,8,183,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,112,64,26,19,8,183,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,149,64,26,19,8,183,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,112,64,26,19,8,183,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,150,64,26,19,8,183,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,110,64,26,19,8,183,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,152,64,26,19,8,183,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,106,64,26,19,8,183,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,153,64,26,19,8,183,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,103,64,26,19,8,183,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,154,64,26,19,8,183,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,102,64,26,19,8,183,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,154,64,26,19,8,183,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,105,64,26,19,8,183,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,154,64,26,19,8,183,5,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,110,64,26,19,8,183,5,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,119,64,26,19,8,183,5,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,154,64,26,19,8,183,5,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,153,64,26,19,8,183,5,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,118,64,26,19,8,183,5,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,152,64,26,19,8,183,5,16,73,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,116,64,26,19,8,183,5,16,74,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,72,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,151,64,26,19,8,183,5,16,76,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,114,64,26,19,8,183,5,16,77,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,75,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,149,64,26,19,8,183,5,16,79,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,113,64,26,19,8,183,5,16,80,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,78,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,183,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,183,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,192,5,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,234,20,18,231,20,10,228,20,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,184,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,184,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,173,19,10,6,112,111,105,110,116,115,18,162,19,18,159,19,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,150,64,26,19,8,184,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,124,64,26,19,8,184,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,149,64,26,19,8,184,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,123,64,26,19,8,184,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,148,64,26,19,8,184,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,123,64,26,19,8,184,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,146,64,26,19,8,184,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,122,64,26,19,8,184,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,124,64,26,19,8,184,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,146,64,26,19,8,184,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,146,64,26,19,8,184,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,126,64,26,19,8,184,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,146,64,26,19,8,184,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,126,64,26,19,8,184,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,146,64,26,19,8,184,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,127,64,26,19,8,184,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,147,64,26,19,8,184,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,127,64,26,19,8,184,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,147,64,26,19,8,184,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,127,64,26,19,8,184,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,148,64,26,19,8,184,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,127,64,26,19,8,184,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,151,64,26,19,8,184,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,123,64,26,19,8,184,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,152,64,26,19,8,184,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,122,64,26,19,8,184,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,153,64,26,19,8,184,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,123,64,26,19,8,184,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,153,64,26,19,8,184,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,125,64,26,19,8,184,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,127,64,26,19,8,184,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,153,64,26,19,8,184,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,153,64,26,19,8,184,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,128,64,26,19,8,184,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,128,64,26,19,8,184,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,152,64,26,19,8,184,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,152,64,26,19,8,184,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,129,64,26,19,8,184,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,151,64,26,19,8,184,5,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,129,64,26,19,8,184,5,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,129,64,26,19,8,184,5,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,151,64,26,19,8,184,5,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,128,64,26,19,8,184,5,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,151,64,26,19,8,184,5,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,184,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,184,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,197,5,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,190,3,18,187,3,10,184,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,151,64,26,19,8,185,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,127,64,26,19,8,185,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,185,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,151,64,26,19,8,185,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,126,64,26,19,8,185,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,185,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,185,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,185,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,185,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,185,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,185,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,202,5,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,168,37,18,165,37,10,162,37,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,187,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,187,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,187,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,235,35,10,6,112,111,105,110,116,115,18,224,35,18,221,35,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,142,64,26,19,8,187,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,122,64,26,19,8,187,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,141,64,26,19,8,187,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,121,64,26,19,8,187,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,139,64,26,19,8,187,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,119,64,26,19,8,187,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,137,64,26,19,8,187,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,118,64,26,19,8,187,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,118,64,26,19,8,187,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,136,64,26,19,8,187,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,136,64,26,19,8,187,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,119,64,26,19,8,187,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,136,64,26,19,8,187,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,120,64,26,19,8,187,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,135,64,26,19,8,187,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,121,64,26,19,8,187,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,136,64,26,19,8,187,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,121,64,26,19,8,187,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,136,64,26,19,8,187,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,122,64,26,19,8,187,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,136,64,26,19,8,187,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,123,64,26,19,8,187,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,135,64,26,19,8,187,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,187,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,134,64,26,19,8,187,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,187,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,123,64,26,19,8,187,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,132,64,26,19,8,187,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,130,64,26,19,8,187,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,122,64,26,19,8,187,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,129,64,26,19,8,187,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,120,64,26,19,8,187,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,128,64,26,19,8,187,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,120,64,26,19,8,187,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,187,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,119,64,26,19,8,187,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,128,64,26,19,8,187,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,119,64,26,19,8,187,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,127,64,26,19,8,187,5,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,119,64,26,19,8,187,5,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,119,64,26,19,8,187,5,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,127,64,26,19,8,187,5,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,126,64,26,19,8,187,5,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,120,64,26,19,8,187,5,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,120,64,26,19,8,187,5,16,74,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,126,64,26,19,8,187,5,16,73,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,72,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,126,64,26,19,8,187,5,16,76,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,122,64,26,19,8,187,5,16,77,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,75,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,127,64,26,19,8,187,5,16,79,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,124,64,26,19,8,187,5,16,80,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,78,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,128,64,26,19,8,187,5,16,82,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,125,64,26,19,8,187,5,16,83,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,81,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,128,64,26,19,8,187,5,16,85,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,125,64,26,19,8,187,5,16,86,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,84,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,128,64,26,19,8,187,5,16,88,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,125,64,26,19,8,187,5,16,89,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,87,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,129,64,26,19,8,187,5,16,91,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,125,64,26,19,8,187,5,16,92,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,90,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,130,64,26,19,8,187,5,16,94,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,125,64,26,19,8,187,5,16,95,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,93,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,134,64,26,19,8,187,5,16,97,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,122,64,26,19,8,187,5,16,98,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,96,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,135,64,26,19,8,187,5,16,100,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,126,64,26,19,8,187,5,16,101,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,99,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,135,64,26,19,8,187,5,16,103,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,128,64,26,19,8,187,5,16,104,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,102,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,136,64,26,19,8,187,5,16,106,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,128,64,26,19,8,187,5,16,107,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,105,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,136,64,26,19,8,187,5,16,109,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,128,64,26,19,8,187,5,16,110,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,108,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,138,64,26,19,8,187,5,16,112,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,125,64,26,19,8,187,5,16,113,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,111,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,139,64,26,19,8,187,5,16,115,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,127,64,26,19,8,187,5,16,116,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,114,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,139,64,26,19,8,187,5,16,118,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,128,64,26,19,8,187,5,16,119,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,117,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,140,64,26,19,8,187,5,16,121,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,128,64,26,19,8,187,5,16,122,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,120,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,140,64,26,19,8,187,5,16,124,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,128,64,26,19,8,187,5,16,125,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,123,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,142,64,26,19,8,187,5,16,127,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,123,64,26,20,8,187,5,16,128,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,126,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,187,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,196,5,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,149,25,18,146,25,10,143,25,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,188,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,188,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,216,23,10,6,112,111,105,110,116,115,18,205,23,18,202,23,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,150,64,26,19,8,188,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,65,192,26,19,8,188,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,149,64,26,19,8,188,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,64,192,26,19,8,188,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,146,64,26,19,8,188,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,71,192,26,19,8,188,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,144,64,26,19,8,188,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,72,192,26,19,8,188,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,142,64,26,19,8,188,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,75,192,26,19,8,188,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,138,64,26,19,8,188,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,75,192,26,19,8,188,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,138,64,26,19,8,188,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,73,192,26,19,8,188,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,137,64,26,19,8,188,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,67,192,26,19,8,188,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,137,64,26,19,8,188,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,63,192,26,19,8,188,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,56,192,26,19,8,188,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,137,64,26,19,8,188,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,137,64,26,19,8,188,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,49,192,26,19,8,188,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,137,64,26,19,8,188,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,28,192,26,19,8,188,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,138,64,26,19,8,188,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,64,26,19,8,188,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,28,64,26,19,8,188,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,140,64,26,19,8,188,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,141,64,26,19,8,188,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,28,64,26,19,8,188,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,142,64,26,19,8,188,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,63,26,19,8,188,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,144,64,26,19,8,188,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,51,192,26,19,8,188,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,145,64,26,19,8,188,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,61,192,26,19,8,188,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,192,26,19,8,188,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,145,64,26,19,8,188,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,145,64,26,19,8,188,5,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,28,192,26,19,8,188,5,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,145,64,26,19,8,188,5,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,58,64,26,19,8,188,5,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,145,64,26,19,8,188,5,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,75,64,26,19,8,188,5,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,145,64,26,19,8,188,5,16,73,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,83,64,26,19,8,188,5,16,74,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,72,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,145,64,26,19,8,188,5,16,76,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,84,64,26,19,8,188,5,16,77,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,75,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,145,64,26,19,8,188,5,16,79,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,84,64,26,19,8,188,5,16,80,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,78,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,145,64,26,19,8,188,5,16,82,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,69,64,26,19,8,188,5,16,83,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,81,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,146,64,26,19,8,188,5,16,85,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,63,26,19,8,188,5,16,86,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,84,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,188,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,188,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,191,5,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,128,48,18,253,47,10,250,47,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,189,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,189,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,189,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,195,46,10,6,112,111,105,110,116,115,18,184,46,18,181,46,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,157,64,26,19,8,189,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,131,64,26,19,8,189,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,156,64,26,19,8,189,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,129,64,26,19,8,189,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,156,64,26,19,8,189,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,128,64,26,19,8,189,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,156,64,26,19,8,189,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,124,64,26,19,8,189,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,155,64,26,19,8,189,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,121,64,26,19,8,189,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,155,64,26,19,8,189,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,120,64,26,19,8,189,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,156,64,26,19,8,189,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,118,64,26,19,8,189,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,156,64,26,19,8,189,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,189,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,156,64,26,19,8,189,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,116,64,26,19,8,189,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,156,64,26,19,8,189,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,116,64,26,19,8,189,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,116,64,26,19,8,189,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,156,64,26,19,8,189,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,157,64,26,19,8,189,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,117,64,26,19,8,189,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,157,64,26,19,8,189,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,118,64,26,19,8,189,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,157,64,26,19,8,189,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,121,64,26,19,8,189,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,157,64,26,19,8,189,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,123,64,26,19,8,189,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,157,64,26,19,8,189,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,126,64,26,19,8,189,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,157,64,26,19,8,189,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,127,64,26,19,8,189,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,157,64,26,19,8,189,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,128,64,26,19,8,189,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,157,64,26,19,8,189,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,128,64,26,19,8,189,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,128,64,26,19,8,189,5,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,157,64,26,19,8,189,5,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,157,64,26,19,8,189,5,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,127,64,26,19,8,189,5,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,157,64,26,19,8,189,5,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,189,5,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,157,64,26,19,8,189,5,16,73,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,127,64,26,19,8,189,5,16,74,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,72,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,158,64,26,19,8,189,5,16,76,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,127,64,26,19,8,189,5,16,77,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,75,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,127,64,26,19,8,189,5,16,80,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,158,64,26,19,8,189,5,16,79,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,78,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,158,64,26,19,8,189,5,16,82,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,189,5,16,83,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,81,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,158,64,26,19,8,189,5,16,85,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,128,64,26,19,8,189,5,16,86,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,84,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,129,64,26,19,8,189,5,16,89,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,158,64,26,19,8,189,5,16,88,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,87,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,158,64,26,19,8,189,5,16,91,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,129,64,26,19,8,189,5,16,92,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,90,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,157,64,26,19,8,189,5,16,94,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,130,64,26,19,8,189,5,16,95,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,93,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,156,64,26,19,8,189,5,16,97,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,130,64,26,19,8,189,5,16,98,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,96,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,155,64,26,19,8,189,5,16,100,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,131,64,26,19,8,189,5,16,101,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,99,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,155,64,26,19,8,189,5,16,103,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,131,64,26,19,8,189,5,16,104,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,102,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,154,64,26,19,8,189,5,16,106,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,131,64,26,19,8,189,5,16,107,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,105,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,154,64,26,19,8,189,5,16,109,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,130,64,26,19,8,189,5,16,110,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,108,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,154,64,26,19,8,189,5,16,112,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,130,64,26,19,8,189,5,16,113,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,111,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,154,64,26,19,8,189,5,16,115,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,130,64,26,19,8,189,5,16,116,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,114,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,154,64,26,19,8,189,5,16,118,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,129,64,26,19,8,189,5,16,119,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,117,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,154,64,26,19,8,189,5,16,121,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,128,64,26,19,8,189,5,16,122,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,120,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,154,64,26,19,8,189,5,16,124,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,126,64,26,19,8,189,5,16,125,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,123,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,110,18,108,10,106,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,124,64,26,20,8,189,5,16,128,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,155,64,26,19,8,189,5,16,127,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,126,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,155,64,26,20,8,189,5,16,130,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,122,64,26,20,8,189,5,16,131,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,189,5,16,129,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,155,64,26,20,8,189,5,16,133,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,123,64,26,20,8,189,5,16,134,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,189,5,16,132,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,220,155,64,26,20,8,189,5,16,136,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,124,64,26,20,8,189,5,16,137,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,189,5,16,135,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,155,64,26,20,8,189,5,16,139,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,125,64,26,20,8,189,5,16,140,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,189,5,16,138,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,155,64,26,20,8,189,5,16,142,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,127,64,26,20,8,189,5,16,143,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,189,5,16,141,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,128,64,26,20,8,189,5,16,146,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,155,64,26,20,8,189,5,16,145,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,189,5,16,144,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,154,64,26,20,8,189,5,16,148,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,128,64,26,20,8,189,5,16,149,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,189,5,16,147,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,154,64,26,20,8,189,5,16,151,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,128,64,26,20,8,189,5,16,152,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,189,5,16,150,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,154,64,26,20,8,189,5,16,154,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,127,64,26,20,8,189,5,16,155,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,189,5,16,153,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,154,64,26,20,8,189,5,16,157,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,125,64,26,20,8,189,5,16,158,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,189,5,16,156,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,100,154,64,26,20,8,189,5,16,160,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,124,64,26,20,8,189,5,16,161,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,189,5,16,159,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,121,64,26,20,8,189,5,16,164,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,154,64,26,20,8,189,5,16,163,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,189,5,16,162,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,189,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,201,5,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,225,14,18,222,14,10,219,14,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,190,5,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,190,5,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,190,5,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,3,159,64,26,19,8,190,5,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,139,32,108,64,26,19,8,190,5,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,39,158,64,26,19,8,190,5,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,54,75,107,64,26,19,8,190,5,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,15,157,64,26,19,8,190,5,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,225,21,107,64,26,19,8,190,5,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,2,157,64,26,19,8,190,5,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,139,160,110,64,26,19,8,190,5,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,2,157,64,26,19,8,190,5,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,234,113,64,26,19,8,190,5,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,251,156,64,26,19,8,190,5,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,155,165,114,64,26,19,8,190,5,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,156,64,26,19,8,190,5,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,155,165,114,64,26,19,8,190,5,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,153,158,64,26,19,8,190,5,16,28,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,192,114,64,26,19,8,190,5,16,29,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,27,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,179,158,64,26,19,8,190,5,16,31,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,218,114,64,26,19,8,190,5,16,32,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,30,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,179,158,64,26,19,8,190,5,16,34,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,155,245,114,64,26,19,8,190,5,16,35,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,33,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,240,218,114,64,26,19,8,190,5,16,38,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,239,158,64,26,19,8,190,5,16,37,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,36,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,246,158,64,26,19,8,190,5,16,40,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,69,112,114,64,26,19,8,190,5,16,41,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,39,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,246,158,64,26,19,8,190,5,16,43,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,225,181,107,64,26,19,8,190,5,16,44,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,42,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,253,158,64,26,19,8,190,5,16,46,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,225,181,107,64,26,19,8,190,5,16,47,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,45,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,253,158,64,26,19,8,190,5,16,49,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,54,75,107,64,26,19,8,190,5,16,50,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,48,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,190,5,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,200,5,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,226,27,18,223,27,10,220,27,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,198,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,198,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,165,26,10,6,112,111,105,110,116,115,18,154,26,18,151,26,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,64,64,26,19,8,198,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,133,64,26,19,8,198,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,134,64,26,19,8,198,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,70,64,26,19,8,198,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,77,64,26,19,8,198,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,134,64,26,19,8,198,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,133,64,26,19,8,198,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,85,64,26,19,8,198,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,133,64,26,19,8,198,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,198,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,132,64,26,19,8,198,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,98,64,26,19,8,198,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,131,64,26,19,8,198,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,198,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,130,64,26,19,8,198,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,102,64,26,19,8,198,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,129,64,26,19,8,198,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,102,64,26,19,8,198,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,129,64,26,19,8,198,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,64,26,19,8,198,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,129,64,26,19,8,198,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,99,64,26,19,8,198,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,129,64,26,19,8,198,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,97,64,26,19,8,198,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,129,64,26,19,8,198,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,93,64,26,19,8,198,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,129,64,26,19,8,198,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,87,64,26,19,8,198,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,81,64,26,19,8,198,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,130,64,26,19,8,198,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,131,64,26,19,8,198,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,77,64,26,19,8,198,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,131,64,26,19,8,198,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,73,64,26,19,8,198,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,133,64,26,19,8,198,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,70,64,26,19,8,198,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,71,64,26,19,8,198,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,134,64,26,19,8,198,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,135,64,26,19,8,198,5,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,77,64,26,19,8,198,5,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,136,64,26,19,8,198,5,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,83,64,26,19,8,198,5,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,137,64,26,19,8,198,5,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,90,64,26,19,8,198,5,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,141,64,26,19,8,198,5,16,73,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,107,64,26,19,8,198,5,16,74,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,72,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,143,64,26,19,8,198,5,16,76,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,113,64,26,19,8,198,5,16,77,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,75,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,144,64,26,19,8,198,5,16,79,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,115,64,26,19,8,198,5,16,80,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,78,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,146,64,26,19,8,198,5,16,82,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,119,64,26,19,8,198,5,16,83,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,81,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,148,64,26,19,8,198,5,16,85,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,119,64,26,19,8,198,5,16,86,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,84,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,151,64,26,19,8,198,5,16,88,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,198,5,16,89,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,87,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,155,64,26,19,8,198,5,16,91,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,114,64,26,19,8,198,5,16,92,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,90,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,158,64,26,19,8,198,5,16,94,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,198,5,16,95,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,93,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,198,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,198,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,199,5,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,184,36,18,181,36,10,178,36,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,202,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,202,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,202,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,251,34,10,6,112,111,105,110,116,115,18,240,34,18,237,34,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,155,64,26,19,8,202,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,53,64,26,19,8,202,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,155,64,26,19,8,202,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,64,64,26,19,8,202,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,154,64,26,19,8,202,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,68,64,26,19,8,202,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,149,64,26,19,8,202,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,98,64,26,19,8,202,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,136,64,26,19,8,202,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,117,64,26,19,8,202,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,129,64,26,19,8,202,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,121,64,26,19,8,202,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,128,64,26,19,8,202,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,122,64,26,19,8,202,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,128,64,26,19,8,202,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,122,64,26,19,8,202,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,128,64,26,19,8,202,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,120,64,26,19,8,202,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,129,64,26,19,8,202,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,117,64,26,19,8,202,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,115,64,26,19,8,202,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,130,64,26,19,8,202,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,113,64,26,19,8,202,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,131,64,26,19,8,202,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,109,64,26,19,8,202,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,133,64,26,19,8,202,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,135,64,26,19,8,202,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,102,64,26,19,8,202,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,99,64,26,19,8,202,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,137,64,26,19,8,202,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,138,64,26,19,8,202,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,98,64,26,19,8,202,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,138,64,26,19,8,202,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,98,64,26,19,8,202,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,139,64,26,19,8,202,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,98,64,26,19,8,202,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,139,64,26,19,8,202,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,100,64,26,19,8,202,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,141,64,26,19,8,202,5,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,105,64,26,19,8,202,5,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,144,64,26,19,8,202,5,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,115,64,26,19,8,202,5,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,145,64,26,19,8,202,5,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,121,64,26,19,8,202,5,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,145,64,26,19,8,202,5,16,73,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,202,5,16,74,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,72,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,145,64,26,19,8,202,5,16,76,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,124,64,26,19,8,202,5,16,77,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,75,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,145,64,26,19,8,202,5,16,79,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,124,64,26,19,8,202,5,16,80,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,78,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,145,64,26,19,8,202,5,16,82,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,124,64,26,19,8,202,5,16,83,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,81,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,146,64,26,19,8,202,5,16,85,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,123,64,26,19,8,202,5,16,86,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,84,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,146,64,26,19,8,202,5,16,88,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,122,64,26,19,8,202,5,16,89,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,87,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,147,64,26,19,8,202,5,16,91,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,119,64,26,19,8,202,5,16,92,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,90,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,149,64,26,19,8,202,5,16,94,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,107,64,26,19,8,202,5,16,95,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,93,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,149,64,26,19,8,202,5,16,97,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,113,64,26,19,8,202,5,16,98,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,96,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,149,64,26,19,8,202,5,16,100,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,115,64,26,19,8,202,5,16,101,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,99,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,149,64,26,19,8,202,5,16,103,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,116,64,26,19,8,202,5,16,104,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,102,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,150,64,26,19,8,202,5,16,106,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,202,5,16,107,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,105,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,150,64,26,19,8,202,5,16,109,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,119,64,26,19,8,202,5,16,110,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,108,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,150,64,26,19,8,202,5,16,112,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,118,64,26,19,8,202,5,16,113,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,111,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,150,64,26,19,8,202,5,16,115,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,117,64,26,19,8,202,5,16,116,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,114,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,151,64,26,19,8,202,5,16,118,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,115,64,26,19,8,202,5,16,119,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,117,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,108,64,26,19,8,202,5,16,122,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,152,64,26,19,8,202,5,16,121,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,120,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,152,64,26,19,8,202,5,16,124,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,202,5,16,125,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,123,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,204,5,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,217,21,18,214,21,10,211,21,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,205,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,156,20,10,6,112,111,105,110,116,115,18,145,20,18,142,20,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,148,64,26,19,8,205,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,56,64,26,19,8,205,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,147,64,26,19,8,205,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,64,64,26,19,8,205,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,79,64,26,19,8,205,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,147,64,26,19,8,205,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,146,64,26,19,8,205,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,205,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,145,64,26,19,8,205,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,104,64,26,19,8,205,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,143,64,26,19,8,205,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,113,64,26,19,8,205,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,140,64,26,19,8,205,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,119,64,26,19,8,205,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,138,64,26,19,8,205,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,122,64,26,19,8,205,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,138,64,26,19,8,205,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,123,64,26,19,8,205,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,137,64,26,19,8,205,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,123,64,26,19,8,205,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,137,64,26,19,8,205,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,122,64,26,19,8,205,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,116,64,26,19,8,205,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,136,64,26,19,8,205,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,136,64,26,19,8,205,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,113,64,26,19,8,205,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,136,64,26,19,8,205,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,105,64,26,19,8,205,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,136,64,26,19,8,205,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,97,64,26,19,8,205,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,135,64,26,19,8,205,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,62,64,26,19,8,205,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,136,64,26,19,8,205,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,191,26,19,8,205,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,24,192,26,19,8,205,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,136,64,26,19,8,205,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,139,64,26,19,8,205,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,89,64,26,19,8,205,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,141,64,26,19,8,205,5,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,98,64,26,19,8,205,5,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,143,64,26,19,8,205,5,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,106,64,26,19,8,205,5,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,144,64,26,19,8,205,5,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,113,64,26,19,8,205,5,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,145,64,26,19,8,205,5,16,73,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,116,64,26,19,8,205,5,16,74,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,72,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,205,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,205,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,206,5,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,183,23,18,180,23,10,177,23,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,207,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,207,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,207,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,250,21,10,6,112,111,105,110,116,115,18,239,21,18,236,21,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,148,64,26,19,8,207,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,99,64,26,19,8,207,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,147,64,26,19,8,207,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,207,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,144,64,26,19,8,207,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,106,64,26,19,8,207,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,140,64,26,19,8,207,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,110,64,26,19,8,207,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,136,64,26,19,8,207,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,112,64,26,19,8,207,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,137,64,26,19,8,207,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,112,64,26,19,8,207,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,137,64,26,19,8,207,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,112,64,26,19,8,207,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,140,64,26,19,8,207,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,115,64,26,19,8,207,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,143,64,26,19,8,207,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,118,64,26,19,8,207,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,145,64,26,19,8,207,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,120,64,26,19,8,207,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,145,64,26,19,8,207,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,120,64,26,19,8,207,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,146,64,26,19,8,207,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,120,64,26,19,8,207,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,117,64,26,19,8,207,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,146,64,26,19,8,207,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,145,64,26,19,8,207,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,113,64,26,19,8,207,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,144,64,26,19,8,207,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,98,64,26,19,8,207,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,143,64,26,19,8,207,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,106,64,26,19,8,207,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,142,64,26,19,8,207,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,112,64,26,19,8,207,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,141,64,26,19,8,207,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,119,64,26,19,8,207,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,140,64,26,19,8,207,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,122,64,26,19,8,207,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,140,64,26,19,8,207,5,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,123,64,26,19,8,207,5,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,141,64,26,19,8,207,5,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,120,64,26,19,8,207,5,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,144,64,26,19,8,207,5,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,115,64,26,19,8,207,5,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,146,64,26,19,8,207,5,16,73,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,101,64,26,19,8,207,5,16,74,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,72,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,146,64,26,19,8,207,5,16,76,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,207,5,16,77,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,75,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,146,64,26,19,8,207,5,16,79,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,100,64,26,19,8,207,5,16,80,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,78,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,207,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,134,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,243,26,18,240,26,10,237,26,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,208,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,182,25,10,6,112,111,105,110,116,115,18,171,25,18,168,25,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,135,64,26,19,8,208,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,202,122,64,26,19,8,208,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,133,64,26,19,8,208,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,90,124,64,26,19,8,208,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,131,64,26,19,8,208,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,234,125,64,26,19,8,208,5,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,202,127,64,26,19,8,208,5,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,128,64,26,19,8,208,5,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,112,64,26,19,8,208,5,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,165,129,64,26,19,8,208,5,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,107,64,26,19,8,208,5,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,21,130,64,26,19,8,208,5,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,107,64,26,19,8,208,5,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,53,130,64,26,19,8,208,5,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,111,64,26,19,8,208,5,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,149,130,64,26,19,8,208,5,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,29,131,64,26,19,8,208,5,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,116,64,26,19,8,208,5,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,129,64,26,19,8,208,5,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,245,131,64,26,19,8,208,5,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,132,64,26,19,8,208,5,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,13,132,64,26,19,8,208,5,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,134,64,26,19,8,208,5,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,253,131,64,26,19,8,208,5,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,135,64,26,19,8,208,5,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,109,131,64,26,19,8,208,5,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,135,64,26,19,8,208,5,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,245,130,64,26,19,8,208,5,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,133,64,26,19,8,208,5,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,117,129,64,26,19,8,208,5,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,130,64,26,19,8,208,5,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,58,127,64,26,19,8,208,5,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,127,64,26,19,8,208,5,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,234,123,64,26,19,8,208,5,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,123,64,26,19,8,208,5,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,58,122,64,26,19,8,208,5,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,119,64,26,19,8,208,5,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,26,122,64,26,19,8,208,5,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,118,64,26,19,8,208,5,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,186,122,64,26,19,8,208,5,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,118,64,26,19,8,208,5,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,250,125,64,26,19,8,208,5,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,120,64,26,19,8,208,5,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,149,132,64,26,19,8,208,5,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,122,64,26,19,8,208,5,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,245,134,64,26,19,8,208,5,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,122,64,26,19,8,208,5,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,53,135,64,26,19,8,208,5,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,208,5,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,157,133,64,26,19,8,208,5,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,125,64,26,19,8,208,5,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,125,131,64,26,19,8,208,5,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,129,64,26,19,8,208,5,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,186,126,64,26,19,8,208,5,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,134,64,26,19,8,208,5,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,250,118,64,26,19,8,208,5,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,90,116,64,26,19,8,208,5,16,92,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,137,64,26,19,8,208,5,16,91,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,90,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,208,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,208,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,139,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,192,29,18,189,29,10,186,29,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,209,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,209,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,209,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,131,28,10,6,112,111,105,110,116,115,18,248,27,18,245,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,146,64,26,19,8,209,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,170,124,64,26,19,8,209,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,26,125,64,26,19,8,209,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,146,64,26,19,8,209,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,146,64,26,19,8,209,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,58,125,64,26,19,8,209,5,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,145,64,26,19,8,209,5,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,26,127,64,26,19,8,209,5,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,144,64,26,19,8,209,5,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,45,128,64,26,19,8,209,5,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,136,64,26,19,8,209,5,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,93,130,64,26,19,8,209,5,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,173,130,64,26,19,8,209,5,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,135,64,26,19,8,209,5,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,136,64,26,19,8,209,5,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,229,130,64,26,19,8,209,5,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,141,64,26,19,8,209,5,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,29,131,64,26,19,8,209,5,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,146,64,26,19,8,209,5,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,37,131,64,26,19,8,209,5,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,147,64,26,19,8,209,5,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,21,131,64,26,19,8,209,5,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,148,64,26,19,8,209,5,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,189,130,64,26,19,8,209,5,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,148,64,26,19,8,209,5,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,125,130,64,26,19,8,209,5,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,147,64,26,19,8,209,5,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,5,130,64,26,19,8,209,5,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,147,64,26,19,8,209,5,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,77,129,64,26,19,8,209,5,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,145,64,26,19,8,209,5,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,74,125,64,26,19,8,209,5,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,144,64,26,19,8,209,5,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,186,124,64,26,19,8,209,5,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,142,64,26,19,8,209,5,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,186,124,64,26,19,8,209,5,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,140,64,26,19,8,209,5,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,229,128,64,26,19,8,209,5,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,139,64,26,19,8,209,5,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,77,130,64,26,19,8,209,5,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,139,64,26,19,8,209,5,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,93,132,64,26,19,8,209,5,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,140,64,26,19,8,209,5,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,69,135,64,26,19,8,209,5,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,140,64,26,19,8,209,5,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,141,135,64,26,19,8,209,5,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,21,136,64,26,19,8,209,5,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,142,64,26,19,8,209,5,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,142,64,26,19,8,209,5,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,5,136,64,26,19,8,209,5,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,143,64,26,19,8,209,5,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,93,135,64,26,19,8,209,5,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,144,64,26,19,8,209,5,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,21,134,64,26,19,8,209,5,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,145,64,26,19,8,209,5,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,138,124,64,26,19,8,209,5,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,145,64,26,19,8,209,5,16,91,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,26,124,64,26,19,8,209,5,16,92,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,90,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,145,64,26,19,8,209,5,16,94,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,154,123,64,26,19,8,209,5,16,95,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,93,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,146,64,26,19,8,209,5,16,97,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,154,123,64,26,19,8,209,5,16,98,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,96,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,186,123,64,26,19,8,209,5,16,101,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,146,64,26,19,8,209,5,16,100,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,99,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,133,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,213,20,18,210,20,10,207,20,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,210,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,210,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,210,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,173,19,10,6,112,111,105,110,116,115,18,162,19,18,159,19,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,153,64,26,19,8,210,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,93,64,26,19,8,210,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,153,64,26,19,8,210,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,96,64,26,19,8,210,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,152,64,26,19,8,210,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,98,64,26,19,8,210,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,150,64,26,19,8,210,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,103,64,26,19,8,210,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,148,64,26,19,8,210,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,107,64,26,19,8,210,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,110,64,26,19,8,210,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,146,64,26,19,8,210,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,149,64,26,19,8,210,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,113,64,26,19,8,210,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,114,64,26,19,8,210,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,150,64,26,19,8,210,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,151,64,26,19,8,210,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,64,26,19,8,210,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,151,64,26,19,8,210,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,114,64,26,19,8,210,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,150,64,26,19,8,210,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,105,64,26,19,8,210,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,149,64,26,19,8,210,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,92,64,26,19,8,210,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,149,64,26,19,8,210,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,109,64,26,19,8,210,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,149,64,26,19,8,210,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,114,64,26,19,8,210,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,149,64,26,19,8,210,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,119,64,26,19,8,210,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,149,64,26,19,8,210,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,118,64,26,19,8,210,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,150,64,26,19,8,210,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,114,64,26,19,8,210,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,151,64,26,19,8,210,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,108,64,26,19,8,210,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,151,64,26,19,8,210,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,105,64,26,19,8,210,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,152,64,26,19,8,210,5,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,101,64,26,19,8,210,5,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,152,64,26,19,8,210,5,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,98,64,26,19,8,210,5,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,152,64,26,19,8,210,5,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,94,64,26,19,8,210,5,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,210,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,140,39,18,137,39,10,134,39,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,211,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,207,37,10,6,112,111,105,110,116,115,18,196,37,18,193,37,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,150,64,26,19,8,211,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,58,118,64,26,19,8,211,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,149,64,26,19,8,211,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,154,120,64,26,19,8,211,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,149,64,26,19,8,211,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,42,122,64,26,19,8,211,5,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,148,64,26,19,8,211,5,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,26,125,64,26,19,8,211,5,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,147,64,26,19,8,211,5,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,122,127,64,26,19,8,211,5,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,146,64,26,19,8,211,5,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,106,127,64,26,19,8,211,5,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,147,64,26,19,8,211,5,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,58,126,64,26,19,8,211,5,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,147,64,26,19,8,211,5,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,186,124,64,26,19,8,211,5,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,148,64,26,19,8,211,5,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,202,121,64,26,19,8,211,5,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,151,64,26,19,8,211,5,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,10,119,64,26,19,8,211,5,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,74,119,64,26,19,8,211,5,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,152,64,26,19,8,211,5,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,154,64,26,19,8,211,5,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,10,123,64,26,19,8,211,5,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,154,64,26,19,8,211,5,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,26,124,64,26,19,8,211,5,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,154,64,26,19,8,211,5,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,106,125,64,26,19,8,211,5,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,106,127,64,26,19,8,211,5,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,153,64,26,19,8,211,5,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,153,64,26,19,8,211,5,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,26,127,64,26,19,8,211,5,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,152,64,26,19,8,211,5,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,250,124,64,26,19,8,211,5,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,150,64,26,19,8,211,5,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,106,121,64,26,19,8,211,5,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,149,64,26,19,8,211,5,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,234,117,64,26,19,8,211,5,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,26,115,64,26,19,8,211,5,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,150,64,26,19,8,211,5,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,151,64,26,19,8,211,5,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,138,115,64,26,19,8,211,5,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,152,64,26,19,8,211,5,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,250,117,64,26,19,8,211,5,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,154,64,26,19,8,211,5,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,58,126,64,26,19,8,211,5,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,154,64,26,19,8,211,5,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,181,128,64,26,19,8,211,5,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,154,64,26,19,8,211,5,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,213,129,64,26,19,8,211,5,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,154,64,26,19,8,211,5,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,197,130,64,26,19,8,211,5,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,153,64,26,19,8,211,5,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,61,131,64,26,19,8,211,5,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,21,131,64,26,19,8,211,5,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,152,64,26,19,8,211,5,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,149,64,26,19,8,211,5,16,91,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,109,128,64,26,19,8,211,5,16,92,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,90,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,148,64,26,19,8,211,5,16,94,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,234,126,64,26,19,8,211,5,16,95,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,93,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,148,64,26,19,8,211,5,16,97,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,202,124,64,26,19,8,211,5,16,98,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,96,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,149,64,26,19,8,211,5,16,100,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,186,120,64,26,19,8,211,5,16,101,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,99,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,150,64,26,19,8,211,5,16,103,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,74,120,64,26,19,8,211,5,16,104,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,102,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,170,121,64,26,19,8,211,5,16,107,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,152,64,26,19,8,211,5,16,106,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,105,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,152,64,26,19,8,211,5,16,109,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,106,122,64,26,19,8,211,5,16,110,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,108,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,74,123,64,26,19,8,211,5,16,113,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,152,64,26,19,8,211,5,16,112,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,111,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,150,64,26,19,8,211,5,16,115,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,26,125,64,26,19,8,211,5,16,116,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,114,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,90,124,64,26,19,8,211,5,16,119,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,149,64,26,19,8,211,5,16,118,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,117,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,147,64,26,19,8,211,5,16,121,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,106,122,64,26,19,8,211,5,16,122,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,120,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,146,64,26,19,8,211,5,16,124,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,90,120,64,26,19,8,211,5,16,125,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,123,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,145,64,26,19,8,211,5,16,127,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,202,74,118,64,26,20,8,211,5,16,128,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,126,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,145,64,26,20,8,211,5,16,130,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,202,58,116,64,26,20,8,211,5,16,131,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,211,5,16,129,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,145,64,26,20,8,211,5,16,133,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,202,218,115,64,26,20,8,211,5,16,134,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,211,5,16,132,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,211,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,211,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,148,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,242,13,18,239,13,10,236,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,212,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,212,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,212,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,145,64,26,19,8,212,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,138,115,64,26,19,8,212,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,144,64,26,19,8,212,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,90,115,64,26,19,8,212,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,143,64,26,19,8,212,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,138,114,64,26,19,8,212,5,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,137,64,26,19,8,212,5,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,148,245,110,64,26,19,8,212,5,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,131,64,26,19,8,212,5,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,148,149,103,64,26,19,8,212,5,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,127,64,26,19,8,212,5,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,148,117,96,64,26,19,8,212,5,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,126,64,26,19,8,212,5,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,40,235,94,64,26,19,8,212,5,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,124,64,26,19,8,212,5,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,148,181,97,64,26,19,8,212,5,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,116,64,26,19,8,212,5,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,148,245,105,64,26,19,8,212,5,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,148,117,110,64,26,19,8,212,5,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,113,64,26,19,8,212,5,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,112,64,26,19,8,212,5,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,148,181,111,64,26,19,8,212,5,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,112,64,26,19,8,212,5,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,106,112,64,26,19,8,212,5,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,113,64,26,19,8,212,5,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,122,112,64,26,19,8,212,5,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,125,64,26,19,8,212,5,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,90,112,64,26,19,8,212,5,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,140,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,250,6,18,247,6,10,244,6,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,127,64,26,19,8,213,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,148,149,104,64,26,19,8,213,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,122,64,26,19,8,213,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,148,245,109,64,26,19,8,213,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,120,64,26,19,8,213,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,148,21,111,64,26,19,8,213,5,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,117,64,26,19,8,213,5,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,42,112,64,26,19,8,213,5,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,5,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,116,64,26,19,8,213,5,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,58,112,64,26,19,8,213,5,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,5,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,116,64,26,19,8,213,5,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,148,21,111,64,26,19,8,213,5,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,5,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,213,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,213,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,213,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,129,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,199,9,18,196,9,10,193,9,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,214,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,129,64,26,19,8,214,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,148,53,99,64,26,19,8,214,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,131,64,26,19,8,214,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,148,181,108,64,26,19,8,214,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,131,64,26,19,8,214,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,90,113,64,26,19,8,214,5,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,130,64,26,19,8,214,5,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,26,118,64,26,19,8,214,5,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,5,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,126,64,26,19,8,214,5,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,202,250,127,64,26,19,8,214,5,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,5,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,123,64,26,19,8,214,5,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,5,129,64,26,19,8,214,5,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,5,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,117,64,26,19,8,214,5,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,117,130,64,26,19,8,214,5,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,5,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,98,64,26,19,8,214,5,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,53,132,64,26,19,8,214,5,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,5,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,91,64,26,19,8,214,5,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,197,132,64,26,19,8,214,5,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,5,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,214,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,214,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,255,6,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,156,5,18,153,5,10,150,5,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,215,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,215,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,112,64,26,19,8,215,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,245,134,64,26,19,8,215,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,110,64,26,19,8,215,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,245,134,64,26,19,8,215,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,103,64,26,19,8,215,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,77,134,64,26,19,8,215,5,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,101,197,133,64,26,19,8,215,5,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,99,64,26,19,8,215,5,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,5,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,215,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,255,6,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,157,18,18,154,18,10,151,18,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,216,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,216,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,216,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,224,16,10,6,112,111,105,110,116,115,18,213,16,18,210,16,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,155,64,26,19,8,216,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,104,64,26,19,8,216,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,154,64,26,19,8,216,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,107,64,26,19,8,216,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,153,64,26,19,8,216,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,108,64,26,19,8,216,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,153,64,26,19,8,216,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,111,64,26,19,8,216,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,152,64,26,19,8,216,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,112,64,26,19,8,216,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,153,64,26,19,8,216,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,113,64,26,19,8,216,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,153,64,26,19,8,216,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,113,64,26,19,8,216,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,154,64,26,19,8,216,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,114,64,26,19,8,216,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,155,64,26,19,8,216,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,114,64,26,19,8,216,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,155,64,26,19,8,216,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,112,64,26,19,8,216,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,216,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,154,64,26,19,8,216,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,154,64,26,19,8,216,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,105,64,26,19,8,216,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,152,64,26,19,8,216,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,93,64,26,19,8,216,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,152,64,26,19,8,216,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,104,64,26,19,8,216,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,153,64,26,19,8,216,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,216,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,153,64,26,19,8,216,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,110,64,26,19,8,216,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,153,64,26,19,8,216,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,110,64,26,19,8,216,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,153,64,26,19,8,216,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,108,64,26,19,8,216,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,154,64,26,19,8,216,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,97,64,26,19,8,216,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,216,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,143,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,242,13,18,239,13,10,236,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,217,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,217,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,156,64,26,19,8,217,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,75,64,26,19,8,217,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,155,64,26,19,8,217,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,80,64,26,19,8,217,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,154,64,26,19,8,217,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,82,64,26,19,8,217,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,154,64,26,19,8,217,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,83,64,26,19,8,217,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,155,64,26,19,8,217,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,85,64,26,19,8,217,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,156,64,26,19,8,217,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,86,64,26,19,8,217,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,156,64,26,19,8,217,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,81,64,26,19,8,217,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,155,64,26,19,8,217,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,70,64,26,19,8,217,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,155,64,26,19,8,217,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,77,64,26,19,8,217,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,88,64,26,19,8,217,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,155,64,26,19,8,217,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,84,64,26,19,8,217,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,155,64,26,19,8,217,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,156,64,26,19,8,217,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,80,64,26,19,8,217,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,156,64,26,19,8,217,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,76,64,26,19,8,217,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,156,64,26,19,8,217,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,73,64,26,19,8,217,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,217,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,217,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,182,6,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,218,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,218,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,218,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,140,64,26,19,8,218,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,96,97,64,26,19,8,218,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,32,104,64,26,19,8,218,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,160,153,38,192,26,19,8,218,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,218,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,144,64,26,19,8,218,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,102,182,102,64,26,19,8,218,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,218,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,218,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,218,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,133,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,219,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,219,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,219,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,152,217,66,64,26,19,8,219,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,142,64,26,19,8,219,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,98,64,26,19,8,219,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,192,97,64,26,19,8,219,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,152,217,66,64,26,19,8,219,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,142,64,26,19,8,219,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,130,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,220,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,220,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,220,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,102,182,99,64,26,19,8,220,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,144,64,26,19,8,220,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,128,96,64,26,19,8,220,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,64,96,64,26,19,8,220,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,146,64,26,19,8,220,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,102,182,99,64,26,19,8,220,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,137,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,221,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,221,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,221,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,204,44,86,64,26,19,8,221,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,142,64,26,19,8,221,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,102,64,26,19,8,221,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,128,105,64,26,19,8,221,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,221,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,142,64,26,19,8,221,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,51,75,114,64,26,19,8,221,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,221,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,221,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,221,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,130,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,4,18,160,4,10,157,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,222,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,222,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,204,44,81,64,26,19,8,222,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,139,64,26,19,8,222,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,80,112,64,26,19,8,222,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,54,64,26,19,8,222,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,145,64,26,19,8,222,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,204,44,81,64,26,19,8,222,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,222,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,130,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,223,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,223,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,223,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,166,68,192,26,19,8,223,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,133,64,26,19,8,223,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,61,64,26,19,8,223,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,128,64,64,26,19,8,223,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,223,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,134,64,26,19,8,223,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,160,153,32,192,26,19,8,223,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,223,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,223,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,223,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,4,18,160,4,10,157,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,128,105,64,26,19,8,224,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,105,64,26,19,8,224,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,160,153,40,192,26,19,8,224,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,131,64,26,19,8,224,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,224,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,137,64,26,19,8,224,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,102,118,103,64,26,19,8,224,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,224,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,224,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,224,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,224,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,224,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,224,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,145,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,230,19,18,227,19,10,224,19,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,225,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,225,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,190,18,10,6,112,111,105,110,116,115,18,179,18,18,176,18,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,128,64,26,19,8,225,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,148,64,26,19,8,225,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,147,64,26,19,8,225,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,129,64,26,19,8,225,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,145,64,26,19,8,225,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,131,64,26,19,8,225,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,144,64,26,19,8,225,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,132,64,26,19,8,225,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,147,64,26,19,8,225,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,132,64,26,19,8,225,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,149,64,26,19,8,225,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,132,64,26,19,8,225,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,150,64,26,19,8,225,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,132,64,26,19,8,225,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,150,64,26,19,8,225,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,132,64,26,19,8,225,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,150,64,26,19,8,225,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,131,64,26,19,8,225,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,149,64,26,19,8,225,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,130,64,26,19,8,225,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,127,64,26,19,8,225,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,147,64,26,19,8,225,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,145,64,26,19,8,225,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,124,64,26,19,8,225,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,145,64,26,19,8,225,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,127,64,26,19,8,225,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,146,64,26,19,8,225,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,130,64,26,19,8,225,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,132,64,26,19,8,225,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,146,64,26,19,8,225,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,146,64,26,19,8,225,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,132,64,26,19,8,225,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,146,64,26,19,8,225,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,225,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,132,64,26,19,8,225,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,146,64,26,19,8,225,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,146,64,26,19,8,225,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,131,64,26,19,8,225,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,147,64,26,19,8,225,5,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,225,5,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,147,64,26,19,8,225,5,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,125,64,26,19,8,225,5,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,225,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,225,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,163,4,18,160,4,10,157,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,225,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,166,69,192,26,19,8,225,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,126,64,26,19,8,225,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,109,64,26,19,8,225,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,160,104,64,26,19,8,225,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,126,64,26,19,8,225,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,166,69,192,26,19,8,225,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,225,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,225,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,145,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,4,18,160,4,10,157,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,128,64,26,19,8,227,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,38,66,192,26,19,8,227,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,227,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,227,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,227,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,128,64,26,19,8,227,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,227,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,224,102,64,26,19,8,227,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,38,66,192,26,19,8,227,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,145,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,228,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,228,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,228,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,64,51,17,192,26,19,8,228,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,134,64,26,19,8,228,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,100,64,26,19,8,228,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,224,109,64,26,19,8,228,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,134,64,26,19,8,228,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,64,51,17,192,26,19,8,228,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,146,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,229,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,229,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,229,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,128,102,64,26,19,8,229,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,88,64,26,19,8,229,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,204,236,87,64,26,19,8,229,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,146,64,26,19,8,229,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,229,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,149,64,26,19,8,229,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,204,236,87,64,26,19,8,229,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,229,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,229,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,229,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,157,18,18,154,18,10,151,18,10,224,16,10,6,112,111,105,110,116,115,18,213,16,18,210,16,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,149,64,26,19,8,230,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,125,64,26,19,8,230,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,148,64,26,19,8,230,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,127,64,26,19,8,230,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,148,64,26,19,8,230,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,128,64,26,19,8,230,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,147,64,26,19,8,230,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,129,64,26,19,8,230,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,147,64,26,19,8,230,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,129,64,26,19,8,230,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,147,64,26,19,8,230,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,130,64,26,19,8,230,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,147,64,26,19,8,230,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,131,64,26,19,8,230,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,147,64,26,19,8,230,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,131,64,26,19,8,230,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,147,64,26,19,8,230,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,132,64,26,19,8,230,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,148,64,26,19,8,230,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,133,64,26,19,8,230,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,150,64,26,19,8,230,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,133,64,26,19,8,230,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,150,64,26,19,8,230,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,133,64,26,19,8,230,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,152,64,26,19,8,230,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,130,64,26,19,8,230,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,152,64,26,19,8,230,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,129,64,26,19,8,230,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,153,64,26,19,8,230,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,230,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,153,64,26,19,8,230,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,124,64,26,19,8,230,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,153,64,26,19,8,230,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,230,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,153,64,26,19,8,230,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,119,64,26,19,8,230,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,152,64,26,19,8,230,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,117,64,26,19,8,230,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,230,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,230,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,230,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,230,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,236,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,231,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,231,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,231,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,76,61,192,26,19,8,231,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,149,64,26,19,8,231,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,34,64,26,19,8,231,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,63,26,19,8,231,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,149,64,26,19,8,231,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,76,60,192,26,19,8,231,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,188,28,18,185,28,10,182,28,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,232,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,232,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,232,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,148,27,10,6,112,111,105,110,116,115,18,137,27,18,134,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,149,64,26,19,8,232,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,116,64,26,19,8,232,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,149,64,26,19,8,232,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,116,64,26,19,8,232,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,149,64,26,19,8,232,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,118,64,26,19,8,232,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,149,64,26,19,8,232,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,120,64,26,19,8,232,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,122,64,26,19,8,232,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,149,64,26,19,8,232,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,149,64,26,19,8,232,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,124,64,26,19,8,232,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,149,64,26,19,8,232,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,125,64,26,19,8,232,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,149,64,26,19,8,232,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,126,64,26,19,8,232,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,150,64,26,19,8,232,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,127,64,26,19,8,232,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,150,64,26,19,8,232,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,128,64,26,19,8,232,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,152,64,26,19,8,232,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,128,64,26,19,8,232,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,153,64,26,19,8,232,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,232,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,153,64,26,19,8,232,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,126,64,26,19,8,232,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,153,64,26,19,8,232,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,125,64,26,19,8,232,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,153,64,26,19,8,232,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,124,64,26,19,8,232,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,126,64,26,19,8,232,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,153,64,26,19,8,232,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,153,64,26,19,8,232,5,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,128,64,26,19,8,232,5,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,129,64,26,19,8,232,5,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,153,64,26,19,8,232,5,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,152,64,26,19,8,232,5,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,129,64,26,19,8,232,5,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,151,64,26,19,8,232,5,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,130,64,26,19,8,232,5,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,151,64,26,19,8,232,5,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,130,64,26,19,8,232,5,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,150,64,26,19,8,232,5,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,129,64,26,19,8,232,5,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,149,64,26,19,8,232,5,16,73,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,129,64,26,19,8,232,5,16,74,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,72,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,147,64,26,19,8,232,5,16,76,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,128,64,26,19,8,232,5,16,77,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,75,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,126,64,26,19,8,232,5,16,80,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,145,64,26,19,8,232,5,16,79,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,78,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,145,64,26,19,8,232,5,16,82,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,125,64,26,19,8,232,5,16,83,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,81,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,144,64,26,19,8,232,5,16,85,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,124,64,26,19,8,232,5,16,86,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,84,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,144,64,26,19,8,232,5,16,88,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,123,64,26,19,8,232,5,16,89,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,87,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,144,64,26,19,8,232,5,16,91,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,121,64,26,19,8,232,5,16,92,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,90,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,120,64,26,19,8,232,5,16,95,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,144,64,26,19,8,232,5,16,94,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,93,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,119,64,26,19,8,232,5,16,98,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,144,64,26,19,8,232,5,16,97,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,96,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,232,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,225,131,1,18,221,131,1,10,217,131,1,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,55,97,97,99,100,26,19,8,184,6,16,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,184,6,16,4,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,161,130,1,10,6,112,111,105,110,116,115,18,149,130,1,18,145,130,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,41,176,64,26,19,8,184,6,16,8,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,133,64,26,19,8,184,6,16,7,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,6,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,133,64,26,19,8,184,6,16,10,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,254,173,64,26,19,8,184,6,16,11,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,9,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,127,64,26,19,8,184,6,16,13,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,254,173,64,26,19,8,184,6,16,14,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,12,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,126,64,26,19,8,184,6,16,16,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,252,173,64,26,19,8,184,6,16,17,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,15,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,122,64,26,19,8,184,6,16,19,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,234,173,64,26,19,8,184,6,16,20,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,18,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,122,64,26,19,8,184,6,16,22,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,188,172,64,26,19,8,184,6,16,23,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,21,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,122,64,26,19,8,184,6,16,25,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,162,64,26,19,8,184,6,16,26,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,24,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,122,64,26,19,8,184,6,16,28,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,162,64,26,19,8,184,6,16,29,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,27,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,123,64,26,19,8,184,6,16,31,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,142,64,26,19,8,184,6,16,32,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,30,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,142,64,26,19,8,184,6,16,35,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,123,64,26,19,8,184,6,16,34,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,33,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,123,64,26,19,8,184,6,16,37,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,128,64,26,19,8,184,6,16,38,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,36,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,117,64,26,19,8,184,6,16,40,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,128,64,26,19,8,184,6,16,41,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,39,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,184,6,16,43,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,128,64,26,19,8,184,6,16,44,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,42,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,111,64,26,19,8,184,6,16,46,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,128,64,26,19,8,184,6,16,47,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,45,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,110,64,26,19,8,184,6,16,49,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,127,64,26,19,8,184,6,16,50,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,48,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,110,64,26,19,8,184,6,16,52,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,127,64,26,19,8,184,6,16,53,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,51,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,110,64,26,19,8,184,6,16,55,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,126,64,26,19,8,184,6,16,56,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,54,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,116,64,26,19,8,184,6,16,58,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,121,64,26,19,8,184,6,16,59,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,57,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,121,64,26,19,8,184,6,16,61,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,118,64,26,19,8,184,6,16,62,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,60,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,123,64,26,19,8,184,6,16,64,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,116,64,26,19,8,184,6,16,65,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,63,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,125,64,26,19,8,184,6,16,67,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,115,64,26,19,8,184,6,16,68,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,66,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,128,64,26,19,8,184,6,16,70,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,184,6,16,71,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,69,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,128,64,26,19,8,184,6,16,73,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,64,26,19,8,184,6,16,74,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,72,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,116,64,26,19,8,184,6,16,77,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,123,64,26,19,8,184,6,16,76,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,75,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,120,64,26,19,8,184,6,16,79,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,116,64,26,19,8,184,6,16,80,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,78,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,116,64,26,19,8,184,6,16,82,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,116,64,26,19,8,184,6,16,83,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,81,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,184,6,16,85,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,116,64,26,19,8,184,6,16,86,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,84,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,116,64,26,19,8,184,6,16,89,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,122,64,26,19,8,184,6,16,88,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,87,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,121,64,26,19,8,184,6,16,91,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,116,64,26,19,8,184,6,16,92,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,90,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,118,64,26,19,8,184,6,16,95,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,110,64,26,19,8,184,6,16,94,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,93,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,96,64,26,19,8,184,6,16,97,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,118,64,26,19,8,184,6,16,98,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,96,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,71,64,26,19,8,184,6,16,100,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,184,6,16,101,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,99,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,191,26,19,8,184,6,16,103,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,120,64,26,19,8,184,6,16,104,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,102,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,38,192,26,19,8,184,6,16,106,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,120,64,26,19,8,184,6,16,107,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,105,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,48,192,26,19,8,184,6,16,109,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,120,64,26,19,8,184,6,16,110,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,108,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,38,192,26,19,8,184,6,16,112,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,121,64,26,19,8,184,6,16,113,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,111,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,88,64,26,19,8,184,6,16,115,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,130,64,26,19,8,184,6,16,116,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,114,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,92,64,26,19,8,184,6,16,118,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,131,64,26,19,8,184,6,16,119,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,117,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,97,64,26,19,8,184,6,16,121,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,131,64,26,19,8,184,6,16,122,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,120,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,94,64,26,19,8,184,6,16,124,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,131,64,26,19,8,184,6,16,125,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,123,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,82,64,26,19,8,184,6,16,127,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,130,64,26,20,8,184,6,16,128,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,126,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,46,192,26,20,8,184,6,16,130,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,130,64,26,20,8,184,6,16,131,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,129,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,91,64,26,20,8,184,6,16,133,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,129,64,26,20,8,184,6,16,134,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,132,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,96,64,26,20,8,184,6,16,136,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,128,64,26,20,8,184,6,16,137,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,135,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,92,64,26,20,8,184,6,16,139,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,128,64,26,20,8,184,6,16,140,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,138,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,126,64,26,20,8,184,6,16,143,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,103,64,26,20,8,184,6,16,142,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,141,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,103,64,26,20,8,184,6,16,145,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,126,64,26,20,8,184,6,16,146,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,144,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,102,64,26,20,8,184,6,16,148,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,128,64,26,20,8,184,6,16,149,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,147,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,115,64,26,20,8,184,6,16,151,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,129,64,26,20,8,184,6,16,152,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,150,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,117,64,26,20,8,184,6,16,154,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,129,64,26,20,8,184,6,16,155,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,153,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,119,64,26,20,8,184,6,16,157,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,129,64,26,20,8,184,6,16,158,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,156,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,124,64,26,20,8,184,6,16,160,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,127,64,26,20,8,184,6,16,161,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,159,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,127,64,26,20,8,184,6,16,163,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,126,64,26,20,8,184,6,16,164,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,162,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,128,64,26,20,8,184,6,16,166,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,125,64,26,20,8,184,6,16,167,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,165,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,128,64,26,20,8,184,6,16,169,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,125,64,26,20,8,184,6,16,170,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,168,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,129,64,26,20,8,184,6,16,172,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,126,64,26,20,8,184,6,16,173,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,171,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,129,64,26,20,8,184,6,16,175,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,126,64,26,20,8,184,6,16,176,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,174,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,130,64,26,20,8,184,6,16,178,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,127,64,26,20,8,184,6,16,179,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,177,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,130,64,26,20,8,184,6,16,181,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,127,64,26,20,8,184,6,16,182,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,180,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,128,64,26,20,8,184,6,16,184,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,128,64,26,20,8,184,6,16,185,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,183,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,129,64,26,20,8,184,6,16,187,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,128,64,26,20,8,184,6,16,188,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,186,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,131,64,26,20,8,184,6,16,190,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,125,64,26,20,8,184,6,16,191,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,189,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,131,64,26,20,8,184,6,16,193,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,123,64,26,20,8,184,6,16,194,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,192,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,131,64,26,20,8,184,6,16,196,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,122,64,26,20,8,184,6,16,197,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,195,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,121,64,26,20,8,184,6,16,200,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,133,64,26,20,8,184,6,16,199,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,198,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,133,64,26,20,8,184,6,16,202,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,121,64,26,20,8,184,6,16,203,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,201,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,134,64,26,20,8,184,6,16,205,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,122,64,26,20,8,184,6,16,206,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,204,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,134,64,26,20,8,184,6,16,208,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,182,64,26,20,8,184,6,16,209,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,207,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,135,64,26,20,8,184,6,16,211,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,49,182,64,26,20,8,184,6,16,212,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,210,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,135,64,26,20,8,184,6,16,214,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,160,192,26,20,8,184,6,16,215,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,213,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,133,64,26,20,8,184,6,16,217,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,160,192,26,20,8,184,6,16,218,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,216,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,133,64,26,20,8,184,6,16,220,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,140,160,192,26,20,8,184,6,16,221,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,219,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,140,160,192,26,20,8,184,6,16,224,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,132,64,26,20,8,184,6,16,223,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,222,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,131,64,26,20,8,184,6,16,226,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,146,160,192,26,20,8,184,6,16,227,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,225,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,130,64,26,20,8,184,6,16,229,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,146,160,192,26,20,8,184,6,16,230,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,228,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,129,64,26,20,8,184,6,16,232,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,124,160,192,26,20,8,184,6,16,233,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,231,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,129,64,26,20,8,184,6,16,235,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,82,160,192,26,20,8,184,6,16,236,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,234,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,129,64,26,20,8,184,6,16,238,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,46,160,192,26,20,8,184,6,16,239,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,237,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,129,64,26,20,8,184,6,16,241,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,148,159,192,26,20,8,184,6,16,242,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,240,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,130,64,26,20,8,184,6,16,244,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,159,192,26,20,8,184,6,16,245,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,243,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,132,64,26,20,8,184,6,16,247,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,157,192,26,20,8,184,6,16,248,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,246,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,133,64,26,20,8,184,6,16,250,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,157,192,26,20,8,184,6,16,251,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,249,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,134,64,26,20,8,184,6,16,253,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,192,26,20,8,184,6,16,254,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,252,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,134,64,26,20,8,184,6,16,128,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,192,26,20,8,184,6,16,129,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,255,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,100,158,192,26,20,8,184,6,16,132,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,134,64,26,20,8,184,6,16,131,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,130,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,134,64,26,20,8,184,6,16,134,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,188,158,192,26,20,8,184,6,16,135,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,133,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,134,64,26,20,8,184,6,16,137,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,60,159,192,26,20,8,184,6,16,138,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,136,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,131,64,26,20,8,184,6,16,140,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,20,160,192,26,20,8,184,6,16,141,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,139,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,130,64,26,20,8,184,6,16,143,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,42,160,192,26,20,8,184,6,16,144,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,142,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,120,64,26,20,8,184,6,16,146,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,14,160,192,26,20,8,184,6,16,147,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,145,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,119,64,26,20,8,184,6,16,149,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,159,192,26,20,8,184,6,16,150,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,148,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,118,64,26,20,8,184,6,16,152,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,159,192,26,20,8,184,6,16,153,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,151,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,129,64,26,20,8,184,6,16,155,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,172,157,192,26,20,8,184,6,16,156,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,154,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,132,64,26,20,8,184,6,16,158,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,192,26,20,8,184,6,16,159,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,157,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,132,64,26,20,8,184,6,16,161,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,192,26,20,8,184,6,16,162,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,160,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,123,64,26,20,8,184,6,16,164,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,244,154,192,26,20,8,184,6,16,165,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,163,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,123,64,26,20,8,184,6,16,167,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,196,155,192,26,20,8,184,6,16,168,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,166,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,122,64,26,20,8,184,6,16,170,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,192,26,20,8,184,6,16,171,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,169,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,124,64,26,20,8,184,6,16,173,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,168,159,192,26,20,8,184,6,16,174,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,172,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,125,64,26,20,8,184,6,16,176,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,159,192,26,20,8,184,6,16,177,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,175,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,126,64,26,20,8,184,6,16,179,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,142,160,192,26,20,8,184,6,16,180,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,178,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,166,160,192,26,20,8,184,6,16,183,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,126,64,26,20,8,184,6,16,182,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,181,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,125,64,26,20,8,184,6,16,185,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,186,160,192,26,20,8,184,6,16,186,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,184,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,125,64,26,20,8,184,6,16,188,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,188,160,192,26,20,8,184,6,16,189,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,187,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,114,64,26,20,8,184,6,16,191,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,160,192,26,20,8,184,6,16,192,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,190,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,114,64,26,20,8,184,6,16,194,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,160,192,26,20,8,184,6,16,195,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,193,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,114,64,26,20,8,184,6,16,197,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,20,159,192,26,20,8,184,6,16,198,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,196,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,115,64,26,20,8,184,6,16,200,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,192,26,20,8,184,6,16,201,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,199,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,116,64,26,20,8,184,6,16,203,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,158,192,26,20,8,184,6,16,204,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,202,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,119,64,26,20,8,184,6,16,206,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,157,192,26,20,8,184,6,16,207,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,205,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,121,64,26,20,8,184,6,16,209,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,192,26,20,8,184,6,16,210,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,208,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,122,64,26,20,8,184,6,16,212,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,252,157,192,26,20,8,184,6,16,213,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,211,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,122,64,26,20,8,184,6,16,215,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,192,26,20,8,184,6,16,216,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,214,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,60,158,192,26,20,8,184,6,16,219,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,122,64,26,20,8,184,6,16,218,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,217,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,120,64,26,20,8,184,6,16,221,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,192,26,20,8,184,6,16,222,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,220,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,113,64,26,20,8,184,6,16,224,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,157,192,26,20,8,184,6,16,225,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,223,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,112,64,26,20,8,184,6,16,227,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,192,26,20,8,184,6,16,228,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,226,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,112,64,26,20,8,184,6,16,230,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,4,157,192,26,20,8,184,6,16,231,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,229,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,112,64,26,20,8,184,6,16,233,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,196,156,192,26,20,8,184,6,16,234,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,232,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,132,156,192,26,20,8,184,6,16,237,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,113,64,26,20,8,184,6,16,236,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,235,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,113,64,26,20,8,184,6,16,239,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,108,156,192,26,20,8,184,6,16,240,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,238,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,115,64,26,20,8,184,6,16,242,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,156,192,26,20,8,184,6,16,243,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,241,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,115,64,26,20,8,184,6,16,245,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,155,192,26,20,8,184,6,16,246,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,244,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,114,64,26,20,8,184,6,16,248,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,155,192,26,20,8,184,6,16,249,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,247,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,204,155,192,26,20,8,184,6,16,252,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,113,64,26,20,8,184,6,16,251,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,250,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,103,64,26,20,8,184,6,16,254,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,68,155,192,26,20,8,184,6,16,255,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,253,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,68,155,192,26,20,8,184,6,16,130,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,102,64,26,20,8,184,6,16,129,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,128,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,117,64,26,20,8,184,6,16,132,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,192,26,20,8,184,6,16,133,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,131,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,117,64,26,20,8,184,6,16,135,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,124,158,192,26,20,8,184,6,16,136,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,134,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,118,64,26,20,8,184,6,16,138,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,164,156,192,26,20,8,184,6,16,139,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,137,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,115,64,26,20,8,184,6,16,141,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,132,156,192,26,20,8,184,6,16,142,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,140,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,107,64,26,20,8,184,6,16,144,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,108,156,192,26,20,8,184,6,16,145,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,143,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,105,64,26,20,8,184,6,16,147,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,156,192,26,20,8,184,6,16,148,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,146,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,156,192,26,20,8,184,6,16,151,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,104,64,26,20,8,184,6,16,150,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,149,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,104,64,26,20,8,184,6,16,153,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,140,155,192,26,20,8,184,6,16,154,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,152,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,204,154,192,26,20,8,184,6,16,157,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,114,64,26,20,8,184,6,16,156,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,155,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,115,64,26,20,8,184,6,16,159,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,196,154,192,26,20,8,184,6,16,160,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,158,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,119,64,26,20,8,184,6,16,162,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,196,154,192,26,20,8,184,6,16,163,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,161,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,120,64,26,20,8,184,6,16,165,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,154,192,26,20,8,184,6,16,166,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,164,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,12,155,192,26,20,8,184,6,16,169,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,121,64,26,20,8,184,6,16,168,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,167,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,122,64,26,20,8,184,6,16,171,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,92,155,192,26,20,8,184,6,16,172,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,170,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,121,64,26,20,8,184,6,16,174,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,60,159,192,26,20,8,184,6,16,175,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,173,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,159,192,26,20,8,184,6,16,178,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,121,64,26,20,8,184,6,16,177,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,176,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,120,64,26,20,8,184,6,16,180,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,100,159,192,26,20,8,184,6,16,181,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,179,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,116,64,26,20,8,184,6,16,183,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,148,159,192,26,20,8,184,6,16,184,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,182,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,116,64,26,20,8,184,6,16,186,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,159,192,26,20,8,184,6,16,187,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,185,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,116,64,26,20,8,184,6,16,189,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,116,159,192,26,20,8,184,6,16,190,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,184,6,16,188,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,5,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,184,6,16,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,184,6,16,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,34,19,8,254,6,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,145,153,1,18,141,153,1,10,137,153,1,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,55,97,97,99,100,26,19,8,160,6,16,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,160,6,16,4,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,209,151,1,10,6,112,111,105,110,116,115,18,197,151,1,18,193,151,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,101,64,26,19,8,160,6,16,8,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,103,64,26,19,8,160,6,16,7,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,6,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,105,64,26,19,8,160,6,16,10,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,105,64,26,19,8,160,6,16,11,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,9,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,113,64,26,19,8,160,6,16,14,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,112,64,26,19,8,160,6,16,13,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,12,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,114,64,26,19,8,160,6,16,16,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,115,64,26,19,8,160,6,16,17,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,15,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,117,64,26,19,8,160,6,16,19,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,118,64,26,19,8,160,6,16,20,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,18,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,117,64,26,19,8,160,6,16,22,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,118,64,26,19,8,160,6,16,23,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,21,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,117,64,26,19,8,160,6,16,25,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,119,64,26,19,8,160,6,16,26,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,24,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,114,64,26,19,8,160,6,16,28,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,119,64,26,19,8,160,6,16,29,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,27,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,104,64,26,19,8,160,6,16,31,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,120,64,26,19,8,160,6,16,32,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,30,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,48,64,26,19,8,160,6,16,34,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,120,64,26,19,8,160,6,16,35,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,33,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,65,64,26,19,8,160,6,16,37,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,120,64,26,19,8,160,6,16,38,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,36,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,84,64,26,19,8,160,6,16,40,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,120,64,26,19,8,160,6,16,41,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,39,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,104,64,26,19,8,160,6,16,43,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,120,64,26,19,8,160,6,16,44,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,42,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,108,64,26,19,8,160,6,16,46,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,120,64,26,19,8,160,6,16,47,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,45,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,110,64,26,19,8,160,6,16,49,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,120,64,26,19,8,160,6,16,50,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,48,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,110,64,26,19,8,160,6,16,52,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,121,64,26,19,8,160,6,16,53,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,51,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,122,64,26,19,8,160,6,16,56,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,109,64,26,19,8,160,6,16,55,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,54,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,109,64,26,19,8,160,6,16,58,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,122,64,26,19,8,160,6,16,59,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,57,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,160,6,16,61,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,124,64,26,19,8,160,6,16,62,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,60,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,108,64,26,19,8,160,6,16,64,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,125,64,26,19,8,160,6,16,65,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,63,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,109,64,26,19,8,160,6,16,67,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,126,64,26,19,8,160,6,16,68,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,66,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,160,6,16,70,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,127,64,26,19,8,160,6,16,71,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,69,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,116,64,26,19,8,160,6,16,73,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,128,64,26,19,8,160,6,16,74,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,72,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,120,64,26,19,8,160,6,16,76,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,128,64,26,19,8,160,6,16,77,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,75,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,121,64,26,19,8,160,6,16,79,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,126,64,26,19,8,160,6,16,80,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,78,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,121,64,26,19,8,160,6,16,82,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,123,64,26,19,8,160,6,16,83,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,81,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,121,64,26,19,8,160,6,16,85,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,116,64,26,19,8,160,6,16,86,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,84,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,121,64,26,19,8,160,6,16,88,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,115,64,26,19,8,160,6,16,89,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,87,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,120,64,26,19,8,160,6,16,91,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,114,64,26,19,8,160,6,16,92,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,90,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,119,64,26,19,8,160,6,16,94,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,114,64,26,19,8,160,6,16,95,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,93,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,114,64,26,19,8,160,6,16,97,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,112,64,26,19,8,160,6,16,98,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,96,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,105,64,26,19,8,160,6,16,100,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,111,64,26,19,8,160,6,16,101,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,99,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,97,64,26,19,8,160,6,16,103,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,110,64,26,19,8,160,6,16,104,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,102,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,160,6,16,106,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,110,64,26,19,8,160,6,16,107,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,105,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,160,6,16,109,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,110,64,26,19,8,160,6,16,110,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,108,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,112,64,26,19,8,160,6,16,112,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,111,64,26,19,8,160,6,16,113,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,111,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,113,64,26,19,8,160,6,16,115,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,111,64,26,19,8,160,6,16,116,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,114,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,114,64,26,19,8,160,6,16,118,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,111,64,26,19,8,160,6,16,119,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,117,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,112,64,26,19,8,160,6,16,122,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,115,64,26,19,8,160,6,16,121,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,120,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,115,64,26,19,8,160,6,16,124,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,113,64,26,19,8,160,6,16,125,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,123,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,115,64,26,19,8,160,6,16,127,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,116,64,26,20,8,160,6,16,128,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,126,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,115,64,26,20,8,160,6,16,130,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,116,64,26,20,8,160,6,16,131,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,129,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,114,64,26,20,8,160,6,16,133,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,118,64,26,20,8,160,6,16,134,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,132,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,114,64,26,20,8,160,6,16,136,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,119,64,26,20,8,160,6,16,137,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,135,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,119,64,26,20,8,160,6,16,140,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,115,64,26,20,8,160,6,16,139,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,138,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,115,64,26,20,8,160,6,16,142,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,120,64,26,20,8,160,6,16,143,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,141,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,119,64,26,20,8,160,6,16,145,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,120,64,26,20,8,160,6,16,146,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,144,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,133,64,26,20,8,160,6,16,148,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,120,64,26,20,8,160,6,16,149,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,147,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,120,64,26,20,8,160,6,16,152,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,135,64,26,20,8,160,6,16,151,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,150,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,119,64,26,20,8,160,6,16,155,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,138,64,26,20,8,160,6,16,154,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,153,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,118,64,26,20,8,160,6,16,158,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,139,64,26,20,8,160,6,16,157,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,156,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,139,64,26,20,8,160,6,16,160,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,117,64,26,20,8,160,6,16,161,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,159,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,139,64,26,20,8,160,6,16,163,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,117,64,26,20,8,160,6,16,164,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,162,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,115,64,26,20,8,160,6,16,167,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,136,64,26,20,8,160,6,16,166,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,165,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,131,64,26,20,8,160,6,16,169,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,113,64,26,20,8,160,6,16,170,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,168,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,100,64,26,20,8,160,6,16,172,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,108,64,26,20,8,160,6,16,173,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,171,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,112,64,26,20,8,160,6,16,175,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,108,64,26,20,8,160,6,16,176,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,174,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,114,64,26,20,8,160,6,16,178,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,109,64,26,20,8,160,6,16,179,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,177,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,115,64,26,20,8,160,6,16,181,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,110,64,26,20,8,160,6,16,182,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,180,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,120,64,26,20,8,160,6,16,184,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,109,64,26,20,8,160,6,16,185,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,183,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,129,64,26,20,8,160,6,16,187,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,112,64,26,20,8,160,6,16,188,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,186,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,128,64,26,20,8,160,6,16,190,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,110,64,26,20,8,160,6,16,191,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,189,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,125,64,26,20,8,160,6,16,193,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,109,64,26,20,8,160,6,16,194,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,192,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,125,64,26,20,8,160,6,16,196,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,138,64,26,20,8,160,6,16,197,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,195,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,125,64,26,20,8,160,6,16,199,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,110,64,26,20,8,160,6,16,200,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,198,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,123,64,26,20,8,160,6,16,202,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,126,64,26,20,8,160,6,16,203,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,201,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,115,64,26,20,8,160,6,16,205,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,118,64,26,20,8,160,6,16,206,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,204,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,114,64,26,20,8,160,6,16,208,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,115,64,26,20,8,160,6,16,209,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,207,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,124,64,26,20,8,160,6,16,211,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,112,64,26,20,8,160,6,16,212,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,210,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,121,64,26,20,8,160,6,16,214,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,112,64,26,20,8,160,6,16,215,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,213,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,120,64,26,20,8,160,6,16,217,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,112,64,26,20,8,160,6,16,218,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,216,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,113,64,26,20,8,160,6,16,220,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,106,64,26,20,8,160,6,16,221,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,219,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,120,64,26,20,8,160,6,16,223,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,96,64,26,20,8,160,6,16,224,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,222,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,120,64,26,20,8,160,6,16,226,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,95,64,26,20,8,160,6,16,227,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,225,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,118,64,26,20,8,160,6,16,229,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,92,64,26,20,8,160,6,16,230,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,228,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,115,64,26,20,8,160,6,16,232,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,89,64,26,20,8,160,6,16,233,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,231,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,115,64,26,20,8,160,6,16,235,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,112,64,26,20,8,160,6,16,236,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,234,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,114,64,26,20,8,160,6,16,238,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,139,64,26,20,8,160,6,16,239,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,237,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,115,64,26,20,8,160,6,16,241,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,139,64,26,20,8,160,6,16,242,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,240,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,115,64,26,20,8,160,6,16,244,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,140,64,26,20,8,160,6,16,245,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,243,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,116,64,26,20,8,160,6,16,247,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,141,64,26,20,8,160,6,16,248,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,246,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,116,64,26,20,8,160,6,16,250,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,142,64,26,20,8,160,6,16,251,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,249,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,143,64,26,20,8,160,6,16,254,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,119,64,26,20,8,160,6,16,253,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,252,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,122,64,26,20,8,160,6,16,128,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,143,64,26,20,8,160,6,16,129,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,255,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,123,64,26,20,8,160,6,16,131,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,143,64,26,20,8,160,6,16,132,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,130,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,124,64,26,20,8,160,6,16,134,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,143,64,26,20,8,160,6,16,135,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,133,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,124,64,26,20,8,160,6,16,137,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,143,64,26,20,8,160,6,16,138,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,136,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,52,144,64,26,20,8,160,6,16,141,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,124,64,26,20,8,160,6,16,140,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,139,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,126,64,26,20,8,160,6,16,143,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,172,144,64,26,20,8,160,6,16,144,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,142,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,127,64,26,20,8,160,6,16,146,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,244,144,64,26,20,8,160,6,16,147,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,145,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,127,64,26,20,8,160,6,16,149,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,20,145,64,26,20,8,160,6,16,150,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,148,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,128,64,26,20,8,160,6,16,152,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,68,145,64,26,20,8,160,6,16,153,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,151,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,129,64,26,20,8,160,6,16,155,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,68,145,64,26,20,8,160,6,16,156,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,154,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,129,64,26,20,8,160,6,16,158,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,92,145,64,26,20,8,160,6,16,159,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,157,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,129,64,26,20,8,160,6,16,161,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,145,64,26,20,8,160,6,16,162,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,160,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,129,64,26,20,8,160,6,16,164,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,132,64,26,20,8,160,6,16,165,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,163,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,132,64,26,20,8,160,6,16,168,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,129,64,26,20,8,160,6,16,167,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,166,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,129,64,26,20,8,160,6,16,170,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,80,64,26,20,8,160,6,16,171,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,169,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,128,64,26,20,8,160,6,16,173,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,78,64,26,20,8,160,6,16,174,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,172,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,128,64,26,20,8,160,6,16,176,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,76,64,26,20,8,160,6,16,177,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,175,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,128,64,26,20,8,160,6,16,179,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,148,192,26,20,8,160,6,16,180,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,178,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,116,64,26,20,8,160,6,16,182,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,60,148,192,26,20,8,160,6,16,183,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,181,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,115,64,26,20,8,160,6,16,185,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,148,192,26,20,8,160,6,16,186,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,184,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,112,64,26,20,8,160,6,16,188,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,148,192,26,20,8,160,6,16,189,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,187,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,110,64,26,20,8,160,6,16,191,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,180,148,192,26,20,8,160,6,16,192,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,190,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,109,64,26,20,8,160,6,16,194,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,220,148,192,26,20,8,160,6,16,195,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,193,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,109,64,26,20,8,160,6,16,197,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,149,192,26,20,8,160,6,16,198,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,196,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,109,64,26,20,8,160,6,16,200,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,149,192,26,20,8,160,6,16,201,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,199,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,110,64,26,20,8,160,6,16,203,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,52,149,192,26,20,8,160,6,16,204,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,202,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,112,64,26,20,8,160,6,16,206,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,100,149,192,26,20,8,160,6,16,207,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,205,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,118,64,26,20,8,160,6,16,209,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,149,192,26,20,8,160,6,16,210,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,208,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,130,64,26,20,8,160,6,16,212,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,52,150,192,26,20,8,160,6,16,213,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,211,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,129,64,26,20,8,160,6,16,215,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,28,150,192,26,20,8,160,6,16,216,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,214,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,20,150,192,26,20,8,160,6,16,219,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,129,64,26,20,8,160,6,16,218,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,217,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,129,64,26,20,8,160,6,16,221,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,149,192,26,20,8,160,6,16,222,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,220,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,164,149,192,26,20,8,160,6,16,225,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,130,64,26,20,8,160,6,16,224,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,223,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,130,64,26,20,8,160,6,16,227,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,132,149,192,26,20,8,160,6,16,228,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,226,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,131,64,26,20,8,160,6,16,230,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,147,192,26,20,8,160,6,16,231,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,229,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,131,64,26,20,8,160,6,16,233,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,124,192,26,20,8,160,6,16,234,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,232,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,131,64,26,20,8,160,6,16,236,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,135,192,26,20,8,160,6,16,237,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,235,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,131,64,26,20,8,160,6,16,239,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,38,192,26,20,8,160,6,16,240,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,238,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,119,64,26,20,8,160,6,16,242,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,68,192,26,20,8,160,6,16,243,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,241,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,118,64,26,20,8,160,6,16,245,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,81,64,26,20,8,160,6,16,246,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,244,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,119,64,26,20,8,160,6,16,248,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,82,64,26,20,8,160,6,16,249,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,247,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,120,64,26,20,8,160,6,16,251,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,83,64,26,20,8,160,6,16,252,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,250,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,122,64,26,20,8,160,6,16,254,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,86,64,26,20,8,160,6,16,255,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,253,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,125,64,26,20,8,160,6,16,129,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,90,64,26,20,8,160,6,16,130,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,128,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,128,64,26,20,8,160,6,16,132,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,93,64,26,20,8,160,6,16,133,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,131,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,132,64,26,20,8,160,6,16,135,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,104,64,26,20,8,160,6,16,136,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,134,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,132,64,26,20,8,160,6,16,138,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,118,64,26,20,8,160,6,16,139,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,137,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,131,64,26,20,8,160,6,16,141,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,148,64,26,20,8,160,6,16,142,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,140,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,119,64,26,20,8,160,6,16,144,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,156,146,64,26,20,8,160,6,16,145,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,143,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,119,64,26,20,8,160,6,16,147,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,146,64,26,20,8,160,6,16,148,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,146,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,118,64,26,20,8,160,6,16,150,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,76,146,64,26,20,8,160,6,16,151,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,149,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,117,64,26,20,8,160,6,16,153,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,20,146,64,26,20,8,160,6,16,154,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,152,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,114,64,26,20,8,160,6,16,156,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,145,64,26,20,8,160,6,16,157,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,155,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,115,64,26,20,8,160,6,16,159,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,147,64,26,20,8,160,6,16,160,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,158,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,116,64,26,20,8,160,6,16,162,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,164,154,64,26,20,8,160,6,16,163,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,161,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,119,64,26,20,8,160,6,16,165,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,164,154,64,26,20,8,160,6,16,166,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,164,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,121,64,26,20,8,160,6,16,168,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,184,154,64,26,20,8,160,6,16,169,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,167,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,124,64,26,20,8,160,6,16,171,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,220,154,64,26,20,8,160,6,16,172,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,170,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,125,64,26,20,8,160,6,16,174,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,12,155,64,26,20,8,160,6,16,175,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,173,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,44,155,64,26,20,8,160,6,16,178,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,126,64,26,20,8,160,6,16,177,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,176,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,126,64,26,20,8,160,6,16,180,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,155,64,26,20,8,160,6,16,181,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,179,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,126,64,26,20,8,160,6,16,183,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,140,155,64,26,20,8,160,6,16,184,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,182,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,125,64,26,20,8,160,6,16,186,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,188,155,64,26,20,8,160,6,16,187,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,185,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,125,64,26,20,8,160,6,16,189,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,204,155,64,26,20,8,160,6,16,190,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,188,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,125,64,26,20,8,160,6,16,192,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,44,158,64,26,20,8,160,6,16,193,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,191,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,124,64,26,20,8,160,6,16,195,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,160,64,26,20,8,160,6,16,196,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,194,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,124,64,26,20,8,160,6,16,198,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,204,163,64,26,20,8,160,6,16,199,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,197,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,121,64,26,20,8,160,6,16,201,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,248,164,64,26,20,8,160,6,16,202,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,200,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,120,64,26,20,8,160,6,16,204,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,36,166,64,26,20,8,160,6,16,205,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,203,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,116,64,26,20,8,160,6,16,207,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,36,166,64,26,20,8,160,6,16,208,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,206,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,116,64,26,20,8,160,6,16,210,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,42,166,64,26,20,8,160,6,16,211,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,209,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,115,64,26,20,8,160,6,16,213,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,68,166,64,26,20,8,160,6,16,214,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,212,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,115,64,26,20,8,160,6,16,216,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,62,166,64,26,20,8,160,6,16,217,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,215,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,117,64,26,20,8,160,6,16,219,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,28,166,64,26,20,8,160,6,16,220,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,218,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,117,64,26,20,8,160,6,16,222,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,20,166,64,26,20,8,160,6,16,223,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,221,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,118,64,26,20,8,160,6,16,225,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,6,166,64,26,20,8,160,6,16,226,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,224,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,121,64,26,20,8,160,6,16,228,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,254,165,64,26,20,8,160,6,16,229,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,227,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,123,64,26,20,8,160,6,16,231,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,254,165,64,26,20,8,160,6,16,232,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,230,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,123,64,26,20,8,160,6,16,234,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,42,167,64,26,20,8,160,6,16,235,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,233,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,124,64,26,20,8,160,6,16,237,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,92,168,64,26,20,8,160,6,16,238,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,236,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,124,64,26,20,8,160,6,16,240,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,180,170,64,26,20,8,160,6,16,241,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,239,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,125,64,26,20,8,160,6,16,243,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,178,170,64,26,20,8,160,6,16,244,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,242,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,126,64,26,20,8,160,6,16,246,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,170,170,64,26,20,8,160,6,16,247,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,245,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,166,170,64,26,20,8,160,6,16,250,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,128,64,26,20,8,160,6,16,249,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,248,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,126,170,64,26,20,8,160,6,16,253,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,132,64,26,20,8,160,6,16,252,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,251,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,133,64,26,20,8,160,6,16,255,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,122,170,64,26,20,8,160,6,16,128,4,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,254,3,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,134,64,26,20,8,160,6,16,130,4,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,114,170,64,26,20,8,160,6,16,131,4,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,129,4,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,133,64,26,20,8,160,6,16,133,4,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,178,64,26,20,8,160,6,16,134,4,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,20,8,160,6,16,132,4,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,5,26,12,98,255,30,205,217,176,234,142,137,49,140,186,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,160,6,16,2,26,12,98,255,30,205,217,176,234,142,137,49,140,186,18,19,8,160,6,16,1,26,12,98,255,30,205,217,176,234,142,137,49,140,186,34,19,8,254,6,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,131,13,18,128,13,10,253,12,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,233,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,233,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,233,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,150,64,26,19,8,233,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,118,64,26,19,8,233,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,150,64,26,19,8,233,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,118,64,26,19,8,233,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,150,64,26,19,8,233,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,119,64,26,19,8,233,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,150,64,26,19,8,233,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,123,64,26,19,8,233,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,124,64,26,19,8,233,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,150,64,26,19,8,233,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,150,64,26,19,8,233,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,126,64,26,19,8,233,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,150,64,26,19,8,233,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,127,64,26,19,8,233,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,150,64,26,19,8,233,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,128,64,26,19,8,233,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,149,64,26,19,8,233,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,128,64,26,19,8,233,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,148,64,26,19,8,233,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,128,64,26,19,8,233,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,148,64,26,19,8,233,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,128,64,26,19,8,233,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,146,64,26,19,8,233,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,127,64,26,19,8,233,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,144,64,26,19,8,233,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,233,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,233,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,237,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,161,10,18,158,10,10,155,10,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,144,64,26,19,8,234,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,121,64,26,19,8,234,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,145,64,26,19,8,234,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,125,64,26,19,8,234,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,145,64,26,19,8,234,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,127,64,26,19,8,234,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,146,64,26,19,8,234,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,129,64,26,19,8,234,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,130,64,26,19,8,234,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,147,64,26,19,8,234,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,130,64,26,19,8,234,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,147,64,26,19,8,234,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,148,64,26,19,8,234,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,130,64,26,19,8,234,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,148,64,26,19,8,234,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,130,64,26,19,8,234,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,149,64,26,19,8,234,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,130,64,26,19,8,234,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,149,64,26,19,8,234,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,130,64,26,19,8,234,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,234,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,234,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,234,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,234,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,236,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,236,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,236,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,147,64,26,19,8,236,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,125,64,26,19,8,236,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,236,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,147,64,26,19,8,236,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,126,64,26,19,8,236,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,236,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,131,64,26,19,8,236,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,147,64,26,19,8,236,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,236,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,147,64,26,19,8,236,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,133,64,26,19,8,236,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,236,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,147,64,26,19,8,236,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,133,64,26,19,8,236,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,236,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,236,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,236,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,152,4,18,149,4,10,146,4,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,147,64,26,19,8,237,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,237,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,148,64,26,19,8,237,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,133,64,26,19,8,237,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,148,64,26,19,8,237,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,237,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,237,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,237,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,237,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,237,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,238,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,238,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,238,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,160,153,36,192,26,19,8,238,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,150,64,26,19,8,238,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,32,105,64,26,19,8,238,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,24,64,26,19,8,238,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,238,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,150,64,26,19,8,238,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,160,153,36,192,26,19,8,238,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,238,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,238,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,238,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,239,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,239,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,239,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,147,64,26,19,8,239,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,126,64,26,19,8,239,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,239,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,147,64,26,19,8,239,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,127,64,26,19,8,239,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,239,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,147,64,26,19,8,239,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,129,64,26,19,8,239,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,239,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,133,64,26,19,8,239,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,148,64,26,19,8,239,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,239,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,148,64,26,19,8,239,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,134,64,26,19,8,239,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,239,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,148,64,26,19,8,239,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,132,64,26,19,8,239,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,239,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,239,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,239,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,240,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,240,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,240,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,149,64,26,19,8,240,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,128,64,26,19,8,240,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,240,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,150,64,26,19,8,240,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,133,64,26,19,8,240,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,240,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,150,64,26,19,8,240,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,134,64,26,19,8,240,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,240,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,150,64,26,19,8,240,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,134,64,26,19,8,240,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,240,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,150,64,26,19,8,240,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,132,64,26,19,8,240,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,240,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,150,64,26,19,8,240,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,130,64,26,19,8,240,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,240,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,240,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,240,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,152,4,18,149,4,10,146,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,241,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,124,64,26,19,8,241,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,149,64,26,19,8,241,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,131,64,26,19,8,241,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,150,64,26,19,8,241,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,151,64,26,19,8,241,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,135,64,26,19,8,241,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,241,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,241,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,241,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,242,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,242,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,242,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,149,64,26,19,8,242,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,125,64,26,19,8,242,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,150,64,26,19,8,242,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,127,64,26,19,8,242,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,130,64,26,19,8,242,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,150,64,26,19,8,242,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,150,64,26,19,8,242,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,132,64,26,19,8,242,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,151,64,26,19,8,242,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,135,64,26,19,8,242,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,242,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,242,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,242,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,242,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,52,147,86,192,26,19,8,242,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,149,64,26,19,8,242,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,128,85,64,26,19,8,242,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,192,96,64,26,19,8,242,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,242,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,149,64,26,19,8,242,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,52,147,86,192,26,19,8,242,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,242,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,242,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,242,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,244,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,244,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,244,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,151,64,26,19,8,244,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,132,64,26,19,8,244,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,244,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,152,64,26,19,8,244,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,134,64,26,19,8,244,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,244,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,152,64,26,19,8,244,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,135,64,26,19,8,244,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,244,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,244,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,244,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,187,15,18,184,15,10,181,15,10,147,14,10,6,112,111,105,110,116,115,18,136,14,18,133,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,149,64,26,19,8,245,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,128,64,26,19,8,245,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,149,64,26,19,8,245,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,130,64,26,19,8,245,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,149,64,26,19,8,245,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,131,64,26,19,8,245,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,133,64,26,19,8,245,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,149,64,26,19,8,245,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,149,64,26,19,8,245,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,134,64,26,19,8,245,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,149,64,26,19,8,245,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,135,64,26,19,8,245,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,149,64,26,19,8,245,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,135,64,26,19,8,245,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,149,64,26,19,8,245,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,135,64,26,19,8,245,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,135,64,26,19,8,245,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,150,64,26,19,8,245,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,151,64,26,19,8,245,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,134,64,26,19,8,245,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,151,64,26,19,8,245,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,133,64,26,19,8,245,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,151,64,26,19,8,245,5,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,133,64,26,19,8,245,5,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,152,64,26,19,8,245,5,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,131,64,26,19,8,245,5,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,152,64,26,19,8,245,5,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,129,64,26,19,8,245,5,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,152,64,26,19,8,245,5,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,128,64,26,19,8,245,5,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,126,64,26,19,8,245,5,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,152,64,26,19,8,245,5,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,245,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,245,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,245,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,245,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,245,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,245,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,245,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,64,108,64,26,19,8,245,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,52,211,93,192,26,19,8,245,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,150,64,26,19,8,245,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,90,64,26,19,8,245,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,245,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,152,64,26,19,8,245,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,204,172,90,64,26,19,8,245,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,245,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,245,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,245,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,247,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,247,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,247,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,166,72,192,26,19,8,247,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,147,64,26,19,8,247,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,80,119,64,26,19,8,247,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,80,114,64,26,19,8,247,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,247,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,153,64,26,19,8,247,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,102,118,110,64,26,19,8,247,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,247,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,247,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,247,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,128,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,248,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,248,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,52,19,91,192,26,19,8,248,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,148,64,26,19,8,248,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,84,64,26,19,8,248,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,160,98,64,26,19,8,248,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,248,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,149,64,26,19,8,248,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,152,89,68,64,26,19,8,248,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,248,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,248,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,248,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,248,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,144,11,18,141,11,10,138,11,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,249,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,147,64,26,19,8,249,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,126,64,26,19,8,249,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,148,64,26,19,8,249,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,128,64,26,19,8,249,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,148,64,26,19,8,249,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,130,64,26,19,8,249,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,149,64,26,19,8,249,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,131,64,26,19,8,249,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,149,64,26,19,8,249,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,132,64,26,19,8,249,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,150,64,26,19,8,249,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,132,64,26,19,8,249,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,150,64,26,19,8,249,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,132,64,26,19,8,249,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,150,64,26,19,8,249,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,132,64,26,19,8,249,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,151,64,26,19,8,249,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,132,64,26,19,8,249,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,151,64,26,19,8,249,5,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,130,64,26,19,8,249,5,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,5,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,151,64,26,19,8,249,5,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,129,64,26,19,8,249,5,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,5,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,249,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,249,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,249,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,249,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,249,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,249,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,52,147,95,192,26,19,8,249,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,144,64,26,19,8,249,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,240,113,64,26,19,8,249,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,240,112,64,26,19,8,249,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,249,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,102,22,98,64,26,19,8,249,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,149,64,26,19,8,249,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,249,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,249,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,249,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,129,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,4,18,160,4,10,157,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,251,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,208,112,64,26,19,8,251,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,108,64,26,19,8,251,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,52,19,84,192,26,19,8,251,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,146,64,26,19,8,251,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,251,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,150,64,26,19,8,251,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,102,246,97,64,26,19,8,251,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,251,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,251,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,251,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,251,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,251,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,128,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,199,9,18,196,9,10,193,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,252,5,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,252,5,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,252,5,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,152,64,26,19,8,252,5,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,120,64,26,19,8,252,5,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,5,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,152,64,26,19,8,252,5,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,120,64,26,19,8,252,5,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,5,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,152,64,26,19,8,252,5,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,120,64,26,19,8,252,5,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,5,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,153,64,26,19,8,252,5,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,126,64,26,19,8,252,5,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,5,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,155,64,26,19,8,252,5,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,131,64,26,19,8,252,5,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,5,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,156,64,26,19,8,252,5,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,132,64,26,19,8,252,5,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,5,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,156,64,26,19,8,252,5,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,133,64,26,19,8,252,5,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,5,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,157,64,26,19,8,252,5,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,131,64,26,19,8,252,5,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,5,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,157,64,26,19,8,252,5,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,127,64,26,19,8,252,5,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,5,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,5,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,252,5,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,238,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,163,4,18,160,4,10,157,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,150,64,26,19,8,252,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,102,246,97,64,26,19,8,252,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,252,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,252,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,252,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,252,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,252,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,52,19,84,192,26,19,8,252,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,146,64,26,19,8,252,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,208,112,64,26,19,8,252,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,108,64,26,19,8,252,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,252,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,252,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,128,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,254,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,254,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,254,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,208,112,64,26,19,8,254,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,108,64,26,19,8,254,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,52,19,84,192,26,19,8,254,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,146,64,26,19,8,254,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,254,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,150,64,26,19,8,254,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,102,246,97,64,26,19,8,254,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,254,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,254,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,254,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,128,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,255,5,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,255,5,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,255,5,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,146,64,26,19,8,255,5,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,208,112,64,26,19,8,255,5,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,108,64,26,19,8,255,5,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,52,19,84,192,26,19,8,255,5,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,5,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,150,64,26,19,8,255,5,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,102,246,97,64,26,19,8,255,5,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,5,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,5,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,5,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,128,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,133,6,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,133,6,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,133,6,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,154,64,26,19,8,133,6,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,116,64,26,19,8,133,6,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,6,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,155,64,26,19,8,133,6,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,123,64,26,19,8,133,6,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,6,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,126,64,26,19,8,133,6,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,155,64,26,19,8,133,6,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,6,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,155,64,26,19,8,133,6,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,127,64,26,19,8,133,6,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,6,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,155,64,26,19,8,133,6,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,125,64,26,19,8,133,6,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,6,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,6,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,133,6,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,236,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,190,3,18,187,3,10,184,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,135,6,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,118,64,26,19,8,135,6,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,156,64,26,19,8,135,6,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,135,6,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,157,64,26,19,8,135,6,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,113,64,26,19,8,135,6,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,135,6,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,135,6,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,135,6,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,135,6,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,135,6,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,236,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,250,6,18,247,6,10,244,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,140,6,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,140,6,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,140,6,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,156,64,26,19,8,140,6,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,119,64,26,19,8,140,6,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,6,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,120,64,26,19,8,140,6,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,156,64,26,19,8,140,6,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,6,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,155,64,26,19,8,140,6,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,129,64,26,19,8,140,6,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,6,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,155,64,26,19,8,140,6,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,131,64,26,19,8,140,6,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,6,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,155,64,26,19,8,140,6,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,132,64,26,19,8,140,6,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,6,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,154,64,26,19,8,140,6,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,131,64,26,19,8,140,6,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,6,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,6,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,140,6,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,234,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,190,3,18,187,3,10,184,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,141,6,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,141,6,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,141,6,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,153,64,26,19,8,141,6,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,126,64,26,19,8,141,6,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,6,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,152,64,26,19,8,141,6,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,120,64,26,19,8,141,6,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,6,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,6,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,141,6,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,238,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,165,11,18,162,11,10,159,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,144,6,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,144,6,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,144,6,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,152,64,26,19,8,144,6,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,120,64,26,19,8,144,6,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,6,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,152,64,26,19,8,144,6,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,122,64,26,19,8,144,6,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,6,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,153,64,26,19,8,144,6,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,124,64,26,19,8,144,6,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,6,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,153,64,26,19,8,144,6,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,126,64,26,19,8,144,6,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,6,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,153,64,26,19,8,144,6,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,129,64,26,19,8,144,6,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,6,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,154,64,26,19,8,144,6,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,144,6,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,6,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,154,64,26,19,8,144,6,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,131,64,26,19,8,144,6,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,6,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,154,64,26,19,8,144,6,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,131,64,26,19,8,144,6,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,6,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,155,64,26,19,8,144,6,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,128,64,26,19,8,144,6,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,6,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,156,64,26,19,8,144,6,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,119,64,26,19,8,144,6,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,6,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,156,64,26,19,8,144,6,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,117,64,26,19,8,144,6,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,6,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,6,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,144,6,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,238,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,225,14,18,222,14,10,219,14,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,147,6,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,147,6,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,147,6,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,152,64,26,19,8,147,6,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,121,64,26,19,8,147,6,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,152,64,26,19,8,147,6,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,123,64,26,19,8,147,6,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,153,64,26,19,8,147,6,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,147,6,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,153,64,26,19,8,147,6,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,131,64,26,19,8,147,6,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,154,64,26,19,8,147,6,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,132,64,26,19,8,147,6,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,154,64,26,19,8,147,6,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,133,64,26,19,8,147,6,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,154,64,26,19,8,147,6,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,134,64,26,19,8,147,6,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,154,64,26,19,8,147,6,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,134,64,26,19,8,147,6,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,155,64,26,19,8,147,6,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,133,64,26,19,8,147,6,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,155,64,26,19,8,147,6,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,133,64,26,19,8,147,6,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,155,64,26,19,8,147,6,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,132,64,26,19,8,147,6,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,156,64,26,19,8,147,6,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,130,64,26,19,8,147,6,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,128,64,26,19,8,147,6,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,156,64,26,19,8,147,6,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,156,64,26,19,8,147,6,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,125,64,26,19,8,147,6,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,156,64,26,19,8,147,6,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,119,64,26,19,8,147,6,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,147,6,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,234,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,161,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,161,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,161,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,163,77,205,162,140,9,139,64,26,19,8,161,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,14,172,53,177,91,235,114,64,26,19,8,161,6,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,97,96,233,204,15,82,112,64,26,19,8,161,6,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,90,93,164,166,214,72,71,64,26,19,8,161,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,161,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,163,77,205,162,140,9,139,64,26,19,8,161,6,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,90,93,164,166,214,72,71,64,26,19,8,161,6,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,161,6,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,161,6,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,161,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,34,19,8,131,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,163,4,18,160,4,10,157,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,90,93,164,166,214,72,71,64,26,19,8,162,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,163,77,205,162,140,9,139,64,26,19,8,162,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,14,172,53,177,91,235,114,64,26,19,8,162,6,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,97,96,233,204,15,82,112,64,26,19,8,162,6,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,162,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,163,77,205,162,140,9,139,64,26,19,8,162,6,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,90,93,164,166,214,72,71,64,26,19,8,162,6,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,162,6,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,162,6,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,162,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,162,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,162,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,162,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,34,19,8,131,7,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,163,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,163,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,163,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,90,93,164,166,214,72,71,64,26,19,8,163,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,163,77,205,162,140,9,139,64,26,19,8,163,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,14,172,53,177,91,235,114,64,26,19,8,163,6,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,97,96,233,204,15,82,112,64,26,19,8,163,6,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,163,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,163,77,205,162,140,9,139,64,26,19,8,163,6,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,90,93,164,166,214,72,71,64,26,19,8,163,6,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,163,6,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,163,6,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,163,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,34,19,8,131,7,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,163,4,18,160,4,10,157,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,51,34,101,103,65,134,64,26,19,8,165,6,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,165,6,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,165,6,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,165,6,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,165,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,165,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,165,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,143,178,90,155,118,22,114,64,26,19,8,165,6,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,228,21,203,18,55,240,109,64,26,19,8,165,6,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,165,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,129,179,233,46,88,108,122,64,26,19,8,165,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,165,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,165,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,34,19,8,132,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,166,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,166,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,166,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,166,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,129,179,233,46,88,108,122,64,26,19,8,166,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,143,178,90,155,118,22,114,64,26,19,8,166,6,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,228,21,203,18,55,240,109,64,26,19,8,166,6,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,166,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,51,34,101,103,65,134,64,26,19,8,166,6,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,166,6,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,166,6,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,166,6,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,166,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,34,19,8,132,7,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,216,8,18,213,8,10,210,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,168,6,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,101,50,56,100,26,19,8,168,6,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,168,6,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,49,157,64,26,19,8,168,6,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,100,250,191,26,19,8,168,6,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,168,6,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,35,157,64,26,19,8,168,6,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,23,193,82,64,26,19,8,168,6,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,168,6,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,35,157,64,26,19,8,168,6,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,218,44,77,64,26,19,8,168,6,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,168,6,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,191,8,36,64,26,19,8,168,6,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,69,157,64,26,19,8,168,6,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,168,6,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,127,145,63,26,19,8,168,6,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,109,157,64,26,19,8,168,6,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,168,6,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,181,89,55,64,26,19,8,168,6,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,135,157,64,26,19,8,168,6,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,168,6,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,115,157,64,26,19,8,168,6,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,10,175,63,64,26,19,8,168,6,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,168,6,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,62,157,64,26,19,8,168,6,16,28,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,47,2,68,64,26,19,8,168,6,16,29,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,168,6,16,27,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,168,6,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,168,6,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,181,6,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,214,50,18,211,50,10,208,50,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,169,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,153,49,10,6,112,111,105,110,116,115,18,142,49,18,139,49,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,251,152,64,26,19,8,169,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,227,110,64,26,19,8,169,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,191,152,64,26,19,8,169,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,67,110,64,26,19,8,169,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,207,151,64,26,19,8,169,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,147,105,64,26,19,8,169,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,151,64,26,19,8,169,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,43,104,64,26,19,8,169,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,75,102,64,26,19,8,169,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,102,151,64,26,19,8,169,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,97,151,64,26,19,8,169,6,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,11,96,64,26,19,8,169,6,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,151,64,26,19,8,169,6,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,7,92,64,26,19,8,169,6,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,242,151,64,26,19,8,169,6,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,55,84,64,26,19,8,169,6,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,151,152,64,26,19,8,169,6,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,111,73,64,26,19,8,169,6,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,239,65,64,26,19,8,169,6,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,153,64,26,19,8,169,6,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,205,153,64,26,19,8,169,6,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,252,31,54,64,26,19,8,169,6,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,47,67,64,26,19,8,169,6,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,223,155,64,26,19,8,169,6,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,79,75,64,26,19,8,169,6,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,156,64,26,19,8,169,6,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,207,156,64,26,19,8,169,6,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,215,89,64,26,19,8,169,6,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,237,156,64,26,19,8,169,6,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,91,101,64,26,19,8,169,6,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,157,156,64,26,19,8,169,6,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,99,108,64,26,19,8,169,6,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,57,156,64,26,19,8,169,6,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,17,112,64,26,19,8,169,6,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,46,147,64,26,19,8,169,6,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,195,102,64,26,19,8,169,6,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,146,64,26,19,8,169,6,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,15,64,64,26,19,8,169,6,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,182,146,64,26,19,8,169,6,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,32,61,192,26,19,8,169,6,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,231,147,64,26,19,8,169,6,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,248,85,192,26,19,8,169,6,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,114,149,64,26,19,8,169,6,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,120,93,192,26,19,8,169,6,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,45,153,64,26,19,8,169,6,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,24,89,192,26,19,8,169,6,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,250,153,64,26,19,8,169,6,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,168,80,192,26,19,8,169,6,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,154,64,26,19,8,169,6,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,8,64,34,192,26,19,8,169,6,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,71,152,64,26,19,8,169,6,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,235,97,64,26,19,8,169,6,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,203,150,64,26,19,8,169,6,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,139,103,64,26,19,8,169,6,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,145,64,26,19,8,169,6,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,107,110,64,26,19,8,169,6,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,143,64,26,19,8,169,6,16,91,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,43,109,64,26,19,8,169,6,16,92,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,90,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,158,139,64,26,19,8,169,6,16,94,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,99,103,64,26,19,8,169,6,16,95,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,93,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,146,136,64,26,19,8,169,6,16,97,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,199,85,64,26,19,8,169,6,16,98,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,96,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,10,137,64,26,19,8,169,6,16,100,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,111,78,64,26,19,8,169,6,16,101,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,99,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,252,223,52,64,26,19,8,169,6,16,104,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,138,64,26,19,8,169,6,16,103,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,102,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,246,141,64,26,19,8,169,6,16,106,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,8,192,41,192,26,19,8,169,6,16,107,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,105,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,99,144,64,26,19,8,169,6,16,109,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,160,53,192,26,19,8,169,6,16,110,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,108,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,23,145,64,26,19,8,169,6,16,112,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,160,53,192,26,19,8,169,6,16,113,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,111,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,118,145,64,26,19,8,169,6,16,115,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,8,64,39,192,26,19,8,169,6,16,116,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,114,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,16,128,16,192,26,19,8,169,6,16,119,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,145,64,26,19,8,169,6,16,118,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,117,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,214,144,64,26,19,8,169,6,16,121,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,248,191,32,64,26,19,8,169,6,16,122,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,120,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,106,141,64,26,19,8,169,6,16,124,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,240,127,23,64,26,19,8,169,6,16,125,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,123,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,42,146,64,26,19,8,169,6,16,127,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,144,72,192,26,20,8,169,6,16,128,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,126,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,146,64,26,20,8,169,6,16,130,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,176,65,192,26,20,8,169,6,16,131,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,129,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,247,146,64,26,20,8,169,6,16,133,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,4,160,53,192,26,20,8,169,6,16,134,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,132,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,138,145,64,26,20,8,169,6,16,136,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,31,54,64,26,20,8,169,6,16,137,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,135,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,74,144,64,26,20,8,169,6,16,139,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,159,61,64,26,20,8,169,6,16,140,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,138,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,136,64,26,20,8,169,6,16,142,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,16,128,26,192,26,20,8,169,6,16,143,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,141,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,62,135,64,26,20,8,169,6,16,145,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,4,96,57,192,26,20,8,169,6,16,146,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,144,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,134,64,26,20,8,169,6,16,148,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,208,68,192,26,20,8,169,6,16,149,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,147,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,184,89,192,26,20,8,169,6,16,152,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,74,138,64,26,20,8,169,6,16,151,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,150,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,140,64,26,20,8,169,6,16,154,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,248,90,192,26,20,8,169,6,16,155,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,153,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,79,144,64,26,20,8,169,6,16,157,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,184,89,192,26,20,8,169,6,16,158,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,156,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,123,145,64,26,20,8,169,6,16,160,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,184,84,192,26,20,8,169,6,16,161,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,159,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,153,145,64,26,20,8,169,6,16,163,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,136,82,192,26,20,8,169,6,16,164,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,162,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,143,145,64,26,20,8,169,6,16,166,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,248,80,192,26,20,8,169,6,16,167,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,165,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,176,70,192,26,20,8,169,6,16,170,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,219,144,64,26,20,8,169,6,16,169,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,168,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,19,144,64,26,20,8,169,6,16,172,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,4,160,63,192,26,20,8,169,6,16,173,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,169,6,16,171,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,169,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,169,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,169,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,182,6,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,182,10,18,179,10,10,176,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,170,6,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,101,50,56,100,26,19,8,170,6,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,170,6,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,155,157,64,26,19,8,170,6,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,10,175,63,64,26,19,8,170,6,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,170,6,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,182,157,64,26,19,8,170,6,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,10,175,63,64,26,19,8,170,6,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,170,6,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,13,158,64,26,19,8,170,6,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,10,175,53,64,26,19,8,170,6,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,170,6,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,255,157,64,26,19,8,170,6,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,21,94,39,64,26,19,8,170,6,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,170,6,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,195,157,64,26,19,8,170,6,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,95,4,52,64,26,19,8,170,6,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,170,6,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,182,157,64,26,19,8,170,6,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,95,4,57,64,26,19,8,170,6,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,170,6,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,175,157,64,26,19,8,170,6,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,133,87,66,64,26,19,8,170,6,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,170,6,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,209,157,64,26,19,8,170,6,16,28,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,47,2,68,64,26,19,8,170,6,16,29,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,170,6,16,27,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,209,157,64,26,19,8,170,6,16,31,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,133,215,68,64,26,19,8,170,6,16,32,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,170,6,16,30,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,13,158,64,26,19,8,170,6,16,34,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,133,215,68,64,26,19,8,170,6,16,35,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,170,6,16,33,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,170,6,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,170,6,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,181,6,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,178,9,18,175,9,10,172,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,171,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,171,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,171,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,85,64,26,19,8,171,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,68,104,192,26,19,8,171,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,171,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,86,64,26,19,8,171,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,101,192,26,19,8,171,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,171,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,87,64,26,19,8,171,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,188,99,192,26,19,8,171,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,171,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,93,64,26,19,8,171,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,56,92,192,26,19,8,171,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,171,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,184,89,192,26,19,8,171,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,171,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,171,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,96,64,26,19,8,171,6,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,120,88,192,26,19,8,171,6,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,171,6,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,98,64,26,19,8,171,6,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,120,88,192,26,19,8,171,6,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,171,6,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,152,91,192,26,19,8,171,6,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,101,64,26,19,8,171,6,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,171,6,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,102,64,26,19,8,171,6,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,200,93,192,26,19,8,171,6,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,171,6,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,171,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,171,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,165,11,18,162,11,10,159,11,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,101,50,56,100,26,19,8,172,6,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,172,6,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,66,158,64,26,19,8,172,6,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,95,4,52,64,26,19,8,172,6,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,172,6,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,73,158,64,26,19,8,172,6,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,181,89,60,64,26,19,8,172,6,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,172,6,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,66,158,64,26,19,8,172,6,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,181,89,60,64,26,19,8,172,6,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,172,6,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,66,158,64,26,19,8,172,6,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,47,130,65,64,26,19,8,172,6,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,172,6,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,158,64,26,19,8,172,6,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,218,172,69,64,26,19,8,172,6,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,172,6,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,66,158,64,26,19,8,172,6,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,47,130,65,64,26,19,8,172,6,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,172,6,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,93,158,64,26,19,8,172,6,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,10,175,58,64,26,19,8,172,6,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,172,6,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,119,158,64,26,19,8,172,6,16,28,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,95,4,52,64,26,19,8,172,6,16,29,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,172,6,16,27,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,181,89,50,64,26,19,8,172,6,16,32,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,139,158,64,26,19,8,172,6,16,31,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,172,6,16,30,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,173,158,64,26,19,8,172,6,16,34,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,181,89,60,64,26,19,8,172,6,16,35,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,172,6,16,33,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,179,158,64,26,19,8,172,6,16,37,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,47,130,70,64,26,19,8,172,6,16,38,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,172,6,16,36,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,172,6,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,172,6,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,172,6,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,181,6,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,173,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,173,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,173,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,100,64,26,19,8,173,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,52,100,192,26,19,8,173,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,102,64,26,19,8,173,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,101,192,26,19,8,173,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,173,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,228,104,192,26,19,8,173,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,173,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,68,104,192,26,19,8,173,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,173,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,195,8,18,192,8,10,189,8,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,174,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,174,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,107,64,26,19,8,174,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,84,103,192,26,19,8,174,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,174,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,108,64,26,19,8,174,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,103,192,26,19,8,174,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,174,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,114,64,26,19,8,174,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,244,103,192,26,19,8,174,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,174,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,180,102,192,26,19,8,174,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,174,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,174,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,119,64,26,19,8,174,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,140,102,192,26,19,8,174,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,174,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,118,64,26,19,8,174,6,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,98,192,26,19,8,174,6,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,174,6,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,88,95,192,26,19,8,174,6,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,117,64,26,19,8,174,6,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,174,6,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,116,64,26,19,8,174,6,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,184,94,192,26,19,8,174,6,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,174,6,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,174,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,174,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,174,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,4,18,160,4,10,157,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,51,34,101,103,65,134,64,26,19,8,175,6,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,175,6,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,175,6,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,175,6,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,175,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,175,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,175,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,143,178,90,155,118,22,114,64,26,19,8,175,6,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,228,21,203,18,55,240,109,64,26,19,8,175,6,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,175,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,129,179,233,46,88,108,122,64,26,19,8,175,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,175,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,175,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,34,19,8,132,7,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,212,7,18,209,7,10,206,7,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,176,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,130,137,64,26,19,8,176,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,92,105,192,26,19,8,176,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,176,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,137,64,26,19,8,176,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,92,105,192,26,19,8,176,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,176,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,62,140,64,26,19,8,176,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,252,105,192,26,19,8,176,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,176,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,62,140,64,26,19,8,176,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,108,192,26,19,8,176,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,176,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,140,64,26,19,8,176,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,52,110,192,26,19,8,176,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,176,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,82,140,64,26,19,8,176,6,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,108,99,192,26,19,8,176,6,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,176,6,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,62,140,64,26,19,8,176,6,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,196,96,192,26,19,8,176,6,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,176,6,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,176,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,176,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,176,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,176,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,212,7,18,209,7,10,206,7,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,177,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,177,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,139,144,64,26,19,8,177,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,108,192,26,19,8,177,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,177,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,144,64,26,19,8,177,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,236,101,192,26,19,8,177,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,177,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,154,144,64,26,19,8,177,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,98,192,26,19,8,177,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,177,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,214,144,64,26,19,8,177,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,180,97,192,26,19,8,177,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,177,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,58,145,64,26,19,8,177,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,100,97,192,26,19,8,177,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,177,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,218,145,64,26,19,8,177,6,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,98,192,26,19,8,177,6,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,177,6,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,238,145,64,26,19,8,177,6,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,28,99,192,26,19,8,177,6,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,177,6,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,177,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,177,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,177,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,178,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,23,145,64,26,19,8,178,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,244,103,192,26,19,8,178,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,178,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,27,146,64,26,19,8,178,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,188,104,192,26,19,8,178,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,178,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,92,105,192,26,19,8,178,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,87,146,64,26,19,8,178,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,178,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,178,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,178,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,178,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,178,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,179,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,179,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,179,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,47,146,64,26,19,8,179,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,0,70,112,192,26,19,8,179,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,179,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,77,146,64,26,19,8,179,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,228,104,192,26,19,8,179,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,179,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,142,146,64,26,19,8,179,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,56,92,192,26,19,8,179,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,179,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,179,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,179,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,136,18,18,133,18,10,130,18,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,180,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,180,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,180,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,224,16,10,6,112,111,105,110,116,115,18,213,16,18,210,16,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,211,147,64,26,19,8,180,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,68,109,192,26,19,8,180,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,147,64,26,19,8,180,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,4,103,192,26,19,8,180,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,246,147,64,26,19,8,180,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,116,101,192,26,19,8,180,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,50,148,64,26,19,8,180,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,92,100,192,26,19,8,180,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,95,148,64,26,19,8,180,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,12,100,192,26,19,8,180,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,39,149,64,26,19,8,180,6,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,12,100,192,26,19,8,180,6,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,92,100,192,26,19,8,180,6,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,94,149,64,26,19,8,180,6,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,169,149,64,26,19,8,180,6,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,101,192,26,19,8,180,6,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,179,149,64,26,19,8,180,6,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,148,104,192,26,19,8,180,6,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,185,148,64,26,19,8,180,6,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,52,105,192,26,19,8,180,6,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,148,64,26,19,8,180,6,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,252,105,192,26,19,8,180,6,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,116,106,192,26,19,8,180,6,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,85,148,64,26,19,8,180,6,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,78,150,64,26,19,8,180,6,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,84,108,192,26,19,8,180,6,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,93,150,64,26,19,8,180,6,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,108,192,26,19,8,180,6,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,111,192,26,19,8,180,6,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,73,150,64,26,19,8,180,6,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,58,150,64,26,19,8,180,6,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,0,50,112,192,26,19,8,180,6,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,58,150,64,26,19,8,180,6,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,76,111,192,26,19,8,180,6,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,150,64,26,19,8,180,6,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,220,102,192,26,19,8,180,6,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,138,150,64,26,19,8,180,6,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,228,99,192,26,19,8,180,6,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,180,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,183,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,183,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,183,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,86,152,64,26,19,8,183,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,188,109,192,26,19,8,183,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,183,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,152,64,26,19,8,183,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,100,107,192,26,19,8,183,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,183,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,152,64,26,19,8,183,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,172,100,192,26,19,8,183,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,183,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,12,100,192,26,19,8,183,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,106,152,64,26,19,8,183,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,183,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,171,152,64,26,19,8,183,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,228,99,192,26,19,8,183,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,183,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,153,64,26,19,8,183,6,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,101,192,26,19,8,183,6,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,183,6,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,183,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,183,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,178,9,18,175,9,10,172,9,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,254,154,64,26,19,8,185,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,84,98,192,26,19,8,185,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,185,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,229,154,64,26,19,8,185,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,184,84,192,26,19,8,185,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,185,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,229,154,64,26,19,8,185,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,80,71,192,26,19,8,185,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,185,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,23,155,64,26,19,8,185,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,1,216,191,26,19,8,185,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,185,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,155,64,26,19,8,185,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,248,63,35,64,26,19,8,185,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,185,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,155,64,26,19,8,185,6,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,248,63,45,64,26,19,8,185,6,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,185,6,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,238,155,64,26,19,8,185,6,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,248,191,42,64,26,19,8,185,6,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,185,6,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,157,64,26,19,8,185,6,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,8,64,34,192,26,19,8,185,6,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,185,6,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,157,64,26,19,8,185,6,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,8,192,41,192,26,19,8,185,6,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,185,6,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,185,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,185,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,185,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,185,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,185,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,186,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,186,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,186,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,77,156,64,26,19,8,186,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,100,97,192,26,19,8,186,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,186,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,62,156,64,26,19,8,186,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,136,87,192,26,19,8,186,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,186,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,157,64,26,19,8,186,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,88,80,192,26,19,8,186,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,186,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,231,157,64,26,19,8,186,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,232,81,192,26,19,8,186,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,186,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,186,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,186,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,233,7,18,230,7,10,227,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,187,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,187,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,187,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,138,155,64,26,19,8,187,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,135,89,64,26,19,8,187,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,187,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,113,155,64,26,19,8,187,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,55,94,64,26,19,8,187,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,187,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,155,64,26,19,8,187,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,147,100,64,26,19,8,187,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,187,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,219,103,64,26,19,8,187,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,93,155,64,26,19,8,187,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,187,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,155,64,26,19,8,187,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,107,105,64,26,19,8,187,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,187,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,147,105,64,26,19,8,187,6,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,203,155,64,26,19,8,187,6,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,187,6,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,171,157,64,26,19,8,187,6,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,195,102,64,26,19,8,187,6,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,187,6,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,187,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,187,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,241,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,140,19,18,137,19,10,134,19,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,188,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,188,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,207,17,10,6,112,111,105,110,116,115,18,196,17,18,193,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,158,64,26,19,8,188,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,215,84,64,26,19,8,188,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,119,95,64,26,19,8,188,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,105,158,64,26,19,8,188,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,158,64,26,19,8,188,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,139,98,64,26,19,8,188,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,135,158,64,26,19,8,188,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,43,99,64,26,19,8,188,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,158,64,26,19,8,188,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,83,99,64,26,19,8,188,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,39,159,64,26,19,8,188,6,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,3,99,64,26,19,8,188,6,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,229,159,64,26,19,8,188,6,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,19,98,64,26,19,8,188,6,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,160,64,26,19,8,188,6,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,155,97,64,26,19,8,188,6,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,128,31,160,64,26,19,8,188,6,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,167,92,64,26,19,8,188,6,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,128,46,160,64,26,19,8,188,6,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,23,86,64,26,19,8,188,6,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,154,159,64,26,19,8,188,6,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,7,87,64,26,19,8,188,6,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,199,159,64,26,19,8,188,6,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,207,72,64,26,19,8,188,6,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,128,56,160,64,26,19,8,188,6,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,1,216,191,26,19,8,188,6,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,160,64,26,19,8,188,6,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,96,52,192,26,19,8,188,6,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,160,64,26,19,8,188,6,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,48,68,192,26,19,8,188,6,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,119,160,64,26,19,8,188,6,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,136,82,192,26,19,8,188,6,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,119,160,64,26,19,8,188,6,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,136,87,192,26,19,8,188,6,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,128,106,160,64,26,19,8,188,6,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,248,191,37,64,26,19,8,188,6,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,128,106,160,64,26,19,8,188,6,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,215,89,64,26,19,8,188,6,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,159,160,64,26,19,8,188,6,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,205,114,64,26,19,8,188,6,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,188,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,188,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,240,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,246,5,18,243,5,10,240,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,189,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,81,64,26,19,8,189,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,96,62,192,26,19,8,189,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,189,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,67,64,26,19,8,189,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,248,63,40,64,26,19,8,189,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,189,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,74,64,26,19,8,189,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,252,223,57,64,26,19,8,189,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,189,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,92,64,26,19,8,189,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,252,223,57,64,26,19,8,189,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,189,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,97,64,26,19,8,189,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,252,223,52,64,26,19,8,189,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,189,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,189,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,189,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,189,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,189,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,84,64,26,19,8,190,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,16,128,16,192,26,19,8,190,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,190,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,93,64,26,19,8,190,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,224,255,10,64,26,19,8,190,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,190,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,98,64,26,19,8,190,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,252,31,49,64,26,19,8,190,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,190,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,190,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,190,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,190,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,190,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,190,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,191,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,191,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,191,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,96,64,26,19,8,191,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,252,223,57,64,26,19,8,191,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,191,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,97,64,26,19,8,191,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,15,69,64,26,19,8,191,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,191,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,191,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,191,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,4,18,160,4,10,157,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,192,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,192,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,129,179,233,46,88,108,122,64,26,19,8,192,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,143,178,90,155,118,22,114,64,26,19,8,192,6,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,228,21,203,18,55,240,109,64,26,19,8,192,6,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,192,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,51,34,101,103,65,134,64,26,19,8,192,6,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,192,6,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,192,6,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,192,6,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,192,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,192,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,192,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,34,19,8,132,7,16,4,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,193,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,193,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,193,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,193,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,129,179,233,46,88,108,122,64,26,19,8,193,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,143,178,90,155,118,22,114,64,26,19,8,193,6,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,228,21,203,18,55,240,109,64,26,19,8,193,6,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,193,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,51,34,101,103,65,134,64,26,19,8,193,6,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,193,6,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,193,6,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,193,6,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,193,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,34,19,8,132,7,16,5,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,194,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,194,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,194,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,194,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,129,179,233,46,88,108,122,64,26,19,8,194,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,143,178,90,155,118,22,114,64,26,19,8,194,6,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,228,21,203,18,55,240,109,64,26,19,8,194,6,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,194,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,51,34,101,103,65,134,64,26,19,8,194,6,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,194,6,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,194,6,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,194,6,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,194,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,34,19,8,132,7,16,6,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,163,4,18,160,4,10,157,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,143,178,90,155,118,22,114,64,26,19,8,195,6,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,228,21,203,18,55,240,109,64,26,19,8,195,6,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,195,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,129,179,233,46,88,108,122,64,26,19,8,195,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,195,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,51,34,101,103,65,134,64,26,19,8,195,6,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,195,6,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,195,6,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,195,6,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,195,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,195,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,195,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,195,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,34,19,8,132,7,16,7,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,239,25,18,236,25,10,233,25,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,196,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,196,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,196,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,199,24,10,6,112,111,105,110,116,115,18,188,24,18,185,24,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,60,185,187,132,165,94,129,64,26,19,8,196,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,29,166,72,30,54,27,93,64,26,19,8,196,6,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,60,185,187,132,165,94,129,64,26,19,8,196,6,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,38,244,4,24,121,32,83,64,26,19,8,196,6,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,4,200,212,120,144,134,129,64,26,19,8,196,6,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,82,28,50,129,201,153,79,64,26,19,8,196,6,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,55,120,47,205,154,131,64,26,19,8,196,6,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,87,67,16,254,106,156,74,64,26,19,8,196,6,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,127,154,209,17,212,88,135,64,26,19,8,196,6,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,87,67,16,254,106,156,74,64,26,19,8,196,6,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,117,251,91,212,37,69,137,64,26,19,8,196,6,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,54,198,41,53,70,76,64,26,19,8,196,6,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,208,223,23,26,159,138,64,26,19,8,196,6,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,40,1,79,236,174,118,81,64,26,19,8,196,6,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,162,211,75,133,242,72,87,64,26,19,8,196,6,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,43,217,211,33,234,155,139,64,26,19,8,196,6,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,18,35,81,230,128,99,140,64,26,19,8,196,6,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,140,63,181,80,74,12,97,64,26,19,8,196,6,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,10,145,37,125,8,166,140,64,26,19,8,196,6,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,132,254,66,43,61,93,105,64,26,19,8,196,6,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,122,115,243,148,50,86,140,64,26,19,8,196,6,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,202,91,97,88,103,79,117,64,26,19,8,196,6,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,121,24,127,77,129,139,64,26,19,8,196,6,16,40,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,116,141,25,148,71,60,123,64,26,19,8,196,6,16,41,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,39,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,208,223,23,26,159,138,64,26,19,8,196,6,16,43,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,97,79,46,25,235,20,127,64,26,19,8,196,6,16,44,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,42,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,230,29,246,31,242,137,64,26,19,8,196,6,16,46,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,247,47,139,150,69,135,128,64,26,19,8,196,6,16,47,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,45,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,16,154,178,43,152,136,64,26,19,8,196,6,16,49,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,46,20,40,206,36,9,130,64,26,19,8,196,6,16,50,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,48,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,79,59,22,111,55,62,135,64,26,19,8,196,6,16,52,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,21,94,165,146,187,208,130,64,26,19,8,196,6,16,53,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,51,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,120,21,240,124,145,241,133,64,26,19,8,196,6,16,55,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,117,28,28,216,244,5,131,64,26,19,8,196,6,16,56,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,54,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,125,174,71,65,109,195,130,64,26,19,8,196,6,16,59,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,105,254,226,126,214,204,132,64,26,19,8,196,6,16,58,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,57,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,85,170,23,163,234,131,64,26,19,8,196,6,16,61,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,54,166,83,55,157,198,129,64,26,19,8,196,6,16,62,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,60,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,231,213,128,27,168,131,64,26,19,8,196,6,16,64,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,8,84,226,104,54,2,128,64,26,19,8,196,6,16,65,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,63,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,122,34,58,81,199,71,132,64,26,19,8,196,6,16,67,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,212,75,144,217,128,113,123,64,26,19,8,196,6,16,68,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,66,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,120,21,240,124,145,241,133,64,26,19,8,196,6,16,70,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,217,114,110,86,34,116,118,64,26,19,8,196,6,16,71,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,69,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,5,25,142,188,251,148,137,64,26,19,8,196,6,16,73,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,207,130,63,213,8,82,112,64,26,19,8,196,6,16,74,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,72,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,26,181,124,79,249,32,140,64,26,19,8,196,6,16,76,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,160,31,19,83,125,80,109,64,26,19,8,196,6,16,77,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,75,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,160,51,57,250,32,93,142,64,26,19,8,196,6,16,79,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,96,156,0,222,239,186,109,64,26,19,8,196,6,16,80,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,78,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,45,20,16,6,50,143,64,26,19,8,196,6,16,82,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,223,149,219,243,212,143,110,64,26,19,8,196,6,16,83,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,81,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,63,101,13,237,50,2,112,64,26,19,8,196,6,16,86,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,111,199,51,131,78,236,143,64,26,19,8,196,6,16,85,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,84,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,27,107,166,187,28,10,144,64,26,19,8,196,6,16,88,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,190,94,232,2,24,215,112,64,26,19,8,196,6,16,89,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,87,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,196,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,240,40,18,237,40,10,234,40,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,197,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,197,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,197,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,179,39,10,6,112,111,105,110,116,115,18,168,39,18,165,39,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,200,88,170,87,131,127,151,64,26,19,8,197,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,239,157,95,45,205,201,128,64,26,19,8,197,6,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,74,145,99,152,87,151,64,26,19,8,197,6,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,135,77,189,126,27,215,128,64,26,19,8,197,6,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,75,108,25,22,212,0,149,64,26,19,8,197,6,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,239,157,95,45,205,201,128,64,26,19,8,197,6,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,143,184,193,191,29,117,148,64,26,19,8,197,6,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,194,182,255,189,68,128,64,26,19,8,197,6,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,112,125,93,239,113,213,147,64,26,19,8,197,6,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,161,210,64,142,120,170,126,64,26,19,8,197,6,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,150,149,210,223,166,147,64,26,19,8,197,6,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,242,121,170,213,246,186,125,64,26,19,8,197,6,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,76,121,99,234,9,87,147,64,26,19,8,197,6,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,82,181,195,155,156,122,64,26,19,8,197,6,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,146,155,205,119,40,147,64,26,19,8,197,6,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,42,26,216,157,160,132,117,64,26,19,8,197,6,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,124,216,30,141,166,113,147,64,26,19,8,197,6,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,255,208,63,196,128,47,111,64,26,19,8,197,6,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,208,59,212,52,171,10,148,64,26,19,8,197,6,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,5,5,104,21,88,136,104,64,26,19,8,197,6,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,2,63,132,180,60,149,64,26,19,8,197,6,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,222,47,128,125,222,219,91,64,26,19,8,197,6,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,33,146,63,8,122,77,150,64,26,19,8,197,6,16,40,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,104,132,97,97,60,12,81,64,26,19,8,197,6,16,41,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,39,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,209,157,221,141,107,151,64,26,19,8,197,6,16,43,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,87,67,16,254,106,156,74,64,26,19,8,197,6,16,44,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,42,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,152,8,45,151,157,152,64,26,19,8,197,6,16,46,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,87,67,16,254,106,156,74,64,26,19,8,197,6,16,47,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,45,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,130,255,183,217,3,181,153,64,26,19,8,197,6,16,49,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,102,119,23,141,6,182,82,64,26,19,8,197,6,16,50,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,48,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,13,70,218,58,101,55,96,64,26,19,8,197,6,16,53,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,149,223,90,12,123,184,154,64,26,19,8,197,6,16,52,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,51,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,185,227,84,17,227,54,155,64,26,19,8,197,6,16,55,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,5,5,104,21,88,136,104,64,26,19,8,197,6,16,56,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,54,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,81,147,178,98,49,68,155,64,26,19,8,197,6,16,58,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,207,130,63,213,8,82,112,64,26,19,8,197,6,16,59,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,57,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,237,11,166,232,59,48,155,64,26,19,8,197,6,16,61,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,172,45,71,92,241,5,115,64,26,19,8,197,6,16,62,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,60,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,198,34,41,13,231,154,64,26,19,8,197,6,16,64,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,72,72,242,153,22,206,119,64,26,19,8,197,6,16,65,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,63,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,83,69,107,239,101,70,124,64,26,19,8,197,6,16,68,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,162,58,28,170,175,84,154,64,26,19,8,197,6,16,67,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,66,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,224,72,9,47,208,233,127,64,26,19,8,197,6,16,71,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,30,120,171,95,14,161,153,64,26,19,8,197,6,16,70,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,69,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,86,127,114,208,210,152,64,26,19,8,197,6,16,73,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,231,11,52,196,84,12,129,64,26,19,8,197,6,16,74,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,72,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,15,217,195,253,120,105,129,64,26,19,8,197,6,16,77,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,32,133,245,51,68,247,151,64,26,19,8,197,6,16,76,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,75,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,220,188,204,16,21,151,64,26,19,8,197,6,16,79,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,31,253,26,208,105,228,128,64,26,19,8,197,6,16,80,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,78,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,29,201,169,211,189,110,150,64,26,19,8,197,6,16,82,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,193,13,165,94,36,74,127,64,26,19,8,197,6,16,83,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,81,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,131,38,20,143,37,150,64,26,19,8,197,6,16,85,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,19,194,88,122,216,176,124,64,26,19,8,197,6,16,86,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,84,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,146,116,13,32,164,253,149,64,26,19,8,197,6,16,88,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,118,154,99,104,125,146,121,64,26,19,8,197,6,16,89,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,87,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,10,223,115,205,244,228,116,64,26,19,8,197,6,16,92,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,242,50,132,101,221,50,150,64,26,19,8,197,6,16,91,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,90,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,175,113,240,79,157,150,64,26,19,8,197,6,16,94,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,43,39,34,114,214,218,115,64,26,19,8,197,6,16,95,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,93,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,128,251,46,220,120,151,64,26,19,8,197,6,16,97,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,141,242,226,139,69,102,114,64,26,19,8,197,6,16,98,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,96,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,202,120,243,114,64,152,64,26,19,8,197,6,16,100,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,157,22,58,94,54,225,113,64,26,19,8,197,6,16,101,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,99,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,221,139,236,197,230,152,64,26,19,8,197,6,16,103,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,253,212,176,163,111,22,114,64,26,19,8,197,6,16,104,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,102,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,243,225,133,241,45,101,153,64,26,19,8,197,6,16,106,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,12,236,189,161,42,59,115,64,26,19,8,197,6,16,107,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,105,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,39,9,177,92,174,153,64,26,19,8,197,6,16,109,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,185,55,10,134,118,212,117,64,26,19,8,197,6,16,110,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,108,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,26,175,21,43,82,194,153,64,26,19,8,197,6,16,112,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,214,88,218,173,182,199,121,64,26,19,8,197,6,16,113,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,111,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,24,240,188,113,134,153,64,26,19,8,197,6,16,115,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,178,246,151,96,105,37,126,64,26,19,8,197,6,16,116,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,114,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,126,208,73,41,204,152,64,26,19,8,197,6,16,118,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,110,151,58,67,178,158,129,64,26,19,8,197,6,16,119,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,117,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,20,42,52,150,15,91,152,64,26,19,8,197,6,16,121,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,30,240,208,251,51,142,130,64,26,19,8,197,6,16,122,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,120,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,48,169,76,6,53,114,151,64,26,19,8,197,6,16,124,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,188,36,16,226,196,2,132,64,26,19,8,197,6,16,125,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,123,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,121,190,138,228,58,197,150,64,26,19,8,197,6,16,127,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,11,191,47,85,13,189,132,64,26,20,8,197,6,16,128,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,126,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,233,160,88,252,100,117,150,64,26,20,8,197,6,16,130,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,3,45,4,236,148,255,132,64,26,20,8,197,6,16,131,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,197,6,16,129,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,133,25,76,130,111,97,150,64,26,20,8,197,6,16,133,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,3,45,4,236,148,255,132,64,26,20,8,197,6,16,134,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,197,6,16,132,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,65,157,89,200,90,150,64,26,20,8,197,6,16,136,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,51,140,191,142,49,26,133,64,26,20,8,197,6,16,137,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,197,6,16,135,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,81,241,250,170,22,104,150,64,26,20,8,197,6,16,139,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,99,235,122,49,206,52,133,64,26,20,8,197,6,16,140,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,197,6,16,138,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,197,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,34,19,8,236,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,188,60,18,185,60,10,182,60,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,198,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,198,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,198,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,255,58,10,6,112,111,105,110,116,115,18,244,58,18,241,58,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,153,93,158,33,115,231,132,64,26,19,8,198,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,68,176,22,97,34,149,132,64,26,19,8,198,6,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,161,239,201,138,235,164,132,64,26,19,8,198,6,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,244,21,247,237,217,218,131,64,26,19,8,198,6,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,114,144,14,232,78,138,132,64,26,19,8,198,6,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,221,108,190,134,166,248,130,64,26,19,8,198,6,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,224,176,150,0,125,132,64,26,19,8,198,6,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,65,20,202,72,63,117,126,64,26,19,8,198,6,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,78,133,45,136,191,132,64,26,19,8,198,6,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,3,158,1,168,231,53,125,64,26,19,8,198,6,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,123,208,9,73,55,133,64,26,19,8,198,6,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,4,171,75,124,29,140,123,64,26,19,8,198,6,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,87,121,55,88,188,133,64,26,19,8,198,6,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,82,181,195,155,156,122,64,26,19,8,198,6,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,208,65,59,89,82,105,134,64,26,19,8,198,6,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,54,23,81,243,239,252,121,64,26,19,8,198,6,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,79,59,22,111,55,62,135,64,26,19,8,198,6,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,214,88,218,173,182,199,121,64,26,19,8,198,6,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,134,31,179,166,22,192,136,64,26,19,8,198,6,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,6,184,149,80,83,226,121,64,26,19,8,198,6,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,165,90,23,119,194,95,137,64,26,19,8,198,6,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,82,181,195,155,156,122,64,26,19,8,198,6,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,134,98,83,131,215,137,64,26,19,8,198,6,16,40,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,212,75,144,217,128,113,123,64,26,19,8,198,6,16,41,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,39,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,28,194,198,35,47,119,138,64,26,19,8,198,6,16,43,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,3,158,1,168,231,53,125,64,26,19,8,198,6,16,44,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,42,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,20,48,155,186,182,185,138,64,26,19,8,198,6,16,46,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,32,204,27,164,93,127,127,64,26,19,8,198,6,16,47,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,45,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,62,180,174,161,225,138,64,26,19,8,198,6,16,49,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,71,202,170,9,142,65,129,64,26,19,8,198,6,16,50,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,48,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,125,174,71,65,109,195,130,64,26,19,8,198,6,16,53,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,116,238,17,0,240,238,138,64,26,19,8,198,6,16,52,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,51,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,62,180,174,161,225,138,64,26,19,8,198,6,16,55,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,163,110,141,166,91,202,132,64,26,19,8,198,6,16,56,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,54,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,20,48,155,186,182,185,138,64,26,19,8,198,6,16,58,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,235,118,129,176,43,199,133,64,26,19,8,198,6,16,59,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,57,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,143,86,93,83,212,138,64,26,19,8,198,6,16,61,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,178,133,154,164,22,239,133,64,26,19,8,198,6,16,62,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,60,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,18,68,17,234,79,36,134,64,26,19,8,198,6,16,65,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,107,92,230,150,119,49,139,64,26,19,8,198,6,16,64,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,63,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,218,82,42,222,58,76,134,64,26,19,8,198,6,16,68,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,130,5,31,254,170,19,140,64,26,19,8,198,6,16,67,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,66,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,87,144,204,17,216,141,64,26,19,8,198,6,16,70,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,114,2,136,47,137,89,134,64,26,19,8,198,6,16,71,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,69,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,15,16,229,29,232,109,144,64,26,19,8,198,6,16,73,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,243,110,59,158,49,134,64,26,19,8,198,6,16,74,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,72,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,49,17,11,38,60,145,64,26,19,8,198,6,16,76,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,26,214,60,83,200,225,133,64,26,19,8,198,6,16,77,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,75,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,214,79,109,241,159,145,64,26,19,8,198,6,16,79,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,43,250,147,37,185,92,133,64,26,19,8,198,6,16,80,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,78,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,68,36,4,121,226,145,64,26,19,8,198,6,16,82,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,68,176,22,97,34,149,132,64,26,19,8,198,6,16,83,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,81,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,217,218,73,114,89,30,146,64,26,19,8,198,6,16,85,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,109,138,240,110,124,72,131,64,26,19,8,198,6,16,86,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,84,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,58,5,21,246,56,146,64,26,19,8,198,6,16,88,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,190,49,90,182,250,88,130,64,26,19,8,198,6,16,89,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,87,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,57,153,192,183,146,83,146,64,26,19,8,198,6,16,91,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,56,179,157,11,211,28,128,64,26,19,8,198,6,16,92,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,90,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,109,193,17,143,235,76,146,64,26,19,8,198,6,16,94,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,36,230,175,76,201,43,124,64,26,19,8,198,6,16,95,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,93,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,217,218,73,114,89,30,146,64,26,19,8,198,6,16,97,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,230,124,49,128,167,66,121,64,26,19,8,198,6,16,98,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,96,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,108,117,219,209,219,145,64,26,19,8,198,6,16,100,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,248,173,210,38,206,19,119,64,26,19,8,198,6,16,101,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,99,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,39,242,27,163,146,145,64,26,19,8,198,6,16,103,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,185,55,10,134,118,212,117,64,26,19,8,198,6,16,104,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,102,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,94,170,4,145,48,40,145,64,26,19,8,198,6,16,106,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,154,252,165,181,202,52,117,64,26,19,8,198,6,16,107,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,105,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,206,91,99,33,163,144,64,26,19,8,198,6,16,109,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,106,157,234,18,46,26,117,64,26,19,8,198,6,16,110,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,108,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,138,216,78,227,217,185,117,64,26,19,8,198,6,16,113,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,79,147,247,146,117,3,144,64,26,19,8,198,6,16,112,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,111,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,79,140,207,178,162,76,143,64,26,19,8,198,6,16,115,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,9,210,41,249,190,142,118,64,26,19,8,198,6,16,116,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,114,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,15,226,39,48,226,142,64,26,19,8,198,6,16,118,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,88,108,73,108,7,73,119,64,26,19,8,198,6,16,119,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,117,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,176,38,133,147,199,142,64,26,19,8,198,6,16,121,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,72,72,242,153,22,206,119,64,26,19,8,198,6,16,122,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,120,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,48,81,107,226,246,172,142,64,26,19,8,198,6,16,124,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,182,29,118,221,10,40,121,64,26,19,8,198,6,16,125,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,123,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,192,110,157,202,204,252,142,64,26,19,8,198,6,16,127,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,21,207,162,78,14,7,123,64,26,20,8,198,6,16,128,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,126,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,27,107,166,187,28,10,144,64,26,20,8,198,6,16,130,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,242,121,170,213,246,186,125,64,26,20,8,198,6,16,131,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,129,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,55,221,116,87,12,203,144,64,26,20,8,198,6,16,133,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,8,84,226,104,54,2,128,64,26,20,8,198,6,16,134,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,132,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,82,79,67,243,251,139,145,64,26,20,8,198,6,16,136,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,143,223,232,231,147,148,128,64,26,20,8,198,6,16,137,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,135,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,57,153,192,183,146,83,146,64,26,20,8,198,6,16,139,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,135,77,189,126,27,215,128,64,26,20,8,198,6,16,140,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,138,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,189,91,49,2,52,7,147,64,26,20,8,198,6,16,142,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,39,143,70,57,226,161,128,64,26,20,8,198,6,16,143,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,141,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,216,205,255,157,35,200,147,64,26,20,8,198,6,16,145,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,113,115,133,235,219,143,126,64,26,20,8,198,6,16,146,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,144,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,203,114,62,0,239,43,148,64,26,20,8,198,6,16,148,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,148,200,125,100,243,219,123,64,26,20,8,198,6,16,149,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,147,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,245,147,62,126,98,103,122,64,26,20,8,198,6,16,152,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,120,18,36,26,34,8,4,18,8,147,129,87,244,217,83,148,64,26,20,8,198,6,16,151,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,150,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,243,63,206,57,19,137,148,64,26,20,8,198,6,16,154,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,184,42,192,177,64,126,119,64,26,20,8,198,6,16,155,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,153,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,191,23,125,98,186,143,148,64,26,20,8,198,6,16,157,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,10,223,115,205,244,228,116,64,26,20,8,198,6,16,158,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,156,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,143,184,193,191,29,117,148,64,26,20,8,198,6,16,160,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,124,206,139,185,84,235,114,64,26,20,8,198,6,16,161,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,159,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,251,209,249,162,139,70,148,64,26,20,8,198,6,16,163,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,109,183,126,187,153,198,113,64,26,20,8,198,6,16,164,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,162,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,104,235,49,134,249,23,148,64,26,20,8,198,6,16,166,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,78,124,26,235,237,38,113,64,26,20,8,198,6,16,167,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,165,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,8,45,187,64,192,226,147,64,26,20,8,198,6,16,169,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,238,189,163,165,180,241,112,64,26,20,8,198,6,16,170,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,168,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,64,30,162,76,213,186,147,64,26,20,8,198,6,16,172,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,13,249,7,118,96,145,113,64,26,20,8,198,6,16,173,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,171,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,224,95,43,7,156,133,147,64,26,20,8,198,6,16,175,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,156,9,240,137,0,139,115,64,26,20,8,198,6,16,176,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,174,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,72,176,205,181,77,120,147,64,26,20,8,198,6,16,178,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,73,85,60,110,76,36,118,64,26,20,8,198,6,16,179,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,177,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,224,95,43,7,156,133,147,64,26,20,8,198,6,16,181,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,103,131,86,106,194,109,120,64,26,20,8,198,6,16,182,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,180,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,12,246,80,117,124,193,147,64,26,20,8,198,6,16,184,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,70,59,168,197,224,119,121,64,26,20,8,198,6,16,185,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,183,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,203,114,62,0,239,43,148,64,26,20,8,198,6,16,187,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,229,111,231,171,113,236,122,64,26,20,8,198,6,16,188,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,186,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,187,78,231,45,254,176,148,64,26,20,8,198,6,16,190,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,52,10,7,31,186,166,123,64,26,20,8,198,6,16,191,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,189,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,66,218,237,172,91,67,149,64,26,20,8,198,6,16,193,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,244,134,244,169,44,17,124,64,26,20,8,198,6,16,194,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,192,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,2,87,219,55,206,173,149,64,26,20,8,198,6,16,196,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,148,200,125,100,243,219,123,64,26,20,8,198,6,16,197,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,195,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,246,251,25,154,153,17,150,64,26,20,8,198,6,16,199,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,116,141,25,148,71,60,123,64,26,20,8,198,6,16,200,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,198,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,133,25,76,130,111,97,150,64,26,20,8,198,6,16,202,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,197,52,131,219,197,76,122,64,26,20,8,198,6,16,203,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,201,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,125,135,32,25,247,163,150,64,26,20,8,198,6,16,205,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,230,124,49,128,167,66,121,64,26,20,8,198,6,16,206,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,198,6,16,204,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,198,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,34,19,8,237,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,201,35,18,198,35,10,195,35,10,140,34,10,6,112,111,105,110,116,115,18,129,34,18,254,33,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,217,53,34,96,141,155,64,26,19,8,199,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,197,129,85,160,202,242,104,64,26,19,8,199,6,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,216,30,185,225,142,214,155,64,26,19,8,199,6,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,197,129,85,160,202,242,104,64,26,19,8,199,6,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,12,71,10,185,231,207,155,64,26,19,8,199,6,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,82,181,195,155,156,122,64,26,19,8,199,6,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,217,53,34,96,141,155,64,26,19,8,199,6,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,242,121,170,213,246,186,125,64,26,19,8,199,6,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,92,72,151,237,34,155,64,26,19,8,199,6,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,209,49,252,48,21,197,126,64,26,19,8,199,6,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,145,22,197,215,190,217,154,64,26,19,8,199,6,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,1,145,183,211,177,223,126,64,26,19,8,199,6,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,84,84,141,29,38,154,64,26,19,8,199,6,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,17,181,14,166,162,90,126,64,26,19,8,199,6,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,134,200,77,14,192,147,153,64,26,19,8,199,6,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,67,33,20,29,117,203,124,64,26,19,8,199,6,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,143,90,121,119,56,81,153,64,26,19,8,199,6,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,245,147,62,126,98,103,122,64,26,19,8,199,6,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,95,251,189,212,155,54,153,64,26,19,8,199,6,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,40,13,142,201,106,46,119,64,26,19,8,199,6,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,240,158,229,24,141,153,64,26,19,8,199,6,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,43,39,34,114,214,218,115,64,26,19,8,199,6,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,158,113,134,117,243,117,154,64,26,19,8,199,6,16,40,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,238,189,163,165,180,241,112,64,26,19,8,199,6,16,41,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,39,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,12,71,10,185,231,207,155,64,26,19,8,199,6,16,43,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,222,137,152,182,133,109,64,26,19,8,199,6,16,44,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,42,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,179,13,117,8,241,1,157,64,26,19,8,199,6,16,46,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,2,235,211,108,236,219,107,64,26,19,8,199,6,16,47,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,45,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,94,157,117,140,182,18,158,64,26,19,8,199,6,16,49,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,65,97,156,13,68,27,109,64,26,19,8,199,6,16,50,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,48,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,146,86,157,51,105,158,64,26,19,8,199,6,16,52,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,127,215,100,174,155,90,110,64,26,19,8,199,6,16,53,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,51,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,136,55,174,176,191,158,64,26,19,8,199,6,16,55,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,159,35,132,50,108,55,112,64,26,19,8,199,6,16,56,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,54,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,121,15,68,40,166,211,158,64,26,19,8,199,6,16,58,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,61,88,195,24,253,171,113,64,26,19,8,199,6,16,59,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,57,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,225,95,230,214,87,198,158,64,26,19,8,199,6,16,61,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,76,111,208,22,184,208,114,64,26,19,8,199,6,16,62,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,60,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,235,163,15,253,72,69,116,64,26,19,8,199,6,16,65,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,130,161,111,145,30,145,158,64,26,19,8,199,6,16,64,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,63,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,172,142,128,161,58,158,64,26,19,8,199,6,16,67,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,42,26,216,157,160,132,117,64,26,19,8,199,6,16,68,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,66,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,206,127,67,164,224,194,157,64,26,19,8,199,6,16,70,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,9,210,41,249,190,142,118,64,26,19,8,199,6,16,71,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,69,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,71,244,60,37,131,48,157,64,26,19,8,199,6,16,73,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,40,13,142,201,106,46,119,64,26,19,8,199,6,16,74,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,72,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,52,20,154,242,11,45,156,64,26,19,8,199,6,16,76,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,88,108,73,108,7,73,119,64,26,19,8,199,6,16,77,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,75,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,112,206,22,51,221,227,155,64,26,19,8,199,6,16,79,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,57,49,229,155,91,169,118,64,26,19,8,199,6,16,80,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,78,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,112,206,22,51,221,227,155,64,26,19,8,199,6,16,82,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,185,55,10,134,118,212,117,64,26,19,8,199,6,16,83,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,81,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,212,85,35,173,210,247,155,64,26,19,8,199,6,16,85,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,91,134,221,20,115,245,115,64,26,19,8,199,6,16,86,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,84,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,130,110,137,147,111,156,64,26,19,8,199,6,16,88,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,190,94,232,2,24,215,112,64,26,19,8,199,6,16,89,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,87,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,226,175,111,156,64,60,107,64,26,19,8,199,6,16,92,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,219,218,4,66,21,95,157,64,26,19,8,199,6,16,91,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,90,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,201,192,104,119,138,158,64,26,19,8,199,6,16,94,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,69,136,122,138,229,29,104,64,26,19,8,199,6,16,95,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,93,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,209,180,114,71,135,159,64,26,19,8,199,6,16,97,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,69,136,122,138,229,29,104,64,26,19,8,199,6,16,98,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,96,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,168,26,53,13,38,16,160,64,26,19,8,199,6,16,100,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,36,64,204,229,3,40,105,64,26,19,8,199,6,16,101,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,99,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,112,41,78,1,17,56,160,64,26,19,8,199,6,16,103,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,195,116,11,204,148,156,106,64,26,19,8,199,6,16,104,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,102,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,204,15,97,168,92,160,64,26,19,8,199,6,16,106,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,129,228,174,130,209,176,108,64,26,19,8,199,6,16,107,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,105,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,204,15,97,168,92,160,64,26,19,8,199,6,16,109,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,160,31,19,83,125,80,109,64,26,19,8,199,6,16,110,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,108,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,160,136,9,164,173,82,160,64,26,19,8,199,6,16,112,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,32,25,238,104,98,37,110,64,26,19,8,199,6,16,113,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,111,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,66,134,228,126,9,160,64,26,19,8,199,6,16,115,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,96,156,0,222,239,186,109,64,26,19,8,199,6,16,116,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,114,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,104,218,224,39,195,159,64,26,19,8,199,6,16,118,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,129,228,174,130,209,176,108,64,26,19,8,199,6,16,119,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,117,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,131,241,248,86,7,7,107,64,26,19,8,199,6,16,122,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,205,114,249,207,170,108,159,64,26,19,8,199,6,16,121,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,120,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,199,6,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,199,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,199,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,199,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,34,19,8,233,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,159,152,1,18,155,152,1,10,151,152,1,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,200,6,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,200,6,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,200,6,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,223,150,1,10,6,112,111,105,110,116,115,18,211,150,1,18,207,150,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,95,246,35,76,217,141,64,26,19,8,200,6,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,163,213,165,196,134,228,121,64,26,19,8,200,6,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,12,186,43,251,161,93,142,64,26,19,8,200,6,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,110,139,16,115,50,237,122,64,26,19,8,200,6,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,6,130,7,59,197,128,143,64,26,19,8,200,6,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,182,7,134,85,139,139,126,64,26,19,8,200,6,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,187,9,72,227,64,42,144,64,26,19,8,200,6,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,213,203,158,234,232,104,128,64,26,19,8,200,6,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,169,217,158,52,181,144,64,26,19,8,200,6,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,19,47,164,132,191,179,129,64,26,19,8,200,6,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,159,56,208,61,97,145,64,26,19,8,200,6,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,81,146,169,30,150,254,130,64,26,19,8,200,6,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,13,218,243,229,228,19,146,64,26,19,8,200,6,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,6,191,91,4,6,250,131,64,26,19,8,200,6,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,157,103,196,199,211,146,64,26,19,8,200,6,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,72,62,115,254,74,179,132,64,26,19,8,200,6,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,233,253,126,123,237,15,133,64,26,19,8,200,6,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,26,15,118,142,213,213,147,64,26,19,8,200,6,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,233,194,95,112,19,149,64,26,19,8,200,6,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,22,16,240,12,101,42,133,64,26,19,8,200,6,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,128,76,200,249,70,94,150,64,26,19,8,200,6,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,72,62,115,254,74,179,132,64,26,19,8,200,6,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,5,89,0,30,8,136,151,64,26,19,8,200,6,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,101,255,79,135,99,157,131,64,26,19,8,200,6,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,134,220,62,112,234,245,129,64,26,19,8,200,6,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,231,151,35,149,239,157,152,64,26,19,8,200,6,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,16,128,121,150,193,146,153,64,26,19,8,200,6,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,130,189,240,3,55,148,127,64,26,19,8,200,6,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,153,168,195,26,241,42,154,64,26,19,8,200,6,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,182,66,76,45,84,131,122,64,26,19,8,200,6,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,128,17,2,34,126,102,154,64,26,19,8,200,6,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,51,127,227,16,147,8,117,64,26,19,8,200,6,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,221,67,237,116,164,82,154,64,26,19,8,200,6,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,206,8,126,116,96,239,111,64,26,19,8,200,6,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,15,114,112,102,138,219,153,64,26,19,8,200,6,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,94,237,129,152,53,11,103,64,26,19,8,200,6,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,32,220,93,43,171,152,64,26,19,8,200,6,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,109,18,131,237,88,122,91,64,26,19,8,200,6,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,52,30,251,24,83,151,64,26,19,8,200,6,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,231,246,243,105,32,125,76,64,26,19,8,200,6,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,13,159,45,14,28,28,150,64,26,19,8,200,6,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,139,72,158,246,194,55,68,64,26,19,8,200,6,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,92,113,243,60,20,21,64,64,26,19,8,200,6,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,161,41,183,226,205,182,148,64,26,19,8,200,6,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,51,166,55,135,72,154,147,64,26,19,8,200,6,16,73,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,204,2,124,200,208,232,64,64,26,19,8,200,6,16,74,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,72,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,171,112,244,254,138,146,64,26,19,8,200,6,16,76,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,185,31,73,176,113,90,72,64,26,19,8,200,6,16,77,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,75,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,89,27,105,52,29,203,82,64,26,19,8,200,6,16,80,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,39,127,190,14,143,143,145,64,26,19,8,200,6,16,79,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,78,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,221,163,11,121,21,78,92,64,26,19,8,200,6,16,83,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,113,68,3,249,231,220,144,64,26,19,8,200,6,16,82,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,81,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,93,215,92,144,26,62,144,64,26,19,8,200,6,16,85,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,252,203,65,141,50,241,99,64,26,19,8,200,6,16,86,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,84,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,93,37,24,214,75,143,64,26,19,8,200,6,16,88,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,252,85,181,221,160,1,108,64,26,19,8,200,6,16,89,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,87,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,35,67,228,195,221,106,142,64,26,19,8,200,6,16,91,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,38,74,97,104,162,70,115,64,26,19,8,200,6,16,92,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,90,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,113,103,181,195,243,141,64,26,19,8,200,6,16,94,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,117,195,52,51,15,202,121,64,26,19,8,200,6,16,95,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,93,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,130,131,216,70,59,14,142,64,26,19,8,200,6,16,97,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,75,149,75,54,130,25,128,64,26,19,8,200,6,16,98,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,96,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,59,9,241,85,90,241,130,64,26,19,8,200,6,16,101,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,78,57,67,245,230,22,143,64,26,19,8,200,6,16,100,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,99,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,249,78,19,132,76,64,134,64,26,19,8,200,6,16,104,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,21,32,33,214,248,167,144,64,26,19,8,200,6,16,103,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,102,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,60,250,109,167,147,229,145,64,26,19,8,200,6,16,106,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,118,21,30,184,249,213,136,64,26,19,8,200,6,16,107,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,105,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,147,244,52,58,221,244,146,64,26,19,8,200,6,16,109,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,111,221,249,247,28,249,137,64,26,19,8,200,6,16,110,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,108,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,141,188,16,122,0,24,148,64,26,19,8,200,6,16,112,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,131,74,160,96,234,151,138,64,26,19,8,200,6,16,113,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,111,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,251,51,241,231,45,149,64,26,19,8,200,6,16,115,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,200,229,201,186,157,191,138,64,26,19,8,200,6,16,116,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,114,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,246,21,117,69,224,14,150,64,26,19,8,200,6,16,118,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,16,157,5,117,191,85,138,64,26,19,8,200,6,16,119,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,117,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,102,167,253,208,156,226,150,64,26,19,8,200,6,16,121,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,0,76,113,108,96,37,137,64,26,19,8,200,6,16,122,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,120,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,121,20,164,57,106,129,151,64,26,19,8,200,6,16,124,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,197,4,126,50,248,72,135,64,26,19,8,200,6,16,125,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,123,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,166,24,12,155,170,228,151,64,26,19,8,200,6,16,127,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,210,116,198,178,177,2,133,64,26,20,8,200,6,16,128,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,126,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,118,248,145,217,251,18,152,64,26,20,8,200,6,16,130,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,177,210,157,161,243,161,130,64,26,20,8,200,6,16,131,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,129,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,95,111,217,16,192,5,152,64,26,20,8,200,6,16,133,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,213,203,158,234,232,104,128,64,26,20,8,200,6,16,134,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,132,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,74,244,41,120,187,175,151,64,26,20,8,200,6,16,136,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,215,228,116,62,18,228,124,64,26,20,8,200,6,16,137,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,135,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,54,135,131,15,238,16,151,64,26,20,8,200,6,16,139,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,71,177,195,161,151,175,121,64,26,20,8,200,6,16,140,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,138,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,154,241,146,34,241,217,149,64,26,20,8,200,6,16,142,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,136,107,161,115,165,96,118,64,26,20,8,200,6,16,143,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,141,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,233,224,242,156,239,76,148,64,26,20,8,200,6,16,145,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,11,165,150,63,248,202,115,64,26,20,8,200,6,16,146,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,144,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,77,75,2,176,242,21,147,64,26,20,8,200,6,16,148,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,248,55,240,214,42,44,115,64,26,20,8,200,6,16,149,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,147,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,221,185,121,36,54,66,146,64,26,20,8,200,6,16,151,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,202,37,127,69,179,17,115,64,26,20,8,200,6,16,152,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,150,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,136,205,187,193,35,234,144,64,26,20,8,200,6,16,154,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,248,55,240,214,42,44,115,64,26,20,8,200,6,16,155,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,153,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,127,103,198,230,204,159,142,64,26,20,8,200,6,16,157,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,149,219,233,243,94,26,116,64,26,20,8,200,6,16,158,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,156,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,22,14,98,27,237,168,140,64,26,20,8,200,6,16,160,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,162,16,108,156,79,220,117,64,26,20,8,200,6,16,161,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,159,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,193,33,164,184,218,80,139,64,26,20,8,200,6,16,163,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,176,69,238,68,64,158,119,64,26,20,8,200,6,16,164,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,162,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,35,126,170,155,166,98,138,64,26,20,8,200,6,16,166,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,235,140,225,126,168,122,121,64,26,20,8,200,6,16,167,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,165,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,202,117,218,216,37,156,137,64,26,20,8,200,6,16,169,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,84,230,69,74,136,113,123,64,26,20,8,200,6,16,170,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,168,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,45,209,50,161,36,60,126,64,26,20,8,200,6,16,173,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,183,8,52,112,88,253,136,64,26,20,8,200,6,16,172,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,171,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,229,26,165,1,208,23,137,64,26,20,8,200,6,16,175,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,72,121,57,214,19,171,128,64,26,20,8,200,6,16,176,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,174,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,17,4,51,217,195,137,64,26,20,8,200,6,16,178,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,226,0,33,147,217,42,130,64,26,20,8,200,6,16,179,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,177,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,51,207,62,164,5,147,139,64,26,20,8,200,6,16,181,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,124,136,8,80,159,170,131,64,26,20,8,200,6,16,182,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,180,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,12,186,43,251,161,93,142,64,26,20,8,200,6,16,184,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,68,34,97,158,220,68,133,64,26,20,8,200,6,16,185,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,183,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,136,205,187,193,35,234,144,64,26,20,8,200,6,16,187,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,62,234,60,222,255,103,134,64,26,20,8,200,6,16,188,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,186,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,126,121,133,161,216,158,146,64,26,20,8,200,6,16,190,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,82,87,227,70,205,6,135,64,26,20,8,200,6,16,191,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,189,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,65,97,225,251,193,147,64,26,20,8,200,6,16,193,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,151,242,12,161,128,46,135,64,26,20,8,200,6,16,194,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,192,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,228,182,215,12,74,39,149,64,26,20,8,200,6,16,196,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,177,151,215,201,42,170,134,64,26,20,8,200,6,16,197,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,195,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,80,48,91,135,193,150,64,26,20,8,200,6,16,199,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,114,52,210,47,84,95,133,64,26,20,8,200,6,16,200,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,198,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,118,248,145,217,251,18,152,64,26,20,8,200,6,16,202,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,246,109,199,251,166,201,130,64,26,20,8,200,6,16,203,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,201,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,253,18,211,45,244,243,152,64,26,20,8,200,6,16,205,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,110,80,74,155,105,245,126,64,26,20,8,200,6,16,206,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,204,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,205,242,88,108,69,34,153,64,26,20,8,200,6,16,208,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,117,195,52,51,15,202,121,64,26,20,8,200,6,16,209,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,207,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,136,87,47,18,146,250,152,64,26,20,8,200,6,16,211,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,215,90,1,238,163,211,116,64,26,20,8,200,6,16,212,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,210,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,46,65,86,31,218,124,152,64,26,20,8,200,6,16,214,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,114,228,155,81,113,186,111,64,26,20,8,200,6,16,215,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,213,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,236,193,62,37,149,195,151,64,26,20,8,200,6,16,217,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,62,16,147,175,174,178,104,64,26,20,8,200,6,16,218,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,216,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,212,241,244,187,151,179,98,64,26,20,8,200,6,16,221,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,243,249,98,229,113,160,150,64,26,20,8,200,6,16,220,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,219,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,157,13,165,130,95,72,149,64,26,20,8,200,6,16,223,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,149,236,207,190,243,183,92,64,26,20,8,200,6,16,224,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,222,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,96,184,168,24,192,180,147,64,26,20,8,200,6,16,226,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,247,131,156,121,136,193,87,64,26,20,8,200,6,16,227,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,225,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,152,30,80,202,130,26,146,64,26,20,8,200,6,16,229,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,24,97,139,98,15,26,86,64,26,20,8,200,6,16,230,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,228,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,252,136,95,221,133,227,144,64,26,20,8,200,6,16,232,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,135,242,19,238,203,237,86,64,26,20,8,200,6,16,233,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,231,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,189,202,203,128,163,234,143,64,26,20,8,200,6,16,235,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,70,56,54,28,190,60,90,64,26,20,8,200,6,16,236,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,234,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,104,222,13,30,145,146,142,64,26,20,8,200,6,16,238,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,116,15,225,213,108,95,94,64,26,20,8,200,6,16,239,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,237,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,202,58,20,1,93,164,141,64,26,20,8,200,6,16,241,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,173,23,168,234,252,117,97,64,26,20,8,200,6,16,242,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,240,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,206,86,38,97,203,18,141,64,26,20,8,200,6,16,244,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,16,57,232,245,255,143,100,64,26,20,8,200,6,16,245,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,243,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,160,68,181,207,83,248,140,64,26,20,8,200,6,16,247,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,154,52,117,210,157,231,104,64,26,20,8,200,6,16,248,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,246,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,111,22,50,222,109,111,141,64,26,20,8,200,6,16,250,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,75,10,79,128,214,124,110,64,26,20,8,200,6,16,251,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,249,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,78,57,67,245,230,22,143,64,26,20,8,200,6,16,253,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,11,165,150,63,248,202,115,64,26,20,8,200,6,16,254,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,252,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,90,187,74,48,172,207,144,64,26,20,8,200,6,16,128,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,143,104,255,91,185,69,121,64,26,20,8,200,6,16,129,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,255,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,13,218,243,229,228,19,146,64,26,20,8,200,6,16,131,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,97,27,200,242,120,51,125,64,26,20,8,200,6,16,132,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,130,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,98,30,4,255,189,38,128,64,26,20,8,200,6,16,135,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,75,61,249,127,187,94,147,64,26,20,8,200,6,16,134,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,133,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,183,178,111,171,9,196,148,64,26,20,8,200,6,16,137,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,114,111,152,7,29,87,129,64,26,20,8,200,6,16,138,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,136,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,140,188,124,164,1,150,64,26,20,8,200,6,16,140,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,157,101,247,56,38,3,130,64,26,20,8,200,6,16,141,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,139,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,193,203,223,243,139,23,151,64,26,20,8,200,6,16,143,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,16,19,146,36,81,69,130,64,26,20,8,200,6,16,144,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,142,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,212,42,125,44,34,255,151,64,26,20,8,200,6,16,146,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,203,119,104,202,157,29,130,64,26,20,8,200,6,16,147,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,145,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,184,119,169,211,64,204,152,64,26,20,8,200,6,16,149,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,137,248,80,208,88,100,129,64,26,20,8,200,6,16,150,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,148,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,251,40,47,198,232,153,64,26,20,8,200,6,16,152,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,110,80,74,155,105,245,126,64,26,20,8,200,6,16,153,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,151,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,175,49,124,227,44,56,154,64,26,20,8,200,6,16,155,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,215,228,116,62,18,228,124,64,26,20,8,200,6,16,156,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,154,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,10,72,85,214,228,181,154,64,26,20,8,200,6,16,158,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,195,178,148,173,13,61,120,64,26,20,8,200,6,16,159,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,157,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,102,108,55,249,211,234,154,64,26,20,8,200,6,16,161,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,156,19,14,180,59,247,114,64,26,20,8,200,6,16,162,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,160,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,195,158,34,76,250,214,154,64,26,20,8,200,6,16,164,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,68,13,241,151,194,151,107,64,26,20,8,200,6,16,165,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,163,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,57,104,207,151,147,135,154,64,26,20,8,200,6,16,167,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,48,22,215,222,134,232,98,64,26,20,8,200,6,16,168,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,166,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,81,246,164,219,9,154,64,26,20,8,200,6,16,170,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,70,56,54,28,190,60,90,64,26,20,8,200,6,16,171,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,169,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,226,109,8,5,74,120,153,64,26,20,8,200,6,16,173,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,234,137,224,168,96,247,81,64,26,20,8,200,6,16,174,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,172,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,185,31,73,176,113,90,72,64,26,20,8,200,6,16,177,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,90,69,190,128,26,224,152,64,26,20,8,200,6,16,176,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,175,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,70,216,23,24,77,65,152,64,26,20,8,200,6,16,179,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,171,37,141,223,73,144,66,64,26,20,8,200,6,16,180,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,178,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,74,244,41,120,187,175,151,64,26,20,8,200,6,16,182,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,60,148,4,84,141,188,65,64,26,20,8,200,6,16,183,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,181,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,239,221,80,133,3,50,151,64,26,20,8,200,6,16,185,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,27,183,21,107,6,100,67,64,26,20,8,200,6,16,186,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,184,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,56,149,140,63,37,200,150,64,26,20,8,200,6,16,188,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,152,66,90,199,234,1,74,64,26,20,8,200,6,16,189,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,187,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,89,27,105,52,29,203,82,64,26,20,8,200,6,16,192,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,34,26,221,166,32,114,150,64,26,20,8,200,6,16,191,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,190,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,36,40,230,214,87,41,150,64,26,20,8,200,6,16,194,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,221,163,11,121,21,78,92,64,26,20,8,200,6,16,195,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,193,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,140,188,124,164,1,150,64,26,20,8,200,6,16,197,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,88,240,35,176,33,38,100,64,26,20,8,200,6,16,198,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,196,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,209,24,97,66,8,150,64,26,20,8,200,6,16,200,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,232,232,14,117,211,98,107,64,26,20,8,200,6,16,201,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,199,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,198,245,250,131,49,61,150,64,26,20,8,200,6,16,203,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,24,21,223,191,177,132,113,64,26,20,8,200,6,16,204,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,202,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,80,48,91,135,193,150,64,26,20,8,200,6,16,206,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,235,199,167,86,113,114,117,64,26,20,8,200,6,16,207,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,205,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,5,89,0,30,8,136,151,64,26,20,8,200,6,16,209,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,51,68,29,57,202,16,121,64,26,20,8,200,6,16,210,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,208,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,12,47,10,144,102,219,123,64,26,20,8,200,6,16,213,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,162,252,249,58,60,118,152,64,26,20,8,200,6,16,212,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,211,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,133,59,29,178,35,140,153,64,26,20,8,200,6,16,215,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,25,100,140,56,87,157,125,64,26,20,8,200,6,16,216,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,214,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,125,245,239,193,15,248,154,64,26,20,8,200,6,16,218,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,136,245,20,196,19,113,126,64,26,20,8,200,6,16,219,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,217,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,91,227,163,50,156,86,126,64,26,20,8,200,6,16,222,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,110,119,158,17,31,135,157,64,26,20,8,200,6,16,221,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,220,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,192,98,87,253,240,157,64,26,20,8,200,6,16,224,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,117,136,110,91,70,210,125,64,26,20,8,200,6,16,225,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,223,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,30,122,53,103,233,92,159,64,26,20,8,200,6,16,227,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,156,157,129,4,170,7,123,64,26,20,8,200,6,16,228,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,226,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,150,94,224,159,8,107,160,64,26,20,8,200,6,16,230,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,248,252,41,255,97,52,119,64,26,20,8,200,6,16,231,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,229,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,78,167,164,229,230,212,160,64,26,20,8,200,6,16,233,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,11,165,150,63,248,202,115,64,26,20,8,200,6,16,234,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,232,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,240,237,180,250,36,13,161,64,26,20,8,200,6,16,236,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,77,95,116,17,6,124,112,64,26,20,8,200,6,16,237,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,235,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,7,119,109,195,96,26,161,64,26,20,8,200,6,16,239,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,121,87,134,233,22,143,106,64,26,20,8,200,6,16,240,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,238,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,217,100,252,49,233,255,160,64,26,20,8,200,6,16,242,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,16,57,232,245,255,143,100,64,26,20,8,200,6,16,243,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,241,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,195,98,72,1,73,206,160,64,26,20,8,200,6,16,245,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,155,233,45,167,7,157,95,64,26,20,8,200,6,16,246,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,244,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,103,197,106,118,245,116,160,64,26,20,8,200,6,16,248,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,135,242,19,238,203,237,86,64,26,20,8,200,6,16,249,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,247,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,90,120,62,200,7,160,64,26,20,8,200,6,16,251,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,165,60,22,152,18,204,79,64,26,20,8,200,6,16,252,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,250,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,123,172,32,186,15,73,159,64,26,20,8,200,6,16,254,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,8,212,226,82,167,213,74,64,26,20,8,200,6,16,255,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,253,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,40,177,209,59,46,46,73,64,26,20,8,200,6,16,130,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,151,95,244,18,241,123,158,64,26,20,8,200,6,16,129,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,128,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,207,197,155,196,179,225,156,64,26,20,8,200,6,16,132,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,135,242,19,238,203,237,86,64,26,20,8,200,6,16,133,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,131,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,95,52,19,57,247,13,156,64,26,20,8,200,6,16,135,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,9,60,138,13,236,170,97,64,26,20,8,200,6,16,136,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,134,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,26,153,233,222,67,230,155,64,26,20,8,200,6,16,138,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,160,167,95,106,67,188,99,64,26,20,8,200,6,16,139,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,137,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,28,167,242,14,123,157,155,64,26,20,8,200,6,16,141,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,9,198,253,93,90,187,105,64,26,20,8,200,6,16,142,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,140,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,98,80,37,153,101,124,155,64,26,20,8,200,6,16,144,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,51,186,169,232,91,0,113,64,26,20,8,200,6,16,145,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,143,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,190,116,7,188,84,177,155,64,26,20,8,200,6,16,147,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,31,18,61,168,197,105,116,64,26,20,8,200,6,16,148,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,146,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,23,125,215,126,213,119,156,64,26,20,8,200,6,16,150,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,222,87,95,214,183,184,119,64,26,20,8,200,6,16,151,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,149,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,249,187,250,245,188,141,157,64,26,20,8,200,6,16,153,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,136,48,219,155,220,104,122,64,26,20,8,200,6,16,154,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,152,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,149,81,235,226,185,196,158,64,26,20,8,200,6,16,156,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,12,47,10,144,102,219,123,64,26,20,8,200,6,16,157,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,155,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,12,40,141,235,161,27,160,64,26,20,8,200,6,16,159,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,31,156,176,248,51,122,124,64,26,20,8,200,6,16,160,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,158,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,31,14,47,188,211,222,160,64,26,20,8,200,6,16,162,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,123,192,146,27,35,175,124,64,26,20,8,200,6,16,163,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,161,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,237,88,167,50,82,122,161,64,26,20,8,200,6,16,165,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,150,101,93,68,205,42,124,64,26,20,8,200,6,16,166,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,164,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,212,58,225,161,67,218,161,64,26,20,8,200,6,16,168,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,110,139,16,115,50,237,122,64,26,20,8,200,6,16,169,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,167,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,163,147,98,72,249,44,162,64,26,20,8,200,6,16,171,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,77,233,231,97,116,140,120,64,26,20,8,200,6,16,172,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,170,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,143,163,197,51,130,61,117,64,26,20,8,200,6,16,175,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,139,252,160,79,134,104,162,64,26,20,8,200,6,16,174,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,173,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,22,65,253,51,36,111,162,64,26,20,8,200,6,16,177,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,70,39,80,81,41,159,113,64,26,20,8,200,6,16,178,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,176,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,232,46,140,162,172,84,162,64,26,20,8,200,6,16,180,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,49,160,74,47,245,248,106,64,26,20,8,200,6,16,181,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,179,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,117,129,241,182,129,18,162,64,26,20,8,200,6,16,183,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,140,58,185,1,118,29,99,64,26,20,8,200,6,16,184,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,182,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,109,18,131,237,88,122,91,64,26,20,8,200,6,16,187,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,189,177,40,217,7,205,161,64,26,20,8,200,6,16,186,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,185,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,190,191,49,9,63,132,161,64,26,20,8,200,6,16,189,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,129,245,181,5,184,8,84,64,26,20,8,200,6,16,190,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,188,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,193,84,63,209,17,23,161,64,26,20,8,200,6,16,192,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,152,66,90,199,234,1,74,64,26,20,8,200,6,16,193,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,191,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,9,12,123,139,51,173,160,64,26,20,8,200,6,16,195,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,27,183,21,107,6,100,67,64,26,20,8,200,6,16,196,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,194,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,104,76,111,14,145,80,160,64,26,20,8,200,6,16,198,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,139,72,158,246,194,55,68,64,26,20,8,200,6,16,199,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,197,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,143,25,199,34,221,231,159,64,26,20,8,200,6,16,201,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,152,66,90,199,234,1,74,64,26,20,8,200,6,16,202,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,200,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,77,154,175,40,152,46,159,64,26,20,8,200,6,16,204,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,201,172,241,191,217,158,83,64,26,20,8,200,6,16,205,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,203,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,151,95,244,18,241,123,158,64,26,20,8,200,6,16,207,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,77,53,148,4,210,33,93,64,26,20,8,200,6,16,208,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,206,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,154,123,6,115,95,234,157,64,26,20,8,200,6,16,210,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,180,20,6,211,16,91,100,64,26,20,8,200,6,16,211,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,209,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,249,187,250,245,188,141,157,64,26,20,8,200,6,16,213,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,140,196,44,82,228,45,107,64,26,20,8,200,6,16,214,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,212,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,158,151,24,211,205,88,157,64,26,20,8,200,6,16,216,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,116,57,193,226,160,185,113,64,26,20,8,200,6,16,217,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,215,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,228,143,131,150,148,149,118,64,26,20,8,200,6,16,220,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,18,83,188,238,47,82,157,64,26,20,8,200,6,16,219,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,218,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,133,0,87,218,90,148,157,64,26,20,8,200,6,16,222,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,222,28,153,254,238,192,123,64,26,20,8,200,6,16,223,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,221,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,13,41,161,94,138,44,158,64,26,20,8,200,6,16,225,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,98,30,4,255,189,38,128,64,26,20,8,200,6,16,226,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,224,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,241,117,205,5,169,249,158,64,26,20,8,200,6,16,228,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,180,238,175,1,98,16,130,64,26,20,8,200,6,16,229,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,227,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,3,213,106,62,63,225,159,64,26,20,8,200,6,16,231,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,55,237,222,245,235,130,131,64,26,20,8,200,6,16,232,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,230,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,57,179,249,228,125,90,160,64,26,20,8,200,6,16,234,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,167,126,103,129,168,86,132,64,26,20,8,200,6,16,235,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,233,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,195,98,72,1,73,206,160,64,26,20,8,200,6,16,237,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,72,62,115,254,74,179,132,64,26,20,8,200,6,16,238,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,236,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,99,155,79,230,79,79,161,64,26,20,8,200,6,16,240,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,72,62,115,254,74,179,132,64,26,20,8,200,6,16,241,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,239,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,143,250,230,184,201,161,64,26,20,8,200,6,16,243,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,121,108,246,239,48,60,132,64,26,20,8,200,6,16,244,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,242,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,63,73,3,132,61,162,64,26,20,8,200,6,16,246,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,173,182,139,65,133,51,131,64,26,20,8,200,6,16,247,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,245,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,91,220,38,142,215,150,162,64,26,20,8,200,6,16,249,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,180,238,175,1,98,16,130,64,26,20,8,200,6,16,250,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,248,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,136,103,147,135,179,213,162,64,26,20,8,200,6,16,252,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,22,75,182,228,45,34,129,64,26,20,8,200,6,16,253,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,251,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,242,255,128,143,20,163,64,26,20,8,200,6,16,255,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,58,6,181,73,21,254,127,64,26,20,8,200,6,16,128,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,254,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,250,141,41,219,66,60,163,64,26,20,8,200,6,16,130,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,255,190,193,15,173,33,126,64,26,20,8,200,6,16,131,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,200,6,16,129,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,200,6,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,234,6,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,141,41,219,66,60,163,64,26,19,8,201,6,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,209,172,80,126,53,7,126,64,26,19,8,201,6,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,201,6,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,141,41,219,66,60,163,64,26,19,8,201,6,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,209,172,80,126,53,7,126,64,26,19,8,201,6,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,201,6,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,201,6,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,201,6,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,201,6,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,201,6,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,201,6,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,147,161,1,18,143,161,1,10,139,161,1,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,202,6,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,202,6,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,202,6,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,211,159,1,10,6,112,111,105,110,116,115,18,199,159,1,18,195,159,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,229,18,122,66,62,230,162,64,26,19,8,202,6,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,92,113,243,60,20,21,64,64,26,19,8,202,6,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,222,218,190,119,200,162,64,26,19,8,202,6,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,60,148,4,84,141,188,65,64,26,19,8,202,6,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,222,218,190,119,200,162,64,26,19,8,202,6,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,86,136,124,245,220,80,77,64,26,19,8,202,6,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,129,245,181,5,184,8,84,64,26,19,8,202,6,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,253,34,55,163,21,207,162,64,26,19,8,202,6,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,20,172,239,107,81,220,162,64,26,19,8,202,6,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,30,94,233,74,35,255,88,64,26,19,8,202,6,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,139,117,170,162,10,163,64,26,19,8,202,6,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,225,97,61,60,81,109,96,64,26,19,8,202,6,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,101,96,108,48,219,223,97,64,26,19,8,202,6,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,18,158,230,59,26,37,163,64,26,19,8,202,6,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,140,58,185,1,118,29,99,64,26,19,8,202,6,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,227,125,108,122,107,83,163,64,26,19,8,202,6,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,132,196,124,143,169,139,163,64,26,19,8,202,6,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,252,203,65,141,50,241,99,64,26,19,8,202,6,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,247,113,23,123,212,205,163,64,26,19,8,202,6,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,252,203,65,141,50,241,99,64,26,19,8,202,6,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,152,49,35,248,118,42,164,64,26,19,8,202,6,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,212,241,244,187,151,179,98,64,26,19,8,202,6,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,10,88,185,75,6,145,164,64,26,19,8,202,6,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,44,88,165,27,75,201,94,64,26,19,8,202,6,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,211,104,228,10,231,164,64,26,19,8,202,6,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,175,204,96,191,102,43,88,64,26,19,8,202,6,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,144,192,48,13,18,165,64,26,19,8,202,6,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,17,100,45,122,251,52,83,64,26,19,8,202,6,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,53,78,24,125,15,61,165,64,26,19,8,202,6,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,40,177,209,59,46,46,73,64,26,19,8,202,6,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,164,229,242,36,94,165,64,26,19,8,202,6,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,146,94,151,127,64,104,29,64,26,19,8,202,6,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,110,146,62,190,14,165,64,26,19,8,202,6,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,181,6,33,222,195,64,83,192,26,19,8,202,6,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,201,253,58,151,255,239,91,192,26,19,8,202,6,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,126,140,88,207,204,174,164,64,26,19,8,202,6,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,111,122,42,168,157,79,98,192,26,19,8,202,6,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,35,118,127,220,20,49,164,64,26,19,8,202,6,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,131,61,120,247,13,176,163,64,26,19,8,202,6,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,45,192,76,214,143,158,101,192,26,19,8,202,6,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,12,227,93,237,8,70,103,192,26,19,8,202,6,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,41,39,159,4,86,50,163,64,26,19,8,202,6,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,0,9,177,198,203,162,64,26,19,8,202,6,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,196,43,34,51,231,175,103,192,26,19,8,202,6,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,22,65,253,51,36,111,162,64,26,19,8,202,6,16,73,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,176,190,123,202,25,17,103,192,26,19,8,202,6,16,74,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,72,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,8,246,78,29,238,161,64,26,19,8,202,6,16,76,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,98,10,226,39,228,149,100,192,26,19,8,202,6,16,77,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,75,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,189,177,40,217,7,205,161,64,26,19,8,202,6,16,79,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,222,11,179,51,90,35,99,192,26,19,8,202,6,16,80,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,78,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,121,157,3,23,240,128,161,64,26,19,8,202,6,16,82,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,129,70,255,220,221,89,92,192,26,19,8,202,6,16,83,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,81,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,122,171,12,71,39,56,161,64,26,19,8,202,6,16,85,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,47,60,219,49,177,148,76,192,26,19,8,202,6,16,86,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,84,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,123,50,17,223,194,19,161,64,26,19,8,202,6,16,88,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,239,132,41,116,120,133,231,63,26,19,8,202,6,16,89,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,87,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,217,100,252,49,233,255,160,64,26,19,8,202,6,16,91,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,165,60,22,152,18,204,79,64,26,19,8,202,6,16,92,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,90,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,217,100,252,49,233,255,160,64,26,19,8,202,6,16,94,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,44,88,165,27,75,201,94,64,26,19,8,202,6,16,95,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,93,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,123,50,17,223,194,19,161,64,26,19,8,202,6,16,97,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,147,55,23,234,137,2,102,64,26,19,8,202,6,16,98,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,96,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,168,189,125,216,158,82,161,64,26,19,8,202,6,16,100,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,68,13,241,151,194,151,107,64,26,19,8,202,6,16,101,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,99,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,149,22,176,203,39,18,112,64,26,19,8,202,6,16,104,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,190,56,45,113,163,168,161,64,26,19,8,202,6,16,103,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,102,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,92,99,43,38,115,114,162,64,26,19,8,202,6,16,106,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,254,111,20,151,7,9,114,64,26,19,8,202,6,16,107,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,105,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,43,53,168,52,141,233,162,64,26,19,8,202,6,16,109,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,208,93,163,5,144,238,113,64,26,19,8,202,6,16,110,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,108,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,194,200,94,9,90,163,64,26,19,8,202,6,16,112,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,5,168,56,87,228,229,112,64,26,19,8,202,6,16,113,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,111,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,219,120,198,244,25,169,109,64,26,19,8,202,6,16,116,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,201,95,166,233,92,179,163,64,26,19,8,202,6,16,115,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,114,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,166,182,254,154,235,163,64,26,19,8,202,6,16,118,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,134,199,206,105,208,72,104,64,26,19,8,202,6,16,119,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,117,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,153,184,39,144,18,6,164,64,26,19,8,202,6,16,121,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,173,23,168,234,252,117,97,64,26,19,8,202,6,16,122,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,120,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,240,134,62,145,116,220,84,64,26,19,8,202,6,16,125,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,13,116,203,171,116,255,163,64,26,19,8,202,6,16,124,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,123,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,110,18,108,10,106,10,41,10,1,121,18,36,26,34,8,4,18,8,60,87,162,29,68,140,57,64,26,20,8,202,6,16,128,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,108,45,187,150,54,199,163,64,26,19,8,202,6,16,127,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,126,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,204,225,112,173,101,187,57,192,26,20,8,202,6,16,131,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,180,228,246,80,88,93,163,64,26,20,8,202,6,16,130,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,129,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,20,172,239,107,81,220,162,64,26,20,8,202,6,16,133,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,126,240,116,212,230,15,79,192,26,20,8,202,6,16,134,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,132,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,50,244,208,140,5,162,161,64,26,20,8,202,6,16,136,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,148,41,50,245,60,232,84,192,26,20,8,202,6,16,137,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,135,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,217,100,252,49,233,255,160,64,26,20,8,202,6,16,139,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,30,155,75,129,108,47,81,192,26,20,8,202,6,16,140,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,138,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,150,94,224,159,8,107,160,64,26,20,8,202,6,16,142,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,165,182,218,4,165,44,64,192,26,20,8,202,6,16,143,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,141,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,132,128,50,202,246,160,40,64,26,20,8,202,6,16,146,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,3,213,106,62,63,225,159,64,26,20,8,202,6,16,145,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,144,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,77,154,175,40,152,46,159,64,26,20,8,202,6,16,148,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,165,60,22,152,18,204,79,64,26,20,8,202,6,16,149,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,147,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,218,163,171,245,209,158,64,26,20,8,202,6,16,151,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,254,128,250,97,156,166,90,64,26,20,8,202,6,16,152,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,150,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,243,131,214,53,224,176,158,64,26,20,8,202,6,16,154,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,193,132,78,83,202,20,98,64,26,20,8,202,6,16,155,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,153,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,80,182,193,136,6,157,158,64,26,20,8,202,6,16,157,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,81,125,57,24,124,81,105,64,26,20,8,202,6,16,158,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,156,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,243,131,214,53,224,176,158,64,26,20,8,202,6,16,160,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,88,122,151,0,144,54,108,64,26,20,8,202,6,16,161,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,159,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,8,255,133,206,228,6,159,64,26,20,8,202,6,16,163,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,195,40,33,93,159,44,112,64,26,20,8,202,6,16,164,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,162,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,28,108,44,55,178,165,159,64,26,20,8,202,6,16,166,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,24,21,223,191,177,132,113,64,26,20,8,202,6,16,167,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,165,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,198,126,90,97,183,60,160,64,26,20,8,202,6,16,169,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,90,148,246,185,246,61,114,64,26,20,8,202,6,16,170,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,168,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,182,184,216,220,229,114,114,64,26,20,8,202,6,16,173,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,218,114,5,98,32,183,160,64,26,20,8,202,6,16,172,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,171,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,53,137,222,84,216,52,161,64,26,20,8,202,6,16,175,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,162,75,50,116,24,212,113,64,26,20,8,202,6,16,176,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,174,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,190,56,45,113,163,168,161,64,26,20,8,202,6,16,178,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,149,22,176,203,39,18,112,64,26,20,8,202,6,16,179,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,177,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,141,145,174,23,89,251,161,64,26,20,8,202,6,16,181,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,49,160,74,47,245,248,106,64,26,20,8,202,6,16,182,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,180,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,24,79,6,100,91,38,162,64,26,20,8,202,6,16,184,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,180,20,6,211,16,91,100,64,26,20,8,202,6,16,185,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,183,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,164,26,103,224,148,8,162,64,26,20,8,202,6,16,187,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,139,72,158,246,194,55,68,64,26,20,8,202,6,16,188,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,186,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,125,137,85,65,175,161,64,26,20,8,202,6,16,190,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,99,219,241,23,44,78,44,192,26,20,8,202,6,16,191,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,189,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,238,223,171,202,237,85,161,64,26,20,8,202,6,16,193,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,112,246,184,3,191,69,73,192,26,20,8,202,6,16,194,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,192,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,241,251,189,42,92,196,160,64,26,20,8,202,6,16,196,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,109,79,229,35,162,170,83,192,26,20,8,202,6,16,197,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,195,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,195,0,221,174,235,10,89,192,26,20,8,202,6,16,200,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,106,90,120,62,200,7,160,64,26,20,8,202,6,16,199,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,198,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,79,168,184,88,207,229,158,64,26,20,8,202,6,16,202,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,195,0,221,174,235,10,89,192,26,20,8,202,6,16,203,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,201,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,188,3,127,198,215,37,86,192,26,20,8,202,6,16,206,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,131,242,77,170,35,221,157,64,26,20,8,202,6,16,205,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,204,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,136,28,105,58,201,2,157,64,26,20,8,202,6,16,208,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,14,95,236,72,42,60,78,192,26,20,8,202,6,16,209,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,207,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,71,157,81,64,132,73,156,64,26,20,8,202,6,16,211,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,79,86,44,81,129,29,51,192,26,20,8,202,6,16,212,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,210,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,120,203,212,49,106,210,155,64,26,20,8,202,6,16,214,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,224,168,76,170,230,70,49,64,26,20,8,202,6,16,215,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,213,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,6,44,67,118,118,71,155,64,26,20,8,202,6,16,217,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,81,243,197,199,13,65,97,64,26,20,8,202,6,16,218,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,216,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,146,112,159,90,20,78,155,64,26,20,8,202,6,16,220,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,62,16,147,175,174,178,104,64,26,20,8,202,6,16,221,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,219,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,187,155,215,11,147,80,111,64,26,20,8,202,6,16,224,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,144,98,150,42,221,150,155,64,26,20,8,202,6,16,223,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,222,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,25,139,224,174,12,47,156,64,26,20,8,202,6,16,226,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,136,166,103,75,110,88,114,64,26,20,8,202,6,16,227,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,225,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,230,78,84,141,239,238,156,64,26,20,8,202,6,16,229,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,241,255,203,22,78,79,116,64,26,20,8,202,6,16,230,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,228,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,199,127,110,212,159,77,158,64,26,20,8,202,6,16,232,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,162,16,108,156,79,220,117,64,26,20,8,202,6,16,233,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,231,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,221,7,19,42,243,73,160,64,26,20,8,202,6,16,235,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,103,201,120,98,231,255,115,64,26,20,8,202,6,16,236,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,234,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,122,171,12,71,39,56,161,64,26,20,8,202,6,16,238,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,206,8,126,116,96,239,111,64,26,20,8,202,6,16,239,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,237,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,125,137,85,65,175,161,64,26,20,8,202,6,16,241,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,94,237,129,152,53,11,103,64,26,20,8,202,6,16,242,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,240,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,49,230,199,92,206,234,161,64,26,20,8,202,6,16,244,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,77,53,148,4,210,33,93,64,26,20,8,202,6,16,245,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,243,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,72,111,128,37,10,248,161,64,26,20,8,202,6,16,247,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,139,72,158,246,194,55,68,64,26,20,8,202,6,16,248,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,246,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,213,193,229,57,223,181,161,64,26,20,8,202,6,16,250,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,204,225,112,173,101,187,57,192,26,20,8,202,6,16,251,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,249,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,193,84,63,209,17,23,161,64,26,20,8,202,6,16,253,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,30,155,75,129,108,47,81,192,26,20,8,202,6,16,254,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,252,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,107,91,140,177,176,24,158,64,26,20,8,202,6,16,128,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,162,35,238,197,100,178,90,192,26,20,8,202,6,16,129,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,255,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,162,35,238,197,100,178,90,192,26,20,8,202,6,16,132,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,210,225,173,36,34,80,156,64,26,20,8,202,6,16,131,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,130,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,195,158,34,76,250,214,154,64,26,20,8,202,6,16,134,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,43,149,7,82,148,249,86,192,26,20,8,202,6,16,135,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,133,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,18,142,130,198,248,73,153,64,26,20,8,202,6,16,137,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,47,60,219,49,177,148,76,192,26,20,8,202,6,16,138,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,136,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,212,42,125,44,34,255,151,64,26,20,8,202,6,16,140,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,40,10,139,141,85,97,34,192,26,20,8,202,6,16,141,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,139,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,66,39,43,80,10,151,64,26,20,8,202,6,16,143,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,106,107,175,13,60,223,69,64,26,20,8,202,6,16,144,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,142,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,145,36,222,228,100,150,64,26,20,8,202,6,16,146,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,214,166,173,144,1,105,89,64,26,20,8,202,6,16,147,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,145,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,129,90,209,41,126,21,150,64,26,20,8,202,6,16,149,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,212,241,244,187,151,179,98,64,26,20,8,202,6,16,150,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,148,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,140,188,124,164,1,150,64,26,20,8,202,6,16,152,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,173,161,27,59,107,134,105,64,26,20,8,202,6,16,153,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,151,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,209,24,97,66,8,150,64,26,20,8,202,6,16,155,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,215,149,199,197,108,203,112,64,26,20,8,202,6,16,156,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,154,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,195,15,49,11,81,150,64,26,20,8,202,6,16,158,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,11,165,150,63,248,202,115,64,26,20,8,202,6,16,159,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,157,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,80,48,91,135,193,150,64,26,20,8,202,6,16,161,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,116,254,250,10,216,193,117,64,26,20,8,202,6,16,162,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,160,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,52,121,122,223,182,89,151,64,26,20,8,202,6,16,164,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,38,15,155,144,217,78,119,64,26,20,8,202,6,16,165,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,163,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,95,111,217,16,192,5,152,64,26,20,8,202,6,16,167,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,123,251,88,243,235,166,120,64,26,20,8,202,6,16,168,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,166,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,231,151,35,149,239,157,152,64,26,20,8,202,6,16,170,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,97,86,142,202,65,43,121,64,26,20,8,202,6,16,171,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,169,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,65,174,252,135,167,27,153,64,26,20,8,202,6,16,173,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,97,86,142,202,65,43,121,64,26,20,8,202,6,16,174,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,172,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,156,196,213,122,95,153,153,64,26,20,8,202,6,16,176,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,31,215,118,208,252,113,120,64,26,20,8,202,6,16,177,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,175,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,200,61,220,159,252,153,64,26,20,8,202,6,16,179,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,228,143,131,150,148,149,118,64,26,20,8,202,6,16,180,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,178,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,130,31,11,82,181,29,154,64,26,20,8,202,6,16,182,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,228,202,73,110,93,141,114,64,26,20,8,202,6,16,183,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,181,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,61,132,225,247,1,246,153,64,26,20,8,202,6,16,185,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,121,87,134,233,22,143,106,64,26,20,8,202,6,16,186,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,184,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,157,210,222,170,150,80,153,64,26,20,8,202,6,16,188,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,225,97,61,60,81,109,96,64,26,20,8,202,6,16,189,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,187,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,98,161,236,254,219,150,64,26,20,8,202,6,16,191,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,86,253,140,98,226,134,23,192,26,20,8,202,6,16,192,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,190,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,64,219,185,47,57,92,149,64,26,20,8,202,6,16,194,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,80,25,202,26,56,237,74,192,26,20,8,202,6,16,195,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,193,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,164,69,201,66,60,37,148,64,26,20,8,202,6,16,197,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,30,155,75,129,108,47,81,192,26,20,8,202,6,16,198,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,196,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,216,143,94,148,144,28,147,64,26,20,8,202,6,16,200,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,142,44,212,12,41,3,82,192,26,20,8,202,6,16,201,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,199,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,13,218,243,229,228,19,146,64,26,20,8,202,6,16,203,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,175,9,195,245,175,91,80,192,26,20,8,202,6,16,204,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,202,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,88,173,65,0,117,24,145,64,26,20,8,202,6,16,206,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,34,66,31,97,137,202,70,192,26,20,8,202,6,16,207,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,205,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,68,64,155,151,167,121,144,64,26,20,8,202,6,16,209,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,230,79,173,187,71,176,37,192,26,20,8,202,6,16,210,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,208,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,212,83,132,73,223,247,143,64,26,20,8,202,6,16,212,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,171,37,141,223,73,144,66,64,26,20,8,202,6,16,213,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,211,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,193,230,221,224,17,89,143,64,26,20,8,202,6,16,215,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,135,242,19,238,203,237,86,64,26,20,8,202,6,16,216,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,214,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,78,57,67,245,230,22,143,64,26,20,8,202,6,16,218,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,232,94,155,36,101,82,99,64,26,20,8,202,6,16,219,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,217,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,239,248,78,114,137,115,143,64,26,20,8,202,6,16,221,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,77,95,116,17,6,124,112,64,26,20,8,202,6,16,222,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,220,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,141,247,214,81,201,15,144,64,26,20,8,202,6,16,224,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,18,221,186,255,212,167,114,64,26,20,8,202,6,16,225,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,223,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,137,219,196,241,90,161,144,64,26,20,8,202,6,16,227,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,169,72,144,92,44,185,116,64,26,20,8,202,6,16,228,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,226,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,203,90,220,235,159,90,145,64,26,20,8,202,6,16,230,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,90,89,48,226,45,70,118,64,26,20,8,202,6,16,231,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,229,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,204,234,181,173,92,146,64,26,20,8,202,6,16,233,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,110,198,214,74,251,228,118,64,26,20,8,202,6,16,234,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,232,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,97,219,162,170,147,147,64,26,20,8,202,6,16,236,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,136,107,161,115,165,96,118,64,26,20,8,202,6,16,237,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,235,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,21,229,90,254,47,176,148,64,26,20,8,202,6,16,239,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,77,36,174,57,61,132,116,64,26,20,8,202,6,16,240,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,238,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,133,118,227,137,236,131,149,64,26,20,8,202,6,16,242,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,70,39,80,81,41,159,113,64,26,20,8,202,6,16,243,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,241,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,209,24,97,66,8,150,64,26,20,8,202,6,16,245,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,16,195,91,70,110,160,108,64,26,20,8,202,6,16,246,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,244,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,198,245,250,131,49,61,150,64,26,20,8,202,6,16,248,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,127,202,112,129,188,99,101,64,26,20,8,202,6,16,249,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,247,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,152,227,137,242,185,34,150,64,26,20,8,202,6,16,251,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,37,91,71,51,55,228,91,64,26,20,8,202,6,16,252,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,250,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,165,60,22,152,18,204,79,64,26,20,8,202,6,16,255,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,85,86,105,200,61,178,149,64,26,20,8,202,6,16,254,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,253,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,12,119,38,219,62,47,64,26,20,8,202,6,16,130,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,208,73,49,164,124,136,148,64,26,20,8,202,6,16,129,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,128,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,198,48,193,91,250,52,146,64,26,20,8,202,6,16,132,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,132,217,235,27,30,212,65,192,26,20,8,202,6,16,133,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,131,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,120,47,162,38,240,194,143,64,26,20,8,202,6,16,135,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,47,60,219,49,177,148,76,192,26,20,8,202,6,16,136,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,134,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,186,233,127,248,253,115,140,64,26,20,8,202,6,16,138,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,191,170,82,166,244,192,75,192,26,20,8,202,6,16,139,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,137,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,244,106,116,167,218,167,66,192,26,20,8,202,6,16,142,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,179,236,33,16,234,142,137,64,26,20,8,202,6,16,141,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,140,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,5,248,147,234,86,112,135,64,26,20,8,202,6,16,144,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,249,214,250,109,170,105,237,191,26,20,8,202,6,16,145,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,143,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,35,185,112,115,111,90,134,64,26,20,8,202,6,16,147,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,92,113,243,60,20,21,64,64,26,20,8,202,6,16,148,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,146,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,202,176,160,176,238,147,133,64,26,20,8,202,6,16,150,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,96,24,199,28,49,176,85,64,26,20,8,202,6,16,151,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,149,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,251,222,35,162,212,28,133,64,26,20,8,202,6,16,153,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,16,57,232,245,255,143,100,64,26,20,8,202,6,16,154,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,152,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,18,104,220,106,16,42,133,64,26,20,8,202,6,16,156,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,160,49,211,186,177,204,107,64,26,20,8,202,6,16,157,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,155,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,76,202,10,162,187,133,64,26,20,8,202,6,16,159,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,234,2,110,46,58,106,113,64,26,20,8,202,6,16,160,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,158,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,138,237,129,137,209,134,64,26,20,8,202,6,16,162,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,51,127,227,16,147,8,117,64,26,20,8,202,6,16,163,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,161,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,143,46,231,158,189,191,135,64,26,20,8,202,6,16,165,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,156,216,71,220,114,255,118,64,26,20,8,202,6,16,166,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,164,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,209,173,254,152,2,121,136,64,26,20,8,202,6,16,168,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,57,124,65,249,166,237,119,64,26,20,8,202,6,16,169,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,167,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,186,233,127,248,253,115,140,64,26,20,8,202,6,16,171,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,143,104,255,91,185,69,121,64,26,20,8,202,6,16,172,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,170,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,173,121,55,120,68,186,142,64,26,20,8,202,6,16,174,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,222,87,95,214,183,184,119,64,26,20,8,202,6,16,175,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,173,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,141,247,214,81,201,15,144,64,26,20,8,202,6,16,177,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,71,236,137,121,96,167,117,64,26,20,8,202,6,16,178,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,176,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,162,114,134,234,205,101,144,64,26,20,8,202,6,16,180,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,175,128,180,28,9,150,115,64,26,20,8,202,6,16,181,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,179,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,160,100,125,186,150,174,144,64,26,20,8,202,6,16,183,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,215,149,199,197,108,203,112,64,26,20,8,202,6,16,184,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,182,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,160,49,211,186,177,204,107,64,26,20,8,202,6,16,187,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,206,118,238,75,14,201,144,64,26,20,8,202,6,16,186,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,185,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,254,150,104,13,189,154,144,64,26,20,8,202,6,16,189,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,42,163,236,70,225,19,104,64,26,20,8,202,6,16,190,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,188,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,24,60,51,54,103,22,144,64,26,20,8,202,6,16,192,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,127,202,112,129,188,99,101,64,26,20,8,202,6,16,193,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,191,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,196,2,240,64,128,199,142,64,26,20,8,202,6,16,195,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,252,203,65,141,50,241,99,64,26,20,8,202,6,16,196,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,194,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,42,123,8,132,186,71,141,64,26,20,8,202,6,16,198,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,160,167,95,106,67,188,99,64,26,20,8,202,6,16,199,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,197,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,22,54,70,222,19,117,103,64,26,20,8,202,6,16,202,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,104,25,212,245,89,138,138,64,26,20,8,202,6,16,201,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,200,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,252,85,181,221,160,1,108,64,26,20,8,202,6,16,205,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,87,200,63,237,250,89,137,64,26,20,8,202,6,16,204,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,203,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,163,155,141,7,139,94,136,64,26,20,8,202,6,16,207,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,5,168,56,87,228,229,112,64,26,20,8,202,6,16,208,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,206,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,166,183,159,103,249,204,135,64,26,20,8,202,6,16,210,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,97,145,84,162,10,35,117,64,26,20,8,202,6,16,211,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,209,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,74,147,189,68,10,152,135,64,26,20,8,202,6,16,213,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,64,121,159,225,186,210,122,64,26,20,8,202,6,16,214,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,212,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,71,119,171,228,155,41,136,64,26,20,8,202,6,16,216,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,144,48,117,144,53,65,128,64,26,20,8,202,6,16,217,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,215,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,202,117,218,216,37,156,137,64,26,20,8,202,6,16,219,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,246,109,199,251,166,201,130,64,26,20,8,202,6,16,220,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,218,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,120,106,104,254,184,186,139,64,26,20,8,202,6,16,222,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,233,253,126,123,237,15,133,64,26,20,8,202,6,16,223,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,221,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,162,114,134,234,205,101,144,64,26,20,8,202,6,16,225,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,29,13,78,245,120,15,136,64,26,20,8,202,6,16,226,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,224,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,57,222,91,71,37,119,146,64,26,20,8,202,6,16,228,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,210,57,0,219,232,10,137,64,26,20,8,202,6,16,229,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,227,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,233,194,184,163,36,24,137,64,26,20,8,202,6,16,232,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,185,192,120,219,64,123,148,64,26,20,8,202,6,16,231,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,230,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,145,36,222,228,100,150,64,26,20,8,202,6,16,234,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,193,232,107,210,137,218,135,64,26,20,8,202,6,16,235,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,233,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,166,24,12,155,170,228,151,64,26,20,8,202,6,16,237,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,157,42,49,97,93,11,134,64,26,20,8,202,6,16,238,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,236,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,111,192,109,25,31,54,153,64,26,20,8,202,6,16,240,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,9,219,109,100,116,104,131,64,26,20,8,202,6,16,241,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,239,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,86,94,6,28,109,154,64,26,20,8,202,6,16,243,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,136,245,20,196,19,113,126,64,26,20,8,202,6,16,244,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,242,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,21,106,131,190,201,154,64,26,20,8,202,6,16,246,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,44,71,191,80,182,43,118,64,26,20,8,202,6,16,247,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,245,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,221,67,237,116,164,82,154,64,26,20,8,202,6,16,249,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,95,119,245,232,163,27,111,64,26,20,8,202,6,16,250,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,248,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,87,41,172,32,172,113,153,64,26,20,8,202,6,16,252,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,219,238,82,164,171,152,101,64,26,20,8,202,6,16,253,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,251,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,26,212,175,182,12,222,151,64,26,20,8,202,6,16,255,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,30,94,233,74,35,255,88,64,26,20,8,202,6,16,128,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,254,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,175,108,66,187,245,47,150,64,26,20,8,202,6,16,130,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,185,31,73,176,113,90,72,64,26,20,8,202,6,16,131,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,129,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,90,128,132,88,227,215,148,64,26,20,8,202,6,16,133,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,250,217,38,130,127,11,69,64,26,20,8,202,6,16,134,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,132,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,216,143,94,148,144,28,147,64,26,20,8,202,6,16,136,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,119,101,107,222,99,169,75,64,26,20,8,202,6,16,137,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,135,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,214,166,173,144,1,105,89,64,26,20,8,202,6,16,140,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,41,141,199,62,198,70,145,64,26,20,8,202,6,16,139,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,138,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,29,11,192,3,1,142,143,64,26,20,8,202,6,16,142,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,239,91,249,12,121,55,102,64,26,20,8,202,6,16,143,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,141,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,229,223,222,41,7,32,141,64,26,20,8,202,6,16,145,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,116,57,193,226,160,185,113,64,26,20,8,202,6,16,146,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,144,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,32,98,152,59,56,244,138,64,26,20,8,202,6,16,148,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,183,10,194,97,208,126,129,64,26,20,8,202,6,16,149,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,147,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,216,170,92,129,22,94,139,64,26,20,8,202,6,16,151,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,180,179,233,41,153,24,134,64,26,20,8,202,6,16,152,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,150,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,229,223,222,41,7,32,141,64,26,20,8,202,6,16,154,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,249,19,77,172,131,72,138,64,26,20,8,202,6,16,155,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,153,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,47,197,235,254,162,35,144,64,26,20,8,202,6,16,157,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,207,226,39,163,177,164,141,64,26,20,8,202,6,16,158,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,156,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,157,103,196,199,211,146,64,26,20,8,202,6,16,160,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,118,52,31,170,128,75,144,64,26,20,8,202,6,16,161,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,202,6,16,159,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,202,6,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,34,19,8,234,6,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,212,7,18,209,7,10,206,7,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,203,6,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,203,6,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,124,185,21,119,94,239,160,64,26,19,8,203,6,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,216,113,36,155,197,231,135,64,26,19,8,203,6,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,203,6,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,147,66,206,63,154,252,160,64,26,19,8,203,6,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,170,95,179,9,78,205,135,64,26,19,8,203,6,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,203,6,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,164,39,143,73,113,240,136,64,26,19,8,203,6,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,147,66,206,63,154,252,160,64,26,19,8,203,6,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,203,6,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,14,47,188,211,222,160,64,26,19,8,203,6,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,203,1,220,26,12,46,138,64,26,19,8,203,6,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,203,6,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,126,78,35,63,49,130,160,64,26,19,8,203,6,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,29,210,135,29,176,23,140,64,26,19,8,203,6,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,203,6,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,79,168,184,88,207,229,158,64,26,19,8,203,6,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,82,225,86,151,59,23,143,64,26,19,8,203,6,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,203,6,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,92,24,1,217,136,159,156,64,26,19,8,203,6,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,138,161,197,18,78,234,144,64,26,19,8,203,6,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,203,6,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,203,6,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,203,6,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,203,6,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,195,8,18,192,8,10,189,8,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,204,6,16,4,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,22,205,25,247,108,127,145,64,26,19,8,204,6,16,7,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,40,10,1,121,18,35,26,33,8,4,18,8,233,169,236,230,107,11,146,64,26,19,8,204,6,16,8,26,12,98,255,31,32,217,176,234,142,137,49,183,19,18,19,8,204,6,16,6,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,194,68,71,241,130,145,64,26,19,8,204,6,16,10,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,40,10,1,121,18,35,26,33,8,4,18,8,75,72,11,16,59,123,145,64,26,19,8,204,6,16,11,26,12,98,255,31,32,217,176,234,142,137,49,183,19,18,19,8,204,6,16,9,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,151,63,115,89,169,176,145,64,26,19,8,204,6,16,13,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,40,10,1,121,18,35,26,33,8,4,18,8,1,234,91,13,246,66,145,64,26,19,8,204,6,16,14,26,12,98,255,31,32,217,176,234,142,137,49,183,19,18,19,8,204,6,16,12,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,79,198,118,27,221,218,145,64,26,19,8,204,6,16,16,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,40,10,1,121,18,35,26,33,8,4,18,8,166,38,90,44,220,45,145,64,26,19,8,204,6,16,17,26,12,98,255,31,32,217,176,234,142,137,49,183,19,18,19,8,204,6,16,15,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,53,161,84,48,218,64,146,64,26,19,8,204,6,16,19,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,40,10,1,121,18,35,26,33,8,4,18,8,101,109,45,251,61,21,145,64,26,19,8,204,6,16,20,26,12,98,255,31,32,217,176,234,142,137,49,183,19,18,19,8,204,6,16,18,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,229,103,136,229,223,173,146,64,26,19,8,204,6,16,22,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,40,10,1,121,18,35,26,33,8,4,18,8,74,99,88,75,194,24,145,64,26,19,8,204,6,16,23,26,12,98,255,31,32,217,176,234,142,137,49,183,19,18,19,8,204,6,16,21,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,248,96,87,143,212,146,64,26,19,8,204,6,16,25,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,40,10,1,121,18,35,26,33,8,4,18,8,111,18,176,204,228,52,145,64,26,19,8,204,6,16,26,26,12,98,255,31,32,217,176,234,142,137,49,183,19,18,19,8,204,6,16,24,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,156,238,139,167,19,216,146,64,26,19,8,204,6,16,28,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,40,10,1,121,18,35,26,33,8,4,18,8,1,234,91,13,246,66,145,64,26,19,8,204,6,16,29,26,12,98,255,31,32,217,176,234,142,137,49,183,19,18,19,8,204,6,16,27,26,12,98,255,31,32,217,176,234,142,137,49,183,19,18,19,8,204,6,16,5,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,204,6,16,2,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,54,50,51,55,97,51,26,19,8,204,6,16,3,26,12,98,255,31,32,217,176,234,142,137,49,183,19,18,19,8,204,6,16,1,26,12,98,255,31,32,217,176,234,142,137,49,183,19,10,152,151,1,18,148,151,1,10,144,151,1,10,237,149,1,10,6,112,111,105,110,116,115,18,225,149,1,18,221,149,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,32,41,96,85,231,125,135,64,26,19,8,205,6,16,8,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,116,234,136,169,196,91,152,64,26,19,8,205,6,16,7,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,6,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,0,98,156,124,217,152,64,26,19,8,205,6,16,10,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,190,204,89,114,27,108,136,64,26,19,8,205,6,16,11,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,9,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,4,202,253,188,60,153,64,26,19,8,205,6,16,13,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,187,176,71,18,173,253,136,64,26,19,8,205,6,16,14,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,12,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,214,70,12,215,179,153,64,26,19,8,205,6,16,16,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,138,130,196,32,199,116,137,64,26,19,8,205,6,16,17,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,15,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,59,118,216,199,202,62,154,64,26,19,8,205,6,16,19,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,42,66,208,157,105,209,137,64,26,19,8,205,6,16,20,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,18,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,241,176,147,221,113,241,154,64,26,19,8,205,6,16,22,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,157,239,106,137,148,19,138,64,26,19,8,205,6,16,23,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,21,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,180,120,35,82,208,32,138,64,26,19,8,205,6,16,26,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,84,210,211,232,116,11,158,64,26,19,8,205,6,16,25,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,24,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,102,49,113,33,11,243,158,64,26,19,8,205,6,16,28,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,134,102,178,192,88,6,138,64,26,19,8,205,6,16,29,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,27,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,115,249,11,88,139,103,137,64,26,19,8,205,6,16,32,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,245,158,212,34,102,14,160,64,26,19,8,205,6,16,31,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,30,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,126,90,97,183,60,160,64,26,19,8,205,6,16,34,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,141,158,214,128,53,227,136,64,26,19,8,205,6,16,35,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,33,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,127,213,39,215,204,93,160,64,26,19,8,205,6,16,37,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,98,168,119,79,44,55,136,64,26,19,8,205,6,16,38,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,36,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,26,132,187,106,100,160,64,26,19,8,205,6,16,40,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,32,41,96,85,231,125,135,64,26,19,8,205,6,16,41,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,39,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,144,203,242,46,87,160,64,26,19,8,205,6,16,43,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,177,151,215,201,42,170,134,64,26,19,8,205,6,16,44,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,42,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,175,245,161,152,123,47,160,64,26,19,8,205,6,16,46,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,206,88,180,82,67,148,133,64,26,19,8,205,6,16,47,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,45,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,26,94,35,7,123,238,159,64,26,19,8,205,6,16,49,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,26,44,2,109,211,152,132,64,26,19,8,205,6,16,50,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,48,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,193,35,50,170,82,210,131,64,26,19,8,205,6,16,53,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,215,208,2,221,254,125,159,64,26,19,8,205,6,16,52,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,51,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,148,67,226,178,130,13,159,64,26,19,8,205,6,16,55,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,196,63,68,10,193,64,131,64,26,19,8,205,6,16,56,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,54,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,36,128,56,141,30,228,130,64,26,19,8,205,6,16,59,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,57,45,9,192,202,143,158,64,26,19,8,205,6,16,58,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,57,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,16,69,179,190,248,154,157,64,26,19,8,205,6,16,61,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,13,247,127,196,226,214,130,64,26,19,8,205,6,16,62,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,60,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,112,133,167,65,86,62,157,64,26,19,8,205,6,16,64,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,173,182,139,65,133,51,131,64,26,19,8,205,6,16,65,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,63,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,216,172,234,114,142,223,131,64,26,19,8,205,6,16,68,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,207,197,155,196,179,225,156,64,26,19,8,205,6,16,67,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,66,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,229,21,134,98,179,156,64,26,19,8,205,6,16,70,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,72,62,115,254,74,179,132,64,26,19,8,205,6,16,71,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,69,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,231,92,93,189,38,166,156,64,26,19,8,205,6,16,73,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,42,125,150,117,50,201,133,64,26,19,8,205,6,16,74,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,72,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,111,206,78,158,192,156,64,26,19,8,205,6,16,76,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,59,206,42,126,145,249,134,64,26,19,8,205,6,16,77,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,75,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,18,83,188,238,47,82,157,64,26,19,8,205,6,16,79,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,167,67,161,169,223,94,136,64,26,19,8,205,6,16,80,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,78,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,39,38,190,61,251,98,138,64,26,19,8,205,6,16,83,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,148,67,226,178,130,13,159,64,26,19,8,205,6,16,82,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,81,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,128,46,142,0,124,41,139,64,26,19,8,205,6,16,86,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,12,161,136,83,6,64,160,64,26,19,8,205,6,16,85,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,84,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,133,118,243,151,209,160,64,26,19,8,205,6,16,88,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,33,238,153,125,30,134,139,64,26,19,8,205,6,16,89,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,87,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,216,221,247,153,77,36,161,64,26,19,8,205,6,16,91,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,56,119,82,70,90,147,139,64,26,19,8,205,6,16,92,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,90,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,167,54,121,64,3,119,161,64,26,19,8,205,6,16,94,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,220,82,112,35,107,94,139,64,26,19,8,205,6,16,95,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,93,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,56,45,113,163,168,161,64,26,19,8,205,6,16,97,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,59,147,100,166,200,1,139,64,26,19,8,205,6,16,98,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,96,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,6,66,30,125,188,161,64,26,19,8,205,6,16,100,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,108,193,231,151,174,138,138,64,26,19,8,205,6,16,101,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,99,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,111,221,249,247,28,249,137,64,26,19,8,205,6,16,104,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,236,74,158,2,27,195,161,64,26,19,8,205,6,16,103,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,102,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,6,66,30,125,188,161,64,26,19,8,205,6,16,106,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,164,39,143,73,113,240,136,64,26,19,8,205,6,16,107,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,105,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,101,196,137,175,154,165,135,64,26,19,8,205,6,16,110,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,120,18,35,26,33,8,4,18,8,27,107,24,196,201,148,161,64,26,19,8,205,6,16,109,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,108,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,168,189,125,216,158,82,161,64,26,19,8,205,6,16,112,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,200,32,144,146,102,183,134,64,26,19,8,205,6,16,113,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,111,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,193,84,63,209,17,23,161,64,26,19,8,205,6,16,115,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,203,60,162,242,212,37,134,64,26,19,8,205,6,16,116,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,114,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,48,93,174,34,226,160,64,26,19,8,205,6,16,118,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,111,24,192,207,229,240,133,64,26,19,8,205,6,16,119,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,117,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,57,44,245,76,226,126,160,64,26,19,8,205,6,16,121,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,134,161,120,152,33,254,133,64,26,19,8,205,6,16,122,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,120,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,110,157,0,224,83,160,64,26,19,8,205,6,16,124,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,40,10,1,121,18,35,26,33,8,4,18,8,62,234,60,222,255,103,134,64,26,19,8,205,6,16,125,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,123,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,12,161,136,83,6,64,160,64,26,19,8,205,6,16,127,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,82,87,227,70,205,6,135,64,26,20,8,205,6,16,128,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,126,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,198,126,90,97,183,60,160,64,26,20,8,205,6,16,130,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,49,122,244,93,70,174,136,64,26,20,8,205,6,16,131,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,129,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,244,144,203,242,46,87,160,64,26,20,8,205,6,16,133,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,252,47,95,12,242,182,137,64,26,20,8,205,6,16,134,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,132,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,85,56,47,207,114,125,138,64,26,20,8,205,6,16,137,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,149,215,219,7,109,143,160,64,26,20,8,205,6,16,136,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,135,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,145,173,192,119,199,105,161,64,26,20,8,205,6,16,139,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,170,36,237,49,133,213,139,64,26,20,8,205,6,16,140,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,138,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,94,113,52,86,170,41,162,64,26,20,8,205,6,16,142,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,29,210,135,29,176,23,140,64,26,20,8,205,6,16,143,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,141,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,159,240,75,80,239,226,162,64,26,20,8,205,6,16,145,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,216,54,94,195,252,239,139,64,26,20,8,205,6,16,146,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,144,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,154,198,48,192,73,189,163,64,26,20,8,205,6,16,148,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,177,92,17,242,97,178,138,64,26,20,8,205,6,16,149,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,147,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,177,200,228,240,233,238,163,64,26,20,8,205,6,16,151,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,180,120,35,82,208,32,138,64,26,20,8,205,6,16,152,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,150,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,12,102,194,123,61,72,164,64,26,20,8,205,6,16,154,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,164,39,143,73,113,240,136,64,26,20,8,205,6,16,155,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,153,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,219,190,67,34,243,154,164,64,26,20,8,205,6,16,157,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,223,169,72,91,162,196,134,64,26,20,8,205,6,16,158,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,156,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,158,201,96,68,201,164,64,26,20,8,205,6,16,160,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,49,181,186,53,15,166,132,64,26,20,8,205,6,16,161,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,159,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,241,192,247,82,147,204,164,64,26,20,8,205,6,16,163,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,147,17,193,24,219,183,131,64,26,20,8,205,6,16,164,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,162,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,81,146,169,30,150,254,130,64,26,20,8,205,6,16,167,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,102,124,155,110,245,197,164,64,26,20,8,205,6,16,166,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,165,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,71,252,234,46,168,164,64,26,20,8,205,6,16,169,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,39,156,74,237,140,82,130,64,26,20,8,205,6,16,170,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,168,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,197,188,143,241,82,105,164,64,26,20,8,205,6,16,172,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,157,101,247,56,38,3,130,64,26,20,8,205,6,16,173,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,171,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,36,253,131,116,176,12,164,64,26,20,8,205,6,16,175,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,226,0,33,147,217,42,130,64,26,20,8,205,6,16,176,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,174,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,200,91,86,106,47,175,130,64,26,20,8,205,6,16,179,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,155,77,53,88,229,152,163,64,26,20,8,205,6,16,178,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,177,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,18,158,230,59,26,37,163,64,26,20,8,205,6,16,181,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,147,17,193,24,219,183,131,64,26,20,8,205,6,16,182,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,180,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,113,222,218,190,119,200,162,64,26,20,8,205,6,16,184,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,210,116,198,178,177,2,133,64,26,20,8,205,6,16,185,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,183,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,91,220,38,142,215,150,162,64,26,20,8,205,6,16,187,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,180,179,233,41,153,24,134,64,26,20,8,205,6,16,188,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,186,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,254,48,64,211,76,134,162,64,26,20,8,205,6,16,190,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,105,224,155,15,9,20,135,64,26,20,8,205,6,16,191,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,189,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,45,202,181,252,95,124,162,64,26,20,8,205,6,16,193,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,98,168,119,79,44,55,136,64,26,20,8,205,6,16,194,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,192,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,14,18,225,253,130,162,64,26,20,8,205,6,16,196,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,210,57,0,219,232,10,137,64,26,20,8,205,6,16,197,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,195,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,91,220,38,142,215,150,162,64,26,20,8,205,6,16,199,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,252,47,95,12,242,182,137,64,26,20,8,205,6,16,200,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,198,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,19,37,235,211,181,0,163,64,26,20,8,205,6,16,202,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,16,157,5,117,191,85,138,64,26,20,8,205,6,16,203,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,201,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,111,73,205,246,164,53,163,64,26,20,8,205,6,16,205,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,16,157,5,117,191,85,138,64,26,20,8,205,6,16,206,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,204,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,226,246,103,226,207,119,163,64,26,20,8,205,6,16,208,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,42,66,208,157,105,209,137,64,26,20,8,205,6,16,209,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,207,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,154,63,44,40,174,225,163,64,26,20,8,205,6,16,211,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,219,141,54,251,51,86,135,64,26,20,8,205,6,16,212,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,210,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,229,225,108,27,127,161,133,64,26,20,8,205,6,16,215,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,60,13,65,213,135,245,163,64,26,20,8,205,6,16,214,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,213,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,60,13,65,213,135,245,163,64,26,20,8,205,6,16,217,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,121,108,246,239,48,60,132,64,26,20,8,205,6,16,218,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,216,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,164,2,206,250,185,163,64,26,20,8,205,6,16,220,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,249,137,217,91,21,56,130,64,26,20,8,205,6,16,221,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,219,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,249,127,32,171,11,133,163,64,26,20,8,205,6,16,223,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,252,165,235,187,131,166,129,64,26,20,8,205,6,16,224,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,222,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,157,91,62,136,28,80,163,64,26,20,8,205,6,16,226,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,137,248,80,208,88,100,129,64,26,20,8,205,6,16,227,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,225,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,112,208,209,142,64,17,163,64,26,20,8,205,6,16,229,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,137,248,80,208,88,100,129,64,26,20,8,205,6,16,230,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,228,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,206,137,193,121,2,217,162,64,26,20,8,205,6,16,232,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,229,28,51,243,71,153,129,64,26,20,8,205,6,16,233,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,231,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,254,169,59,59,177,170,162,64,26,20,8,205,6,16,235,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,226,0,33,147,217,42,130,64,26,20,8,205,6,16,236,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,234,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,254,48,64,211,76,134,162,64,26,20,8,205,6,16,238,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,81,146,169,30,150,254,130,64,26,20,8,205,6,16,239,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,237,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,139,252,160,79,134,104,162,64,26,20,8,205,6,16,241,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,3,163,73,164,151,139,132,64,26,20,8,205,6,16,242,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,240,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,206,88,180,82,67,148,133,64,26,20,8,205,6,16,245,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,162,133,89,24,194,117,162,64,26,20,8,205,6,16,244,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,243,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,114,101,223,86,19,164,162,64,26,20,8,205,6,16,247,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,200,32,144,146,102,183,134,64,26,20,8,205,6,16,248,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,246,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,43,53,168,52,141,233,162,64,26,20,8,205,6,16,250,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,242,22,239,195,111,99,135,64,26,20,8,205,6,16,251,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,249,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,107,251,232,243,56,163,64,26,20,8,205,6,16,253,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,78,59,209,230,94,152,135,64,26,20,8,205,6,16,254,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,252,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,132,196,124,143,169,139,163,64,26,20,8,205,6,16,128,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,78,59,209,230,94,152,135,64,26,20,8,205,6,16,129,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,255,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,177,79,233,136,133,202,163,64,26,20,8,205,6,16,131,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,219,141,54,251,51,86,135,64,26,20,8,205,6,16,132,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,130,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,130,47,111,199,214,248,163,64,26,20,8,205,6,16,134,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,223,169,72,91,162,196,134,64,26,20,8,205,6,16,135,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,133,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,13,237,198,19,217,35,164,64,26,20,8,205,6,16,137,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,183,207,251,137,7,135,133,64,26,20,8,205,6,16,138,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,136,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,175,186,219,192,178,55,164,64,26,20,8,205,6,16,140,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,239,53,163,59,202,236,131,64,26,20,8,205,6,16,141,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,139,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,82,15,245,5,40,39,164,64,26,20,8,205,6,16,143,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,223,228,14,51,107,188,130,64,26,20,8,205,6,16,144,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,142,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,184,39,144,18,6,164,64,26,20,8,205,6,16,146,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,88,202,205,222,114,219,129,64,26,20,8,205,6,16,147,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,145,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,216,161,81,193,215,163,64,26,20,8,205,6,16,149,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,255,193,253,27,242,20,129,64,26,20,8,205,6,16,150,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,148,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,250,6,37,67,167,96,163,64,26,20,8,205,6,16,152,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,190,66,230,33,173,91,128,64,26,20,8,205,6,16,153,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,151,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,228,139,117,170,162,10,163,64,26,20,8,205,6,16,155,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,167,185,45,89,113,78,128,64,26,20,8,205,6,16,156,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,154,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,160,119,80,232,138,190,162,64,26,20,8,205,6,16,158,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,49,240,128,13,216,157,128,64,26,20,8,205,6,16,159,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,157,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,208,151,202,169,57,144,162,64,26,20,8,205,6,16,161,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,45,212,110,173,105,47,129,64,26,20,8,205,6,16,162,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,160,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,139,252,160,79,134,104,162,64,26,20,8,205,6,16,164,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,65,65,21,22,55,206,129,64,26,20,8,205,6,16,165,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,163,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,163,12,94,176,93,81,162,64,26,20,8,205,6,16,167,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,85,174,187,126,4,109,130,64,26,20,8,205,6,16,168,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,166,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,13,247,127,196,226,214,130,64,26,20,8,205,6,16,171,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,23,200,1,204,191,74,162,64,26,20,8,205,6,16,170,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,169,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,93,234,47,190,14,78,162,64,26,20,8,205,6,16,173,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,101,255,79,135,99,157,131,64,26,20,8,205,6,16,174,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,172,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,186,149,22,121,153,94,162,64,26,20,8,205,6,16,176,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,193,35,50,170,82,210,131,64,26,20,8,205,6,16,177,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,175,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,6,191,91,4,6,250,131,64,26,20,8,205,6,16,180,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,115,236,227,238,174,127,162,64,26,20,8,205,6,16,179,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,178,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,254,169,59,59,177,170,162,64,26,20,8,205,6,16,182,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,29,72,20,205,65,7,132,64,26,20,8,205,6,16,183,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,181,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,136,103,147,135,179,213,162,64,26,20,8,205,6,16,185,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,29,72,20,205,65,7,132,64,26,20,8,205,6,16,186,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,184,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,216,172,234,114,142,223,131,64,26,20,8,205,6,16,189,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,112,208,209,142,64,17,163,64,26,20,8,205,6,16,188,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,187,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,88,192,20,46,105,40,163,64,26,20,8,205,6,16,191,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,9,219,109,100,116,104,131,64,26,20,8,205,6,16,192,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,190,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,41,39,159,4,86,50,163,64,26,20,8,205,6,16,194,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,104,27,98,231,209,11,131,64,26,20,8,205,6,16,195,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,193,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,200,91,86,106,47,175,130,64,26,20,8,205,6,16,198,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,111,73,205,246,164,53,163,64,26,20,8,205,6,16,197,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,196,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,158,226,66,32,184,43,163,64,26,20,8,205,6,16,200,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,39,156,74,237,140,82,130,64,26,20,8,205,6,16,201,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,199,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,135,89,138,87,124,30,163,64,26,20,8,205,6,16,203,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,180,238,175,1,98,16,130,64,26,20,8,205,6,16,204,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,202,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,19,37,235,211,181,0,163,64,26,20,8,205,6,16,206,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,65,65,21,22,55,206,129,64,26,20,8,205,6,16,207,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,205,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,229,28,51,243,71,153,129,64,26,20,8,205,6,16,210,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,67,69,101,149,100,210,162,64,26,20,8,205,6,16,209,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,208,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,229,28,51,243,71,153,129,64,26,20,8,205,6,16,213,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,231,32,131,114,117,157,162,64,26,20,8,205,6,16,212,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,211,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,116,115,232,134,74,91,162,64,26,20,8,205,6,16,215,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,88,202,205,222,114,219,129,64,26,20,8,205,6,16,216,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,214,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,24,79,6,100,91,38,162,64,26,20,8,205,6,16,218,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,39,156,74,237,140,82,130,64,26,20,8,205,6,16,219,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,217,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,49,230,199,92,206,234,161,64,26,20,8,205,6,16,221,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,127,164,26,176,13,25,131,64,26,20,8,205,6,16,222,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,220,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,125,137,85,65,175,161,64,26,20,8,205,6,16,224,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,52,209,204,149,125,20,132,64,26,20,8,205,6,16,225,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,223,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,74,4,142,237,220,138,161,64,26,20,8,205,6,16,227,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,210,116,198,178,177,2,133,64,26,20,8,205,6,16,228,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,226,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,237,88,167,50,82,122,161,64,26,20,8,205,6,16,230,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,42,125,150,117,50,201,133,64,26,20,8,205,6,16,231,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,229,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,54,121,64,3,119,161,64,26,20,8,205,6,16,233,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,62,234,60,222,255,103,134,64,26,20,8,205,6,16,234,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,232,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,4,226,95,251,141,135,161,64,26,20,8,205,6,16,236,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,82,87,227,70,205,6,135,64,26,20,8,205,6,16,237,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,235,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,25,214,10,252,246,1,162,64,26,20,8,205,6,16,239,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,193,232,107,210,137,218,135,64,26,20,8,205,6,16,240,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,238,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,46,81,186,148,251,87,162,64,26,20,8,205,6,16,242,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,6,132,149,44,61,2,136,64,26,20,8,205,6,16,243,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,241,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,29,13,78,245,120,15,136,64,26,20,8,205,6,16,246,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,254,169,59,59,177,170,162,64,26,20,8,205,6,16,245,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,244,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,66,190,96,253,200,246,162,64,26,20,8,205,6,16,248,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,193,232,107,210,137,218,135,64,26,20,8,205,6,16,249,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,247,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,227,4,113,18,7,47,163,64,26,20,8,205,6,16,251,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,32,41,96,85,231,125,135,64,26,20,8,205,6,16,252,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,250,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,110,194,200,94,9,90,163,64,26,20,8,205,6,16,254,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,154,14,31,1,239,156,134,64,26,20,8,205,6,16,255,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,253,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,40,160,154,108,186,86,163,64,26,20,8,205,6,16,129,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,180,179,233,41,153,24,134,64,26,20,8,205,6,16,130,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,128,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,107,251,232,243,56,163,64,26,20,8,205,6,16,132,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,160,70,67,193,203,121,133,64,26,20,8,205,6,16,133,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,131,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,208,151,202,169,57,144,162,64,26,20,8,205,6,16,135,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,236,25,145,219,91,126,132,64,26,20,8,205,6,16,136,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,134,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,187,163,31,169,208,21,162,64,26,20,8,205,6,16,138,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,167,126,103,129,168,86,132,64,26,20,8,205,6,16,139,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,137,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,213,72,234,209,122,145,161,64,26,20,8,205,6,16,141,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,3,163,73,164,151,139,132,64,26,20,8,205,6,16,142,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,140,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,79,46,169,125,130,176,160,64,26,20,8,205,6,16,144,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,226,197,90,187,16,51,134,64,26,20,8,205,6,16,145,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,143,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,34,163,60,132,166,113,160,64,26,20,8,205,6,16,147,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,105,224,155,15,9,20,135,64,26,20,8,205,6,16,148,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,146,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,12,161,136,83,6,64,160,64,26,20,8,205,6,16,150,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,52,150,6,190,180,28,136,64,26,20,8,205,6,16,151,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,149,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,152,108,233,207,63,34,160,64,26,20,8,205,6,16,153,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,164,39,143,73,113,240,136,64,26,20,8,205,6,16,154,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,152,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,12,40,141,235,161,27,160,64,26,20,8,205,6,16,156,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,183,148,53,178,62,143,137,64,26,20,8,205,6,16,157,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,155,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,152,108,233,207,63,34,160,64,26,20,8,205,6,16,159,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,88,84,65,47,225,235,137,64,26,20,8,205,6,16,160,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,158,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,151,229,228,55,164,70,160,64,26,20,8,205,6,16,162,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,39,38,190,61,251,98,138,64,26,20,8,205,6,16,163,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,161,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,243,9,199,90,147,123,160,64,26,20,8,205,6,16,165,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,154,211,88,41,38,165,138,64,26,20,8,205,6,16,166,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,164,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,31,14,47,188,211,222,160,64,26,20,8,205,6,16,168,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,177,92,17,242,97,178,138,64,26,20,8,205,6,16,169,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,167,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,214,207,238,105,22,109,161,64,26,20,8,205,6,16,171,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,39,38,190,61,251,98,138,64,26,20,8,205,6,16,172,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,170,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,95,127,61,134,225,224,161,64,26,20,8,205,6,16,174,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,206,29,238,122,122,156,137,64,26,20,8,205,6,16,175,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,173,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,186,28,27,17,53,58,162,64,26,20,8,205,6,16,177,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,72,3,173,38,130,187,136,64,26,20,8,205,6,16,178,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,176,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,92,99,43,38,115,114,162,64,26,20,8,205,6,16,180,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,239,250,220,99,1,245,135,64,26,20,8,205,6,16,181,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,179,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,82,87,227,70,205,6,135,64,26,20,8,205,6,16,184,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,161,254,84,128,38,154,162,64,26,20,8,205,6,16,183,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,182,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,210,116,198,178,177,2,133,64,26,20,8,205,6,16,187,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,21,51,244,3,237,183,162,64,26,20,8,205,6,16,186,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,185,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,115,236,227,238,174,127,162,64,26,20,8,205,6,16,189,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,193,35,50,170,82,210,131,64,26,20,8,205,6,16,190,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,188,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,187,163,31,169,208,21,162,64,26,20,8,205,6,16,192,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,131,192,44,16,124,135,130,64,26,20,8,205,6,16,193,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,191,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,175,116,168,103,155,161,64,26,20,8,205,6,16,195,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,19,47,164,132,191,179,129,64,26,20,8,205,6,16,196,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,194,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,123,50,17,223,194,19,161,64,26,20,8,205,6,16,198,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,68,93,39,118,165,60,129,64,26,20,8,205,6,16,199,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,197,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,80,181,173,21,30,140,160,64,26,20,8,205,6,16,201,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,255,193,253,27,242,20,129,64,26,20,8,205,6,16,202,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,200,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,36,56,74,76,121,4,160,64,26,20,8,205,6,16,204,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,68,93,39,118,165,60,129,64,26,20,8,205,6,16,205,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,203,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,7,241,124,158,173,79,159,64,26,20,8,205,6,16,207,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,252,165,235,187,131,166,129,64,26,20,8,205,6,16,208,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,206,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,151,95,244,18,241,123,158,64,26,20,8,205,6,16,210,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,200,91,86,106,47,175,130,64,26,20,8,205,6,16,211,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,209,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,202,155,128,52,14,188,157,64,26,20,8,205,6,16,213,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,216,172,234,114,142,223,131,64,26,20,8,205,6,16,214,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,212,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,203,169,137,100,69,115,157,64,26,20,8,205,6,16,216,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,95,199,43,199,134,192,132,64,26,20,8,205,6,16,217,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,215,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,206,88,180,82,67,148,133,64,26,20,8,205,6,16,220,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,112,133,167,65,86,62,157,64,26,20,8,205,6,16,219,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,218,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,249,78,19,132,76,64,134,64,26,20,8,205,6,16,223,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,228,64,75,93,184,55,157,64,26,20,8,205,6,16,222,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,221,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,18,83,188,238,47,82,157,64,26,20,8,205,6,16,225,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,82,87,227,70,205,6,135,64,26,20,8,205,6,16,226,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,224,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,147,214,250,64,18,192,135,64,26,20,8,205,6,16,229,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,39,206,107,135,52,168,157,64,26,20,8,205,6,16,228,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,227,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,80,182,193,136,6,157,158,64,26,20,8,205,6,16,231,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,3,104,131,204,206,147,136,64,26,20,8,205,6,16,232,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,230,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,238,89,187,165,58,139,159,64,26,20,8,205,6,16,234,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,141,158,214,128,53,227,136,64,26,20,8,205,6,16,235,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,233,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,97,7,86,145,101,205,159,64,26,20,8,205,6,16,237,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,164,39,143,73,113,240,136,64,26,20,8,205,6,16,238,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,236,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,245,158,212,34,102,14,160,64,26,20,8,205,6,16,240,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,141,158,214,128,53,227,136,64,26,20,8,205,6,16,241,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,239,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,222,142,23,194,142,37,160,64,26,20,8,205,6,16,243,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,167,67,161,169,223,94,136,64,26,20,8,205,6,16,244,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,242,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,197,247,85,201,27,97,160,64,26,20,8,205,6,16,246,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,42,125,150,117,50,201,133,64,26,20,8,205,6,16,247,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,245,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,197,247,85,201,27,97,160,64,26,20,8,205,6,16,249,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,121,18,36,26,34,8,4,18,8,49,181,186,53,15,166,132,64,26,20,8,205,6,16,250,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,248,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,121,108,246,239,48,60,132,64,26,20,8,205,6,16,253,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,57,179,249,228,125,90,160,64,26,20,8,205,6,16,252,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,251,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,55,237,222,245,235,130,131,64,26,20,8,205,6,16,128,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,41,10,1,120,18,36,26,34,8,4,18,8,198,126,90,97,183,60,160,64,26,20,8,205,6,16,255,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,20,8,205,6,16,254,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,5,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,205,6,16,2,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,53,98,98,101,50,26,19,8,205,6,16,3,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,205,6,16,4,26,12,98,255,30,50,217,176,234,142,137,49,37,123,18,19,8,205,6,16,1,26,12,98,255,30,50,217,176,234,142,137,49,37,123,10,158,111,18,155,111,10,152,111,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,206,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,206,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,206,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,225,109,10,6,112,111,105,110,116,115,18,214,109,18,211,109,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,143,64,26,19,8,206,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,232,86,192,26,19,8,206,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,154,143,64,26,19,8,206,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,216,82,192,26,19,8,206,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,48,78,192,26,19,8,206,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,143,64,26,19,8,206,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,246,141,64,26,19,8,206,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,80,71,192,26,19,8,206,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,38,139,64,26,19,8,206,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,96,57,192,26,19,8,206,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,50,137,64,26,19,8,206,6,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,252,31,59,64,26,19,8,206,6,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,137,64,26,19,8,206,6,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,79,65,64,26,19,8,206,6,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,126,136,64,26,19,8,206,6,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,239,70,64,26,19,8,206,6,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,146,136,64,26,19,8,206,6,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,47,72,64,26,19,8,206,6,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,138,64,26,19,8,206,6,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,143,66,64,26,19,8,206,6,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,248,191,32,64,26,19,8,206,6,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,140,64,26,19,8,206,6,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,16,128,21,192,26,19,8,206,6,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,141,64,26,19,8,206,6,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,14,143,64,26,19,8,206,6,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,96,62,192,26,19,8,206,6,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,143,64,26,19,8,206,6,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,80,66,192,26,19,8,206,6,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,114,143,64,26,19,8,206,6,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,240,71,192,26,19,8,206,6,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,214,143,64,26,19,8,206,6,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,104,84,192,26,19,8,206,6,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,14,144,64,26,19,8,206,6,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,24,84,192,26,19,8,206,6,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,74,144,64,26,19,8,206,6,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,136,82,192,26,19,8,206,6,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,149,144,64,26,19,8,206,6,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,240,71,192,26,19,8,206,6,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,214,144,64,26,19,8,206,6,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,144,67,192,26,19,8,206,6,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,234,144,64,26,19,8,206,6,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,144,67,192,26,19,8,206,6,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,145,64,26,19,8,206,6,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,80,71,192,26,19,8,206,6,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,145,64,26,19,8,206,6,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,80,76,192,26,19,8,206,6,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,145,64,26,19,8,206,6,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,216,87,192,26,19,8,206,6,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,229,144,64,26,19,8,206,6,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,200,88,192,26,19,8,206,6,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,39,144,64,26,19,8,206,6,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,8,90,192,26,19,8,206,6,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,150,142,64,26,19,8,206,6,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,168,90,192,26,19,8,206,6,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,139,64,26,19,8,206,6,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,168,90,192,26,19,8,206,6,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,137,64,26,19,8,206,6,16,91,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,200,88,192,26,19,8,206,6,16,92,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,90,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,138,64,26,19,8,206,6,16,94,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,136,87,192,26,19,8,206,6,16,95,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,93,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,226,136,64,26,19,8,206,6,16,97,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,24,89,192,26,19,8,206,6,16,98,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,96,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,146,136,64,26,19,8,206,6,16,100,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,232,86,192,26,19,8,206,6,16,101,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,99,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,8,85,192,26,19,8,206,6,16,104,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,242,135,64,26,19,8,206,6,16,103,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,102,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,134,64,26,19,8,206,6,16,106,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,184,84,192,26,19,8,206,6,16,107,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,105,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,14,133,64,26,19,8,206,6,16,109,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,40,83,192,26,19,8,206,6,16,110,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,108,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,230,132,64,26,19,8,206,6,16,112,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,248,85,192,26,19,8,206,6,16,113,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,111,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,232,86,192,26,19,8,206,6,16,116,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,132,64,26,19,8,206,6,16,115,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,114,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,186,131,64,26,19,8,206,6,16,118,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,40,88,192,26,19,8,206,6,16,119,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,117,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,162,130,64,26,19,8,206,6,16,121,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,40,88,192,26,19,8,206,6,16,122,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,120,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,198,129,64,26,19,8,206,6,16,124,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,104,89,192,26,19,8,206,6,16,125,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,123,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,127,64,26,19,8,206,6,16,127,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,184,94,192,26,20,8,206,6,16,128,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,126,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,100,126,64,26,20,8,206,6,16,130,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,184,94,192,26,20,8,206,6,16,131,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,129,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,252,124,64,26,20,8,206,6,16,133,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,56,92,192,26,20,8,206,6,16,134,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,132,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,119,64,26,20,8,206,6,16,136,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,8,85,192,26,20,8,206,6,16,137,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,135,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,117,64,26,20,8,206,6,16,139,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,200,83,192,26,20,8,206,6,16,140,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,138,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,20,116,64,26,20,8,206,6,16,142,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,80,76,192,26,20,8,206,6,16,143,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,141,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,114,64,26,20,8,206,6,16,145,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,4,96,57,192,26,20,8,206,6,16,146,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,144,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,112,64,26,20,8,206,6,16,148,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,16,128,16,192,26,20,8,206,6,16,149,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,147,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,16,128,21,192,26,20,8,206,6,16,152,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,112,64,26,20,8,206,6,16,151,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,150,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,111,64,26,20,8,206,6,16,154,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,248,191,42,64,26,20,8,206,6,16,155,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,153,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,109,64,26,20,8,206,6,16,157,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,31,59,64,26,20,8,206,6,16,158,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,156,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,104,64,26,20,8,206,6,16,160,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,175,74,64,26,20,8,206,6,16,161,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,159,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,87,82,64,26,20,8,206,6,16,164,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,101,64,26,20,8,206,6,16,163,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,162,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,97,64,26,20,8,206,6,16,166,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,167,92,64,26,20,8,206,6,16,167,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,165,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,83,64,26,20,8,206,6,16,169,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,99,98,64,26,20,8,206,6,16,170,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,168,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,84,64,26,20,8,206,6,16,172,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,195,97,64,26,20,8,206,6,16,173,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,171,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,155,97,64,26,20,8,206,6,16,176,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,83,64,26,20,8,206,6,16,175,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,174,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,235,97,64,26,20,8,206,6,16,179,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,82,64,26,20,8,206,6,16,178,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,177,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,219,103,64,26,20,8,206,6,16,182,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,64,64,26,20,8,206,6,16,181,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,180,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,4,64,26,20,8,206,6,16,184,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,11,111,64,26,20,8,206,6,16,185,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,183,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,20,192,26,20,8,206,6,16,187,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,217,112,64,26,20,8,206,6,16,188,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,186,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,244,63,26,20,8,206,6,16,190,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,21,113,64,26,20,8,206,6,16,191,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,189,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,1,113,64,26,20,8,206,6,16,194,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,79,64,26,20,8,206,6,16,193,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,192,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,89,64,26,20,8,206,6,16,196,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,137,112,64,26,20,8,206,6,16,197,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,195,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,91,64,26,20,8,206,6,16,199,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,57,112,64,26,20,8,206,6,16,200,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,198,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,99,64,26,20,8,206,6,16,202,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,197,112,64,26,20,8,206,6,16,203,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,201,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,99,64,26,20,8,206,6,16,205,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,201,113,64,26,20,8,206,6,16,206,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,204,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,49,115,64,26,20,8,206,6,16,209,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,97,64,26,20,8,206,6,16,208,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,207,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,93,64,26,20,8,206,6,16,211,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,73,116,64,26,20,8,206,6,16,212,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,210,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,153,116,64,26,20,8,206,6,16,215,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,87,64,26,20,8,206,6,16,214,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,213,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,80,64,26,20,8,206,6,16,217,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,153,116,64,26,20,8,206,6,16,218,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,216,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,33,64,26,20,8,206,6,16,220,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,253,116,64,26,20,8,206,6,16,221,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,219,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,30,64,26,20,8,206,6,16,223,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,97,117,64,26,20,8,206,6,16,224,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,222,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,30,192,26,20,8,206,6,16,226,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,121,118,64,26,20,8,206,6,16,227,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,225,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,48,192,26,20,8,206,6,16,229,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,201,118,64,26,20,8,206,6,16,230,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,228,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,66,192,26,20,8,206,6,16,232,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,181,118,64,26,20,8,206,6,16,233,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,231,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,84,192,26,20,8,206,6,16,235,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,209,125,64,26,20,8,206,6,16,236,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,234,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,84,192,26,20,8,206,6,16,238,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,177,127,64,26,20,8,206,6,16,239,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,237,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,84,192,26,20,8,206,6,16,241,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,180,128,64,26,20,8,206,6,16,242,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,240,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,82,192,26,20,8,206,6,16,244,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,124,129,64,26,20,8,206,6,16,245,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,243,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,80,192,26,20,8,206,6,16,247,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,254,129,64,26,20,8,206,6,16,248,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,246,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,28,130,64,26,20,8,206,6,16,251,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,78,192,26,20,8,206,6,16,250,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,249,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,244,63,26,20,8,206,6,16,253,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,146,132,64,26,20,8,206,6,16,254,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,252,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,246,132,64,26,20,8,206,6,16,129,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,52,64,26,20,8,206,6,16,128,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,255,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,66,64,26,20,8,206,6,16,131,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,10,133,64,26,20,8,206,6,16,132,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,130,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,90,64,26,20,8,206,6,16,134,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,0,133,64,26,20,8,206,6,16,135,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,133,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,176,132,64,26,20,8,206,6,16,138,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,96,64,26,20,8,206,6,16,137,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,136,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,48,130,64,26,20,8,206,6,16,141,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,103,64,26,20,8,206,6,16,140,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,139,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,8,130,64,26,20,8,206,6,16,144,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,104,64,26,20,8,206,6,16,143,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,142,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,108,64,26,20,8,206,6,16,146,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,22,131,64,26,20,8,206,6,16,147,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,145,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,114,64,26,20,8,206,6,16,149,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,246,132,64,26,20,8,206,6,16,150,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,148,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,60,116,64,26,20,8,206,6,16,152,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,210,133,64,26,20,8,206,6,16,153,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,151,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,117,64,26,20,8,206,6,16,155,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,44,134,64,26,20,8,206,6,16,156,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,154,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,252,119,64,26,20,8,206,6,16,158,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,44,134,64,26,20,8,206,6,16,159,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,157,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,121,64,26,20,8,206,6,16,161,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,250,133,64,26,20,8,206,6,16,162,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,160,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,122,64,26,20,8,206,6,16,164,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,210,133,64,26,20,8,206,6,16,165,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,163,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,123,64,26,20,8,206,6,16,167,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,60,133,64,26,20,8,206,6,16,168,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,166,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,127,64,26,20,8,206,6,16,170,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,104,129,64,26,20,8,206,6,16,171,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,169,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,126,64,26,20,8,206,6,16,173,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,209,125,64,26,20,8,206,6,16,174,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,172,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,126,64,26,20,8,206,6,16,176,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,137,122,64,26,20,8,206,6,16,177,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,175,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,125,64,26,20,8,206,6,16,179,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,241,118,64,26,20,8,206,6,16,180,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,178,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,125,64,26,20,8,206,6,16,182,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,17,117,64,26,20,8,206,6,16,183,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,181,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,169,115,64,26,20,8,206,6,16,186,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,124,64,26,20,8,206,6,16,185,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,184,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,123,64,26,20,8,206,6,16,188,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,251,111,64,26,20,8,206,6,16,189,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,187,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,121,64,26,20,8,206,6,16,191,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,91,101,64,26,20,8,206,6,16,192,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,190,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,100,121,64,26,20,8,206,6,16,194,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,167,92,64,26,20,8,206,6,16,195,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,193,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,120,64,26,20,8,206,6,16,197,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,215,84,64,26,20,8,206,6,16,198,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,196,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,252,119,64,26,20,8,206,6,16,200,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,7,82,64,26,20,8,206,6,16,201,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,199,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,119,64,26,20,8,206,6,16,203,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,39,80,64,26,20,8,206,6,16,204,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,202,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,118,64,26,20,8,206,6,16,206,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,143,76,64,26,20,8,206,6,16,207,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,205,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,4,112,64,26,20,8,206,6,16,209,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,111,68,64,26,20,8,206,6,16,210,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,208,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,104,64,26,20,8,206,6,16,212,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,39,85,64,26,20,8,206,6,16,213,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,211,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,102,64,26,20,8,206,6,16,215,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,248,191,37,64,26,20,8,206,6,16,216,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,214,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,128,255,235,63,26,20,8,206,6,16,219,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,102,64,26,20,8,206,6,16,218,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,217,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,4,96,52,192,26,20,8,206,6,16,222,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,103,64,26,20,8,206,6,16,221,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,220,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,103,64,26,20,8,206,6,16,224,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,48,78,192,26,20,8,206,6,16,225,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,223,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,104,64,26,20,8,206,6,16,227,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,120,83,192,26,20,8,206,6,16,228,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,226,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,106,64,26,20,8,206,6,16,230,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,152,86,192,26,20,8,206,6,16,231,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,229,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,106,64,26,20,8,206,6,16,233,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,208,78,192,26,20,8,206,6,16,234,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,232,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,88,80,192,26,20,8,206,6,16,237,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,107,64,26,20,8,206,6,16,236,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,235,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,108,64,26,20,8,206,6,16,239,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,248,80,192,26,20,8,206,6,16,240,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,238,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,108,64,26,20,8,206,6,16,242,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,104,84,192,26,20,8,206,6,16,243,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,241,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,109,64,26,20,8,206,6,16,245,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,40,83,192,26,20,8,206,6,16,246,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,244,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,110,64,26,20,8,206,6,16,248,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,120,83,192,26,20,8,206,6,16,249,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,206,6,16,247,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,206,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,254,6,16,3,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,207,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,111,64,26,19,8,207,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,44,108,192,26,19,8,207,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,112,64,26,19,8,207,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,124,108,192,26,19,8,207,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,207,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,207,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,207,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,208,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,208,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,208,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,208,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,124,108,192,26,19,8,208,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,114,64,26,19,8,208,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,108,192,26,19,8,208,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,209,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,209,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,209,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,116,64,26,19,8,209,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,148,109,192,26,19,8,209,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,117,64,26,19,8,209,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,228,109,192,26,19,8,209,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,210,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,210,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,210,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,118,64,26,19,8,210,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,52,110,192,26,19,8,210,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,120,64,26,19,8,210,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,132,110,192,26,19,8,210,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,211,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,121,64,26,19,8,211,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,92,110,192,26,19,8,211,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,52,110,192,26,19,8,211,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,122,64,26,19,8,211,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,211,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,211,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,212,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,212,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,212,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,124,64,26,19,8,212,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,228,109,192,26,19,8,212,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,124,64,26,19,8,212,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,188,109,192,26,19,8,212,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,213,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,213,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,213,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,44,108,192,26,19,8,213,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,125,64,26,19,8,213,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,125,64,26,19,8,213,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,252,105,192,26,19,8,213,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,214,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,125,64,26,19,8,214,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,132,105,192,26,19,8,214,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,204,103,192,26,19,8,214,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,125,64,26,19,8,214,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,214,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,214,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,215,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,215,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,215,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,84,103,192,26,19,8,215,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,125,64,26,19,8,215,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,126,64,26,19,8,215,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,60,102,192,26,19,8,215,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,196,101,192,26,19,8,215,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,126,64,26,19,8,215,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,216,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,216,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,216,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,218,129,64,26,19,8,216,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,132,100,192,26,19,8,216,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,130,64,26,19,8,216,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,124,98,192,26,19,8,216,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,216,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,217,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,217,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,217,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,30,132,64,26,19,8,217,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,98,192,26,19,8,217,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,110,132,64,26,19,8,217,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,98,192,26,19,8,217,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,218,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,218,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,218,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,134,64,26,19,8,218,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,124,98,192,26,19,8,218,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,218,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,218,134,64,26,19,8,218,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,84,98,192,26,19,8,218,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,218,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,218,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,218,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,219,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,219,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,219,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,135,64,26,19,8,219,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,84,98,192,26,19,8,219,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,102,135,64,26,19,8,219,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,44,98,192,26,19,8,219,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,219,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,220,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,136,64,26,19,8,220,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,84,98,192,26,19,8,220,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,186,136,64,26,19,8,220,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,84,98,192,26,19,8,220,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,220,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,220,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,221,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,221,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,221,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,90,137,64,26,19,8,221,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,124,98,192,26,19,8,221,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,221,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,137,64,26,19,8,221,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,84,98,192,26,19,8,221,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,221,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,221,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,221,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,222,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,222,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,222,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,194,138,64,26,19,8,222,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,4,98,192,26,19,8,222,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,139,64,26,19,8,222,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,180,97,192,26,19,8,222,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,222,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,223,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,223,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,223,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,139,64,26,19,8,223,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,220,97,192,26,19,8,223,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,223,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,2,140,64,26,19,8,223,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,220,97,192,26,19,8,223,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,223,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,223,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,223,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,224,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,224,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,224,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,66,141,64,26,19,8,224,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,4,98,192,26,19,8,224,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,224,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,226,141,64,26,19,8,224,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,180,97,192,26,19,8,224,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,224,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,224,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,224,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,225,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,225,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,225,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,250,142,64,26,19,8,225,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,180,97,192,26,19,8,225,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,143,64,26,19,8,225,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,140,97,192,26,19,8,225,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,225,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,226,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,226,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,226,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,143,64,26,19,8,226,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,100,97,192,26,19,8,226,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,226,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,39,144,64,26,19,8,226,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,20,97,192,26,19,8,226,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,226,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,226,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,226,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,168,94,18,165,94,10,162,94,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,227,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,227,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,227,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,235,92,10,6,112,111,105,110,116,115,18,224,92,18,221,92,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,244,108,192,26,19,8,227,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,190,153,64,26,19,8,227,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,225,153,64,26,19,8,227,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,108,109,192,26,19,8,227,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,109,154,64,26,19,8,227,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,228,109,192,26,19,8,227,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,12,110,192,26,19,8,227,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,13,155,64,26,19,8,227,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,154,154,64,26,19,8,227,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,124,108,192,26,19,8,227,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,159,154,64,26,19,8,227,6,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,76,106,192,26,19,8,227,6,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,114,154,64,26,19,8,227,6,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,252,105,192,26,19,8,227,6,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,155,64,26,19,8,227,6,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,132,105,192,26,19,8,227,6,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,149,154,64,26,19,8,227,6,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,12,105,192,26,19,8,227,6,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,153,64,26,19,8,227,6,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,12,105,192,26,19,8,227,6,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,28,104,192,26,19,8,227,6,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,3,155,64,26,19,8,227,6,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,195,153,64,26,19,8,227,6,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,116,101,192,26,19,8,227,6,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,65,153,64,26,19,8,227,6,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,76,101,192,26,19,8,227,6,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,155,64,26,19,8,227,6,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,124,98,192,26,19,8,227,6,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,90,153,64,26,19,8,227,6,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,220,97,192,26,19,8,227,6,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,151,64,26,19,8,227,6,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,44,98,192,26,19,8,227,6,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,246,152,64,26,19,8,227,6,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,4,98,192,26,19,8,227,6,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,8,95,192,26,19,8,227,6,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,45,158,64,26,19,8,227,6,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,245,158,64,26,19,8,227,6,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,44,98,192,26,19,8,227,6,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,132,105,192,26,19,8,227,6,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,128,226,160,64,26,19,8,227,6,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,134,159,64,26,19,8,227,6,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,140,107,192,26,19,8,227,6,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,99,159,64,26,19,8,227,6,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,156,106,192,26,19,8,227,6,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,106,157,64,26,19,8,227,6,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,180,102,192,26,19,8,227,6,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,151,152,64,26,19,8,227,6,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,244,98,192,26,19,8,227,6,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,243,145,64,26,19,8,227,6,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,32,61,192,26,19,8,227,6,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,240,66,192,26,19,8,227,6,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,154,154,64,26,19,8,227,6,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,2,80,76,192,26,19,8,227,6,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,178,150,64,26,19,8,227,6,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,146,64,26,19,8,227,6,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,248,90,192,26,19,8,227,6,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,127,146,64,26,19,8,227,6,16,91,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,152,91,192,26,19,8,227,6,16,92,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,90,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,211,147,64,26,19,8,227,6,16,94,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,248,95,192,26,19,8,227,6,16,95,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,93,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,35,153,64,26,19,8,227,6,16,97,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,196,96,192,26,19,8,227,6,16,98,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,96,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,18,155,64,26,19,8,227,6,16,100,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,76,96,192,26,19,8,227,6,16,101,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,99,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,66,152,64,26,19,8,227,6,16,103,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,76,96,192,26,19,8,227,6,16,104,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,102,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,132,64,26,19,8,227,6,16,106,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,199,95,64,26,19,8,227,6,16,107,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,105,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,128,64,26,19,8,227,6,16,109,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,251,96,64,26,19,8,227,6,16,110,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,108,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,235,97,64,26,19,8,227,6,16,113,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,126,64,26,19,8,227,6,16,112,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,111,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,50,137,64,26,19,8,227,6,16,115,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,211,96,64,26,19,8,227,6,16,116,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,114,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,144,64,26,19,8,227,6,16,118,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,211,96,64,26,19,8,227,6,16,119,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,117,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,211,101,64,26,19,8,227,6,16,122,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,62,130,64,26,19,8,227,6,16,121,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,120,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,251,101,64,26,19,8,227,6,16,125,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,122,64,26,19,8,227,6,16,124,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,123,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,113,64,26,19,8,227,6,16,127,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,131,101,64,26,20,8,227,6,16,128,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,126,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,121,64,26,20,8,227,6,16,130,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,3,99,64,26,20,8,227,6,16,131,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,129,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,75,97,64,26,20,8,227,6,16,134,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,158,129,64,26,20,8,227,6,16,133,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,132,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,113,145,64,26,20,8,227,6,16,136,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,135,89,64,26,20,8,227,6,16,137,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,135,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,38,145,64,26,20,8,227,6,16,139,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,111,68,64,26,20,8,227,6,16,140,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,138,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,254,128,64,26,20,8,227,6,16,142,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,239,65,64,26,20,8,227,6,16,143,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,141,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,117,64,26,20,8,227,6,16,145,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,159,61,64,26,20,8,227,6,16,146,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,144,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,106,64,26,20,8,227,6,16,148,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,159,61,64,26,20,8,227,6,16,149,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,147,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,114,64,26,20,8,227,6,16,151,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,223,52,64,26,20,8,227,6,16,152,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,150,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,198,139,64,26,20,8,227,6,16,154,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,4,96,57,192,26,20,8,227,6,16,155,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,153,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,34,143,64,26,20,8,227,6,16,157,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,4,32,51,192,26,20,8,227,6,16,158,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,156,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,98,139,64,26,20,8,227,6,16,160,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,8,192,36,192,26,20,8,227,6,16,161,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,159,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,115,64,26,20,8,227,6,16,163,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,16,128,21,192,26,20,8,227,6,16,164,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,162,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,112,64,26,20,8,227,6,16,166,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,224,255,0,64,26,20,8,227,6,16,167,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,165,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,113,64,26,20,8,227,6,16,169,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,240,127,18,64,26,20,8,227,6,16,170,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,168,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,122,64,26,20,8,227,6,16,172,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,240,127,28,64,26,20,8,227,6,16,173,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,171,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,122,64,26,20,8,227,6,16,175,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,47,72,64,26,20,8,227,6,16,176,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,174,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,198,145,64,26,20,8,227,6,16,178,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,23,86,64,26,20,8,227,6,16,179,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,177,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,223,145,64,26,20,8,227,6,16,181,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,167,87,64,26,20,8,227,6,16,182,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,180,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,7,92,64,26,20,8,227,6,16,185,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,129,144,64,26,20,8,227,6,16,184,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,183,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,74,133,64,26,20,8,227,6,16,187,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,87,92,64,26,20,8,227,6,16,188,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,186,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,100,126,64,26,20,8,227,6,16,190,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,23,91,64,26,20,8,227,6,16,191,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,189,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,113,64,26,20,8,227,6,16,193,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,247,87,64,26,20,8,227,6,16,194,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,192,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,95,64,26,20,8,227,6,16,196,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,247,82,64,26,20,8,227,6,16,197,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,195,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,93,64,26,20,8,227,6,16,199,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,199,80,64,26,20,8,227,6,16,200,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,198,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,15,74,64,26,20,8,227,6,16,203,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,100,64,26,20,8,227,6,16,202,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,201,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,74,128,64,26,20,8,227,6,16,205,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,95,60,64,26,20,8,227,6,16,206,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,204,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,223,62,64,26,20,8,227,6,16,209,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,18,134,64,26,20,8,227,6,16,208,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,207,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,140,64,26,20,8,227,6,16,211,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,143,71,64,26,20,8,227,6,16,212,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,210,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,144,64,26,20,8,227,6,16,214,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,23,86,64,26,20,8,227,6,16,215,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,213,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,30,137,64,26,20,8,227,6,16,217,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,8,192,36,192,26,20,8,227,6,16,218,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,216,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,106,136,64,26,20,8,227,6,16,220,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,16,128,31,192,26,20,8,227,6,16,221,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,219,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,125,64,26,20,8,227,6,16,223,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,4,32,51,192,26,20,8,227,6,16,224,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,222,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,240,71,192,26,20,8,227,6,16,227,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,99,64,26,20,8,227,6,16,226,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,225,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,85,64,26,20,8,227,6,16,229,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,208,78,192,26,20,8,227,6,16,230,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,228,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,87,64,26,20,8,227,6,16,232,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,168,80,192,26,20,8,227,6,16,233,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,231,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,24,84,192,26,20,8,227,6,16,236,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,96,64,26,20,8,227,6,16,235,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,234,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,24,94,192,26,20,8,227,6,16,239,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,121,64,26,20,8,227,6,16,238,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,237,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,124,98,192,26,20,8,227,6,16,242,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,131,64,26,20,8,227,6,16,241,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,240,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,38,134,64,26,20,8,227,6,16,244,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,244,98,192,26,20,8,227,6,16,245,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,243,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,130,64,26,20,8,227,6,16,247,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,36,96,192,26,20,8,227,6,16,248,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,246,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,118,64,26,20,8,227,6,16,250,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,216,92,192,26,20,8,227,6,16,251,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,249,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,117,64,26,20,8,227,6,16,253,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,88,85,192,26,20,8,227,6,16,254,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,252,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,69,64,26,20,8,227,6,16,128,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,36,96,192,26,20,8,227,6,16,129,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,255,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,62,192,26,20,8,227,6,16,131,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,204,98,192,26,20,8,227,6,16,132,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,130,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,78,192,26,20,8,227,6,16,134,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,212,100,192,26,20,8,227,6,16,135,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,133,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,204,103,192,26,20,8,227,6,16,138,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,76,64,26,20,8,227,6,16,137,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,136,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,101,64,26,20,8,227,6,16,140,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,180,102,192,26,20,8,227,6,16,141,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,139,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,116,64,26,20,8,227,6,16,143,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,244,98,192,26,20,8,227,6,16,144,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,142,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,124,64,26,20,8,227,6,16,146,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,8,90,192,26,20,8,227,6,16,147,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,145,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,134,128,64,26,20,8,227,6,16,149,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,144,72,192,26,20,8,227,6,16,150,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,148,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,134,128,64,26,20,8,227,6,16,152,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,4,32,61,192,26,20,8,227,6,16,153,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,151,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,118,64,26,20,8,227,6,16,155,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,95,55,64,26,20,8,227,6,16,156,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,154,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,109,64,26,20,8,227,6,16,158,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,31,59,64,26,20,8,227,6,16,159,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,157,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,248,63,40,64,26,20,8,227,6,16,162,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,85,64,26,20,8,227,6,16,161,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,160,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,89,192,26,20,8,227,6,16,164,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,112,74,192,26,20,8,227,6,16,165,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,163,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,89,192,26,20,8,227,6,16,167,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,112,79,192,26,20,8,227,6,16,168,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,166,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,53,64,26,20,8,227,6,16,170,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,104,94,192,26,20,8,227,6,16,171,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,169,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,101,64,26,20,8,227,6,16,173,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,8,85,192,26,20,8,227,6,16,174,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,172,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,122,64,26,20,8,227,6,16,176,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,31,49,64,26,20,8,227,6,16,177,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,175,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,124,64,26,20,8,227,6,16,179,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,23,86,64,26,20,8,227,6,16,180,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,178,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,123,64,26,20,8,227,6,16,182,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,171,96,64,26,20,8,227,6,16,183,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,181,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,105,64,26,20,8,227,6,16,185,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,77,112,64,26,20,8,227,6,16,186,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,184,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,80,64,26,20,8,227,6,16,188,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,125,114,64,26,20,8,227,6,16,189,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,187,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,84,192,26,20,8,227,6,16,191,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,29,115,64,26,20,8,227,6,16,192,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,227,6,16,190,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,128,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,132,26,18,129,26,10,254,25,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,228,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,199,24,10,6,112,111,105,110,116,115,18,188,24,18,185,24,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,22,130,64,26,19,8,228,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,107,100,64,26,19,8,228,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,242,135,64,26,19,8,228,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,221,118,64,26,19,8,228,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,133,64,26,19,8,228,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,245,119,64,26,19,8,228,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,122,64,26,19,8,228,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,105,119,64,26,19,8,228,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,110,137,64,26,19,8,228,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,67,100,64,26,19,8,228,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,139,64,26,19,8,228,6,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,235,102,64,26,19,8,228,6,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,182,140,64,26,19,8,228,6,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,175,69,64,26,19,8,228,6,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,137,64,26,19,8,228,6,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,29,120,64,26,19,8,228,6,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,174,133,64,26,19,8,228,6,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,145,119,64,26,19,8,228,6,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,98,129,64,26,19,8,228,6,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,77,117,64,26,19,8,228,6,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,126,64,26,19,8,228,6,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,185,114,64,26,19,8,228,6,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,27,146,64,26,19,8,228,6,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,163,109,64,26,19,8,228,6,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,173,145,64,26,19,8,228,6,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,87,92,64,26,19,8,228,6,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,247,146,64,26,19,8,228,6,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,99,98,64,26,19,8,228,6,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,134,138,64,26,19,8,228,6,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,153,116,64,26,19,8,228,6,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,66,136,64,26,19,8,228,6,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,53,116,64,26,19,8,228,6,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,49,115,64,26,19,8,228,6,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,138,134,64,26,19,8,228,6,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,230,148,64,26,19,8,228,6,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,67,110,64,26,19,8,228,6,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,59,149,64,26,19,8,228,6,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,201,113,64,26,19,8,228,6,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,7,151,64,26,19,8,228,6,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,237,112,64,26,19,8,228,6,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,193,145,64,26,19,8,228,6,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,3,109,64,26,19,8,228,6,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,49,149,64,26,19,8,228,6,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,195,102,64,26,19,8,228,6,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,57,151,64,26,19,8,228,6,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,115,102,64,26,19,8,228,6,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,50,153,64,26,19,8,228,6,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,43,104,64,26,19,8,228,6,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,150,153,64,26,19,8,228,6,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,41,118,64,26,19,8,228,6,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,31,152,64,26,19,8,228,6,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,209,120,64,26,19,8,228,6,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,223,155,64,26,19,8,228,6,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,224,255,60,133,64,26,19,8,228,6,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,229,154,64,26,19,8,228,6,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,224,255,124,134,64,26,19,8,228,6,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,228,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,228,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,236,6,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,173,4,18,170,4,10,167,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,229,6,16,2,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,99,98,54,56,48,26,19,8,229,6,16,3,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,229,6,16,4,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,139,64,26,19,8,229,6,16,7,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,106,64,26,19,8,229,6,16,8,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,229,6,16,6,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,137,64,26,19,8,229,6,16,10,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,112,64,26,19,8,229,6,16,11,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,229,6,16,9,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,136,64,26,19,8,229,6,16,13,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,115,64,26,19,8,229,6,16,14,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,229,6,16,12,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,229,6,16,5,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,229,6,16,1,26,12,98,255,26,214,217,176,234,142,137,48,119,164,34,19,8,130,7,16,1,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,249,156,2,18,245,156,2,10,241,156,2,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,230,6,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,55,52,101,50,26,19,8,230,6,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,230,6,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,185,155,2,10,6,112,111,105,110,116,115,18,173,155,2,18,169,155,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,59,158,64,26,19,8,230,6,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,29,39,112,192,26,19,8,230,6,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,29,119,112,192,26,19,8,230,6,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,106,158,64,26,19,8,230,6,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,159,158,64,26,19,8,230,6,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,200,145,112,192,26,19,8,230,6,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,103,159,64,26,19,8,230,6,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,115,172,112,192,26,19,8,230,6,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,200,65,112,192,26,19,8,230,6,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,43,159,64,26,19,8,230,6,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,119,158,64,26,19,8,230,6,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,227,111,192,26,19,8,230,6,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,86,158,64,26,19,8,230,6,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,230,120,111,192,26,19,8,230,6,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,59,158,64,26,19,8,230,6,16,28,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,230,120,111,192,26,19,8,230,6,16,29,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,27,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,59,158,64,26,19,8,230,6,16,31,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,67,111,192,26,19,8,230,6,16,32,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,30,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,26,158,64,26,19,8,230,6,16,34,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,230,216,110,192,26,19,8,230,6,16,35,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,33,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,57,159,64,26,19,8,230,6,16,37,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,67,111,192,26,19,8,230,6,16,38,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,36,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,37,159,64,26,19,8,230,6,16,40,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,230,216,110,192,26,19,8,230,6,16,41,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,39,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,239,158,64,26,19,8,230,6,16,43,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,110,110,192,26,19,8,230,6,16,44,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,42,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,230,152,109,192,26,19,8,230,6,16,47,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,19,158,64,26,19,8,230,6,16,46,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,45,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,19,158,64,26,19,8,230,6,16,49,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,99,109,192,26,19,8,230,6,16,50,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,48,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,30,159,64,26,19,8,230,6,16,52,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,46,109,192,26,19,8,230,6,16,53,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,51,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,23,159,64,26,19,8,230,6,16,55,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,195,108,192,26,19,8,230,6,16,56,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,54,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,66,158,64,26,19,8,230,6,16,58,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,195,108,192,26,19,8,230,6,16,59,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,57,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,230,88,108,192,26,19,8,230,6,16,62,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,6,158,64,26,19,8,230,6,16,61,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,60,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,35,108,192,26,19,8,230,6,16,65,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,146,158,64,26,19,8,230,6,16,64,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,63,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,57,159,64,26,19,8,230,6,16,67,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,230,88,108,192,26,19,8,230,6,16,68,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,66,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,23,159,64,26,19,8,230,6,16,70,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,184,107,192,26,19,8,230,6,16,71,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,69,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,153,158,64,26,19,8,230,6,16,73,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,24,107,192,26,19,8,230,6,16,74,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,72,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,26,158,64,26,19,8,230,6,16,76,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,216,105,192,26,19,8,230,6,16,77,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,75,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,66,158,64,26,19,8,230,6,16,79,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,14,106,192,26,19,8,230,6,16,80,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,78,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,159,64,26,19,8,230,6,16,82,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,14,106,192,26,19,8,230,6,16,83,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,81,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,77,159,64,26,19,8,230,6,16,85,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,67,106,192,26,19,8,230,6,16,86,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,84,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,57,159,64,26,19,8,230,6,16,88,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,216,105,192,26,19,8,230,6,16,89,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,87,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,33,158,64,26,19,8,230,6,16,91,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,14,106,192,26,19,8,230,6,16,92,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,90,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,26,158,64,26,19,8,230,6,16,94,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,67,106,192,26,19,8,230,6,16,95,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,93,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,253,158,64,26,19,8,230,6,16,97,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,67,106,192,26,19,8,230,6,16,98,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,96,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,37,159,64,26,19,8,230,6,16,100,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,14,106,192,26,19,8,230,6,16,101,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,99,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,239,158,64,26,19,8,230,6,16,103,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,110,105,192,26,19,8,230,6,16,104,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,102,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,186,158,64,26,19,8,230,6,16,106,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,56,105,192,26,19,8,230,6,16,107,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,105,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,33,158,64,26,19,8,230,6,16,109,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,110,105,192,26,19,8,230,6,16,110,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,108,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,43,159,64,26,19,8,230,6,16,112,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,110,105,192,26,19,8,230,6,16,113,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,111,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,50,159,64,26,19,8,230,6,16,115,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,163,105,192,26,19,8,230,6,16,116,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,114,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,43,159,64,26,19,8,230,6,16,118,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,56,105,192,26,19,8,230,6,16,119,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,117,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,99,104,192,26,19,8,230,6,16,122,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,158,64,26,19,8,230,6,16,121,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,120,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,79,158,64,26,19,8,230,6,16,124,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,99,104,192,26,19,8,230,6,16,125,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,123,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,110,18,108,10,106,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,104,192,26,20,8,230,6,16,128,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,77,159,64,26,19,8,230,6,16,127,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,126,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,23,159,64,26,20,8,230,6,16,130,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,46,104,192,26,20,8,230,6,16,131,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,129,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,73,158,64,26,20,8,230,6,16,133,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,248,103,192,26,20,8,230,6,16,134,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,132,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,66,158,64,26,20,8,230,6,16,136,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,195,103,192,26,20,8,230,6,16,137,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,135,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,195,103,192,26,20,8,230,6,16,140,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,77,159,64,26,20,8,230,6,16,139,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,138,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,57,159,64,26,20,8,230,6,16,142,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,88,103,192,26,20,8,230,6,16,143,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,141,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,17,159,64,26,20,8,230,6,16,145,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,35,103,192,26,20,8,230,6,16,146,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,144,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,79,158,64,26,20,8,230,6,16,148,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,184,102,192,26,20,8,230,6,16,149,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,147,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,146,158,64,26,20,8,230,6,16,151,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,35,103,192,26,20,8,230,6,16,152,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,150,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,35,103,192,26,20,8,230,6,16,155,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,63,159,64,26,20,8,230,6,16,154,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,153,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,57,159,64,26,20,8,230,6,16,157,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,238,102,192,26,20,8,230,6,16,158,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,156,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,179,158,64,26,20,8,230,6,16,160,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,24,102,192,26,20,8,230,6,16,161,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,159,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,99,158,64,26,20,8,230,6,16,163,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,24,102,192,26,20,8,230,6,16,164,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,162,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,59,158,64,26,20,8,230,6,16,166,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,101,192,26,20,8,230,6,16,167,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,165,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,101,192,26,20,8,230,6,16,170,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,59,158,64,26,20,8,230,6,16,169,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,168,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,59,158,64,26,20,8,230,6,16,172,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,101,192,26,20,8,230,6,16,173,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,171,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,119,158,64,26,20,8,230,6,16,175,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,78,102,192,26,20,8,230,6,16,176,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,174,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,83,159,64,26,20,8,230,6,16,178,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,78,102,192,26,20,8,230,6,16,179,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,177,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,117,159,64,26,20,8,230,6,16,181,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,131,102,192,26,20,8,230,6,16,182,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,180,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,90,159,64,26,20,8,230,6,16,184,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,24,102,192,26,20,8,230,6,16,185,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,183,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,226,158,64,26,20,8,230,6,16,187,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,101,192,26,20,8,230,6,16,188,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,186,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,159,158,64,26,20,8,230,6,16,190,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,101,192,26,20,8,230,6,16,191,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,189,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,193,158,64,26,20,8,230,6,16,193,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,101,192,26,20,8,230,6,16,194,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,192,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,103,159,64,26,20,8,230,6,16,196,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,101,192,26,20,8,230,6,16,197,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,195,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,110,159,64,26,20,8,230,6,16,199,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,120,101,192,26,20,8,230,6,16,200,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,198,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,143,159,64,26,20,8,230,6,16,202,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,120,101,192,26,20,8,230,6,16,203,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,201,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,143,159,64,26,20,8,230,6,16,205,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,101,192,26,20,8,230,6,16,206,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,204,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,101,192,26,20,8,230,6,16,209,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,130,159,64,26,20,8,230,6,16,208,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,207,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,83,159,64,26,20,8,230,6,16,211,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,216,100,192,26,20,8,230,6,16,212,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,210,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,3,159,64,26,20,8,230,6,16,214,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,110,100,192,26,20,8,230,6,16,215,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,213,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,179,158,64,26,20,8,230,6,16,217,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,110,100,192,26,20,8,230,6,16,218,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,216,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,239,158,64,26,20,8,230,6,16,220,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,163,100,192,26,20,8,230,6,16,221,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,219,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,117,159,64,26,20,8,230,6,16,223,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,110,100,192,26,20,8,230,6,16,224,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,222,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,100,192,26,20,8,230,6,16,227,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,17,159,64,26,20,8,230,6,16,226,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,225,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,66,158,64,26,20,8,230,6,16,229,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,100,192,26,20,8,230,6,16,230,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,228,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,113,158,64,26,20,8,230,6,16,232,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,110,100,192,26,20,8,230,6,16,233,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,231,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,63,159,64,26,20,8,230,6,16,235,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,110,100,192,26,20,8,230,6,16,236,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,234,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,70,159,64,26,20,8,230,6,16,238,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,163,100,192,26,20,8,230,6,16,239,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,237,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,226,158,64,26,20,8,230,6,16,241,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,100,192,26,20,8,230,6,16,242,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,240,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,86,158,64,26,20,8,230,6,16,244,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,100,192,26,20,8,230,6,16,245,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,243,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,56,100,192,26,20,8,230,6,16,248,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,106,158,64,26,20,8,230,6,16,247,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,246,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,100,192,26,20,8,230,6,16,251,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,103,159,64,26,20,8,230,6,16,250,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,249,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,63,159,64,26,20,8,230,6,16,253,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,152,99,192,26,20,8,230,6,16,254,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,252,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,146,158,64,26,20,8,230,6,16,128,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,145,99,99,192,26,20,8,230,6,16,129,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,255,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,219,158,64,26,20,8,230,6,16,131,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,99,192,26,20,8,230,6,16,132,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,130,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,23,159,64,26,20,8,230,6,16,134,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,99,192,26,20,8,230,6,16,135,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,133,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,50,159,64,26,20,8,230,6,16,137,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,100,192,26,20,8,230,6,16,138,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,136,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,50,159,64,26,20,8,230,6,16,140,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,56,100,192,26,20,8,230,6,16,141,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,139,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,99,192,26,20,8,230,6,16,144,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,30,159,64,26,20,8,230,6,16,143,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,142,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,133,158,64,26,20,8,230,6,16,146,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,152,99,192,26,20,8,230,6,16,147,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,145,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,159,158,64,26,20,8,230,6,16,149,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,56,100,192,26,20,8,230,6,16,150,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,148,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,30,159,64,26,20,8,230,6,16,152,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,101,192,26,20,8,230,6,16,153,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,151,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,253,158,64,26,20,8,230,6,16,155,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,216,100,192,26,20,8,230,6,16,156,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,154,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,73,158,64,26,20,8,230,6,16,158,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,216,100,192,26,20,8,230,6,16,159,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,157,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,59,158,64,26,20,8,230,6,16,161,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,101,192,26,20,8,230,6,16,162,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,160,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,159,158,64,26,20,8,230,6,16,164,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,101,192,26,20,8,230,6,16,165,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,163,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,193,158,64,26,20,8,230,6,16,167,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,101,192,26,20,8,230,6,16,168,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,166,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,53,158,64,26,20,8,230,6,16,170,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,101,192,26,20,8,230,6,16,171,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,169,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,199,158,64,26,20,8,230,6,16,173,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,78,102,192,26,20,8,230,6,16,174,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,172,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,239,158,64,26,20,8,230,6,16,176,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,78,102,192,26,20,8,230,6,16,177,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,175,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,239,158,64,26,20,8,230,6,16,179,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,24,102,192,26,20,8,230,6,16,180,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,178,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,79,158,64,26,20,8,230,6,16,182,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,101,192,26,20,8,230,6,16,183,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,181,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,30,159,64,26,20,8,230,6,16,185,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,101,192,26,20,8,230,6,16,186,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,184,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,23,159,64,26,20,8,230,6,16,188,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,101,192,26,20,8,230,6,16,189,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,187,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,23,159,64,26,20,8,230,6,16,191,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,120,101,192,26,20,8,230,6,16,192,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,190,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,17,159,64,26,20,8,230,6,16,194,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,101,192,26,20,8,230,6,16,195,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,193,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,153,158,64,26,20,8,230,6,16,197,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,101,192,26,20,8,230,6,16,198,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,196,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,139,158,64,26,20,8,230,6,16,200,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,101,192,26,20,8,230,6,16,201,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,199,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,246,158,64,26,20,8,230,6,16,203,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,142,103,192,26,20,8,230,6,16,204,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,202,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,199,158,64,26,20,8,230,6,16,206,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,35,103,192,26,20,8,230,6,16,207,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,205,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,239,158,64,26,20,8,230,6,16,209,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,46,104,192,26,20,8,230,6,16,210,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,208,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,17,159,64,26,20,8,230,6,16,212,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,99,104,192,26,20,8,230,6,16,213,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,211,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,46,104,192,26,20,8,230,6,16,216,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,133,158,64,26,20,8,230,6,16,215,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,214,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,46,158,64,26,20,8,230,6,16,218,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,104,192,26,20,8,230,6,16,219,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,217,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,53,158,64,26,20,8,230,6,16,221,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,56,105,192,26,20,8,230,6,16,222,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,220,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,163,105,192,26,20,8,230,6,16,225,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,93,158,64,26,20,8,230,6,16,224,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,223,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,166,158,64,26,20,8,230,6,16,227,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,163,105,192,26,20,8,230,6,16,228,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,226,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,166,158,64,26,20,8,230,6,16,230,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,110,105,192,26,20,8,230,6,16,231,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,229,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,119,158,64,26,20,8,230,6,16,233,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,104,192,26,20,8,230,6,16,234,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,232,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,86,158,64,26,20,8,230,6,16,236,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,104,192,26,20,8,230,6,16,237,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,235,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,105,192,26,20,8,230,6,16,240,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,86,158,64,26,20,8,230,6,16,239,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,238,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,119,158,64,26,20,8,230,6,16,242,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,110,105,192,26,20,8,230,6,16,243,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,241,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,193,158,64,26,20,8,230,6,16,245,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,163,105,192,26,20,8,230,6,16,246,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,244,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,173,158,64,26,20,8,230,6,16,248,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,105,192,26,20,8,230,6,16,249,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,247,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,79,158,64,26,20,8,230,6,16,251,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,152,104,192,26,20,8,230,6,16,252,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,250,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,93,158,64,26,20,8,230,6,16,254,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,104,192,26,20,8,230,6,16,255,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,253,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,206,158,64,26,20,8,230,6,16,129,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,104,192,26,20,8,230,6,16,130,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,128,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,199,158,64,26,20,8,230,6,16,132,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,152,104,192,26,20,8,230,6,16,133,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,131,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,113,158,64,26,20,8,230,6,16,135,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,104,192,26,20,8,230,6,16,136,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,134,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,153,158,64,26,20,8,230,6,16,138,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,110,105,192,26,20,8,230,6,16,139,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,137,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,163,105,192,26,20,8,230,6,16,142,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,226,158,64,26,20,8,230,6,16,141,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,140,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,213,158,64,26,20,8,230,6,16,144,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,110,105,192,26,20,8,230,6,16,145,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,143,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,133,158,64,26,20,8,230,6,16,147,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,110,105,192,26,20,8,230,6,16,148,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,146,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,86,158,64,26,20,8,230,6,16,150,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,216,105,192,26,20,8,230,6,16,151,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,149,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,139,158,64,26,20,8,230,6,16,153,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,120,106,192,26,20,8,230,6,16,154,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,152,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,10,159,64,26,20,8,230,6,16,156,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,24,107,192,26,20,8,230,6,16,157,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,155,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,186,158,64,26,20,8,230,6,16,159,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,120,106,192,26,20,8,230,6,16,160,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,158,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,106,158,64,26,20,8,230,6,16,162,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,120,106,192,26,20,8,230,6,16,163,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,161,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,78,107,192,26,20,8,230,6,16,166,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,139,158,64,26,20,8,230,6,16,165,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,164,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,239,158,64,26,20,8,230,6,16,168,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,35,108,192,26,20,8,230,6,16,169,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,167,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,184,107,192,26,20,8,230,6,16,172,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,206,158,64,26,20,8,230,6,16,171,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,170,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,78,107,192,26,20,8,230,6,16,175,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,99,158,64,26,20,8,230,6,16,174,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,173,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,193,158,64,26,20,8,230,6,16,177,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,131,107,192,26,20,8,230,6,16,178,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,176,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,233,158,64,26,20,8,230,6,16,180,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,78,107,192,26,20,8,230,6,16,181,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,179,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,253,158,64,26,20,8,230,6,16,183,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,106,192,26,20,8,230,6,16,184,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,182,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,253,158,64,26,20,8,230,6,16,186,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,106,192,26,20,8,230,6,16,187,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,185,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,106,192,26,20,8,230,6,16,190,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,206,158,64,26,20,8,230,6,16,189,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,188,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,153,158,64,26,20,8,230,6,16,192,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,106,192,26,20,8,230,6,16,193,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,191,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,99,158,64,26,20,8,230,6,16,195,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,106,192,26,20,8,230,6,16,196,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,194,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,119,158,64,26,20,8,230,6,16,198,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,131,107,192,26,20,8,230,6,16,199,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,197,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,199,158,64,26,20,8,230,6,16,201,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,238,107,192,26,20,8,230,6,16,202,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,200,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,186,158,64,26,20,8,230,6,16,204,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,184,107,192,26,20,8,230,6,16,205,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,203,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,79,158,64,26,20,8,230,6,16,207,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,184,107,192,26,20,8,230,6,16,208,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,206,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,35,108,192,26,20,8,230,6,16,211,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,26,158,64,26,20,8,230,6,16,210,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,209,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,88,108,192,26,20,8,230,6,16,214,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,113,158,64,26,20,8,230,6,16,213,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,212,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,86,158,64,26,20,8,230,6,16,216,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,238,107,192,26,20,8,230,6,16,217,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,215,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,46,158,64,26,20,8,230,6,16,219,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,238,107,192,26,20,8,230,6,16,220,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,218,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,99,158,64,26,20,8,230,6,16,222,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,248,108,192,26,20,8,230,6,16,223,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,221,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,153,158,64,26,20,8,230,6,16,225,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,99,109,192,26,20,8,230,6,16,226,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,224,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,193,158,64,26,20,8,230,6,16,228,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,99,109,192,26,20,8,230,6,16,229,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,227,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,133,158,64,26,20,8,230,6,16,231,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,88,108,192,26,20,8,230,6,16,232,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,230,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,59,158,64,26,20,8,230,6,16,234,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,238,107,192,26,20,8,230,6,16,235,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,233,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,209,157,64,26,20,8,230,6,16,237,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,238,107,192,26,20,8,230,6,16,238,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,236,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,242,157,64,26,20,8,230,6,16,240,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,195,108,192,26,20,8,230,6,16,241,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,239,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,46,109,192,26,20,8,230,6,16,244,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,19,158,64,26,20,8,230,6,16,243,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,242,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,113,158,64,26,20,8,230,6,16,246,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,99,109,192,26,20,8,230,6,16,247,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,245,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,106,158,64,26,20,8,230,6,16,249,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,195,108,192,26,20,8,230,6,16,250,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,248,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,93,158,64,26,20,8,230,6,16,252,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,195,108,192,26,20,8,230,6,16,253,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,251,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,66,158,64,26,20,8,230,6,16,255,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,35,108,192,26,20,8,230,6,16,128,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,254,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,153,158,64,26,20,8,230,6,16,130,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,99,109,192,26,20,8,230,6,16,131,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,129,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,99,109,192,26,20,8,230,6,16,134,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,199,158,64,26,20,8,230,6,16,133,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,132,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,195,108,192,26,20,8,230,6,16,137,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,159,158,64,26,20,8,230,6,16,136,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,135,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,113,158,64,26,20,8,230,6,16,139,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,195,108,192,26,20,8,230,6,16,140,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,138,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,139,158,64,26,20,8,230,6,16,142,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,99,109,192,26,20,8,230,6,16,143,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,141,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,23,159,64,26,20,8,230,6,16,145,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,56,110,192,26,20,8,230,6,16,146,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,144,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,233,158,64,26,20,8,230,6,16,148,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,99,109,192,26,20,8,230,6,16,149,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,147,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,153,158,64,26,20,8,230,6,16,151,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,46,109,192,26,20,8,230,6,16,152,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,150,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,133,158,64,26,20,8,230,6,16,154,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,152,109,192,26,20,8,230,6,16,155,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,153,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,139,158,64,26,20,8,230,6,16,157,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,110,192,26,20,8,230,6,16,158,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,156,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,111,192,26,20,8,230,6,16,161,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,193,158,64,26,20,8,230,6,16,160,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,159,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,233,158,64,26,20,8,230,6,16,163,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,111,192,26,20,8,230,6,16,164,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,162,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,17,159,64,26,20,8,230,6,16,166,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,111,192,26,20,8,230,6,16,167,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,165,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,246,158,64,26,20,8,230,6,16,169,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,56,110,192,26,20,8,230,6,16,170,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,168,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,179,158,64,26,20,8,230,6,16,172,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,109,192,26,20,8,230,6,16,173,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,171,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,119,158,64,26,20,8,230,6,16,175,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,110,192,26,20,8,230,6,16,176,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,174,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,119,158,64,26,20,8,230,6,16,178,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,56,110,192,26,20,8,230,6,16,179,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,177,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,126,158,64,26,20,8,230,6,16,181,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,163,110,192,26,20,8,230,6,16,182,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,180,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,213,158,64,26,20,8,230,6,16,184,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,111,192,26,20,8,230,6,16,185,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,183,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,186,158,64,26,20,8,230,6,16,187,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,120,111,192,26,20,8,230,6,16,188,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,186,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,216,110,192,26,20,8,230,6,16,191,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,79,158,64,26,20,8,230,6,16,190,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,189,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,182,157,64,26,20,8,230,6,16,193,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,111,192,26,20,8,230,6,16,194,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,192,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,195,157,64,26,20,8,230,6,16,196,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,111,192,26,20,8,230,6,16,197,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,195,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,229,157,64,26,20,8,230,6,16,199,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,115,12,112,192,26,20,8,230,6,16,200,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,198,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,86,158,64,26,20,8,230,6,16,202,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,29,119,112,192,26,20,8,230,6,16,203,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,201,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,93,158,64,26,20,8,230,6,16,205,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,29,119,112,192,26,20,8,230,6,16,206,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,204,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,86,158,64,26,20,8,230,6,16,208,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,29,39,112,192,26,20,8,230,6,16,209,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,207,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,19,158,64,26,20,8,230,6,16,211,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,120,111,192,26,20,8,230,6,16,212,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,210,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,99,158,64,26,20,8,230,6,16,214,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,200,65,112,192,26,20,8,230,6,16,215,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,213,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,153,158,64,26,20,8,230,6,16,217,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,29,39,112,192,26,20,8,230,6,16,218,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,216,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,153,158,64,26,20,8,230,6,16,220,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,111,192,26,20,8,230,6,16,221,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,219,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,120,111,192,26,20,8,230,6,16,224,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,133,158,64,26,20,8,230,6,16,223,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,222,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,73,158,64,26,20,8,230,6,16,226,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,111,192,26,20,8,230,6,16,227,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,225,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,19,158,64,26,20,8,230,6,16,229,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,216,110,192,26,20,8,230,6,16,230,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,228,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,6,158,64,26,20,8,230,6,16,232,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,111,192,26,20,8,230,6,16,233,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,231,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,59,158,64,26,20,8,230,6,16,235,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,115,12,112,192,26,20,8,230,6,16,236,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,234,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,200,65,112,192,26,20,8,230,6,16,239,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,139,158,64,26,20,8,230,6,16,238,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,237,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,226,158,64,26,20,8,230,6,16,241,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,200,65,112,192,26,20,8,230,6,16,242,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,240,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,206,158,64,26,20,8,230,6,16,244,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,115,12,112,192,26,20,8,230,6,16,245,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,243,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,53,158,64,26,20,8,230,6,16,247,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,111,192,26,20,8,230,6,16,248,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,246,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,26,158,64,26,20,8,230,6,16,250,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,115,12,112,192,26,20,8,230,6,16,251,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,249,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,26,158,64,26,20,8,230,6,16,253,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,29,39,112,192,26,20,8,230,6,16,254,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,252,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,113,158,64,26,20,8,230,6,16,128,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,29,119,112,192,26,20,8,230,6,16,129,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,255,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,193,158,64,26,20,8,230,6,16,131,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,29,119,112,192,26,20,8,230,6,16,132,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,130,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,153,158,64,26,20,8,230,6,16,134,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,200,65,112,192,26,20,8,230,6,16,135,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,133,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,255,157,64,26,20,8,230,6,16,137,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,200,65,112,192,26,20,8,230,6,16,138,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,136,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,13,158,64,26,20,8,230,6,16,140,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,115,92,112,192,26,20,8,230,6,16,141,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,139,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,153,158,64,26,20,8,230,6,16,143,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,115,92,112,192,26,20,8,230,6,16,144,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,142,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,206,158,64,26,20,8,230,6,16,146,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,29,39,112,192,26,20,8,230,6,16,147,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,145,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,166,158,64,26,20,8,230,6,16,149,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,111,192,26,20,8,230,6,16,150,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,148,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,93,158,64,26,20,8,230,6,16,152,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,111,192,26,20,8,230,6,16,153,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,151,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,3,159,64,26,20,8,230,6,16,155,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,115,12,112,192,26,20,8,230,6,16,156,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,154,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,111,192,26,20,8,230,6,16,159,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,239,158,64,26,20,8,230,6,16,158,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,157,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,106,158,64,26,20,8,230,6,16,161,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,216,110,192,26,20,8,230,6,16,162,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,160,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,206,158,64,26,20,8,230,6,16,164,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,111,192,26,20,8,230,6,16,165,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,163,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,23,159,64,26,20,8,230,6,16,167,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,111,192,26,20,8,230,6,16,168,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,166,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,186,158,64,26,20,8,230,6,16,170,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,111,192,26,20,8,230,6,16,171,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,169,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,216,110,192,26,20,8,230,6,16,174,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,126,158,64,26,20,8,230,6,16,173,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,172,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,216,110,192,26,20,8,230,6,16,177,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,73,158,64,26,20,8,230,6,16,176,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,175,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,66,158,64,26,20,8,230,6,16,179,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,111,192,26,20,8,230,6,16,180,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,178,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,173,158,64,26,20,8,230,6,16,182,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,111,192,26,20,8,230,6,16,183,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,181,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,139,158,64,26,20,8,230,6,16,185,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,111,192,26,20,8,230,6,16,186,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,184,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,66,158,64,26,20,8,230,6,16,188,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,111,192,26,20,8,230,6,16,189,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,187,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,106,158,64,26,20,8,230,6,16,191,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,120,111,192,26,20,8,230,6,16,192,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,190,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,106,158,64,26,20,8,230,6,16,194,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,111,192,26,20,8,230,6,16,195,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,193,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,79,158,64,26,20,8,230,6,16,197,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,111,192,26,20,8,230,6,16,198,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,196,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,33,158,64,26,20,8,230,6,16,200,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,216,110,192,26,20,8,230,6,16,201,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,199,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,73,158,64,26,20,8,230,6,16,203,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,111,192,26,20,8,230,6,16,204,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,202,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,13,158,64,26,20,8,230,6,16,206,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,111,192,26,20,8,230,6,16,207,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,205,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,200,65,112,192,26,20,8,230,6,16,210,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,6,158,64,26,20,8,230,6,16,209,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,208,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,209,157,64,26,20,8,230,6,16,212,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,29,39,112,192,26,20,8,230,6,16,213,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,211,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,235,157,64,26,20,8,230,6,16,215,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,115,92,112,192,26,20,8,230,6,16,216,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,214,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,33,158,64,26,20,8,230,6,16,218,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,115,92,112,192,26,20,8,230,6,16,219,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,217,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,229,157,64,26,20,8,230,6,16,221,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,111,192,26,20,8,230,6,16,222,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,220,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,13,158,64,26,20,8,230,6,16,224,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,111,192,26,20,8,230,6,16,225,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,223,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,222,157,64,26,20,8,230,6,16,227,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,111,192,26,20,8,230,6,16,228,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,226,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,33,158,64,26,20,8,230,6,16,230,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,115,12,112,192,26,20,8,230,6,16,231,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,229,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,215,157,64,26,20,8,230,6,16,233,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,120,111,192,26,20,8,230,6,16,234,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,232,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,33,158,64,26,20,8,230,6,16,236,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,111,192,26,20,8,230,6,16,237,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,235,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,229,157,64,26,20,8,230,6,16,239,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,109,192,26,20,8,230,6,16,240,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,238,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,53,158,64,26,20,8,230,6,16,242,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,216,110,192,26,20,8,230,6,16,243,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,241,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,249,157,64,26,20,8,230,6,16,245,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,152,109,192,26,20,8,230,6,16,246,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,244,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,79,158,64,26,20,8,230,6,16,248,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,163,110,192,26,20,8,230,6,16,249,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,247,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,19,158,64,26,20,8,230,6,16,251,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,99,109,192,26,20,8,230,6,16,252,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,250,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,56,110,192,26,20,8,230,6,16,255,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,66,158,64,26,20,8,230,6,16,254,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,253,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,53,158,64,26,20,8,230,6,16,129,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,35,108,192,26,20,8,230,6,16,130,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,128,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,113,158,64,26,20,8,230,6,16,132,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,195,108,192,26,20,8,230,6,16,133,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,131,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,86,158,64,26,20,8,230,6,16,135,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,24,107,192,26,20,8,230,6,16,136,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,134,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,113,158,64,26,20,8,230,6,16,138,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,184,107,192,26,20,8,230,6,16,139,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,137,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,73,158,64,26,20,8,230,6,16,141,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,184,107,192,26,20,8,230,6,16,142,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,140,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,86,158,64,26,20,8,230,6,16,144,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,195,108,192,26,20,8,230,6,16,145,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,143,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,46,158,64,26,20,8,230,6,16,147,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,35,108,192,26,20,8,230,6,16,148,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,146,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,73,158,64,26,20,8,230,6,16,150,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,88,108,192,26,20,8,230,6,16,151,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,149,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,184,107,192,26,20,8,230,6,16,154,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,66,158,64,26,20,8,230,6,16,153,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,152,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,73,158,64,26,20,8,230,6,16,156,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,238,107,192,26,20,8,230,6,16,157,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,155,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,19,158,64,26,20,8,230,6,16,159,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,106,192,26,20,8,230,6,16,160,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,158,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,26,158,64,26,20,8,230,6,16,162,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,238,107,192,26,20,8,230,6,16,163,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,161,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,142,108,192,26,20,8,230,6,16,166,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,46,158,64,26,20,8,230,6,16,165,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,164,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,26,158,64,26,20,8,230,6,16,168,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,120,106,192,26,20,8,230,6,16,169,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,167,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,73,158,64,26,20,8,230,6,16,171,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,131,107,192,26,20,8,230,6,16,172,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,170,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,53,158,64,26,20,8,230,6,16,174,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,238,107,192,26,20,8,230,6,16,175,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,173,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,93,158,64,26,20,8,230,6,16,177,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,120,106,192,26,20,8,230,6,16,178,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,176,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,66,158,64,26,20,8,230,6,16,180,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,106,192,26,20,8,230,6,16,181,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,179,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,46,158,64,26,20,8,230,6,16,183,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,88,108,192,26,20,8,230,6,16,184,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,182,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,59,158,64,26,20,8,230,6,16,186,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,99,109,192,26,20,8,230,6,16,187,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,185,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,79,158,64,26,20,8,230,6,16,189,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,110,192,26,20,8,230,6,16,190,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,188,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,213,158,64,26,20,8,230,6,16,192,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,120,111,192,26,20,8,230,6,16,193,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,191,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,239,158,64,26,20,8,230,6,16,195,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,111,192,26,20,8,230,6,16,196,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,194,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,206,158,64,26,20,8,230,6,16,198,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,111,192,26,20,8,230,6,16,199,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,197,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,163,110,192,26,20,8,230,6,16,202,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,233,158,64,26,20,8,230,6,16,201,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,200,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,253,158,64,26,20,8,230,6,16,204,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,152,109,192,26,20,8,230,6,16,205,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,203,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,239,158,64,26,20,8,230,6,16,207,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,105,192,26,20,8,230,6,16,208,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,206,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,233,158,64,26,20,8,230,6,16,210,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,56,105,192,26,20,8,230,6,16,211,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,209,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,152,104,192,26,20,8,230,6,16,214,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,253,158,64,26,20,8,230,6,16,213,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,212,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,226,158,64,26,20,8,230,6,16,216,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,88,103,192,26,20,8,230,6,16,217,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,215,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,3,159,64,26,20,8,230,6,16,219,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,105,192,26,20,8,230,6,16,220,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,218,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,10,159,64,26,20,8,230,6,16,222,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,67,106,192,26,20,8,230,6,16,223,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,221,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,193,158,64,26,20,8,230,6,16,225,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,29,199,112,192,26,20,8,230,6,16,226,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,224,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,139,158,64,26,20,8,230,6,16,228,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,248,103,192,26,20,8,230,6,16,229,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,227,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,113,158,64,26,20,8,230,6,16,231,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,101,192,26,20,8,230,6,16,232,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,230,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,106,158,64,26,20,8,230,6,16,234,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,105,192,26,20,8,230,6,16,235,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,233,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,17,159,64,26,20,8,230,6,16,237,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,110,100,192,26,20,8,230,6,16,238,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,236,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,119,158,64,26,20,8,230,6,16,240,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,152,99,192,26,20,8,230,6,16,241,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,239,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,50,159,64,26,20,8,230,6,16,243,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,56,100,192,26,20,8,230,6,16,244,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,242,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,126,158,64,26,20,8,230,6,16,246,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,99,192,26,20,8,230,6,16,247,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,245,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,206,158,64,26,20,8,230,6,16,249,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,110,100,192,26,20,8,230,6,16,250,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,248,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,50,159,64,26,20,8,230,6,16,252,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,163,100,192,26,20,8,230,6,16,253,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,251,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,146,158,64,26,20,8,230,6,16,255,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,152,99,192,26,20,8,230,6,16,128,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,254,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,146,158,64,26,20,8,230,6,16,130,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,99,192,26,20,8,230,6,16,131,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,129,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,50,159,64,26,20,8,230,6,16,133,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,110,100,192,26,20,8,230,6,16,134,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,132,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,159,158,64,26,20,8,230,6,16,136,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,152,99,192,26,20,8,230,6,16,137,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,135,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,159,158,64,26,20,8,230,6,16,139,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,3,100,192,26,20,8,230,6,16,140,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,138,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,77,159,64,26,20,8,230,6,16,142,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,216,100,192,26,20,8,230,6,16,143,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,141,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,99,158,64,26,20,8,230,6,16,145,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,99,192,26,20,8,230,6,16,146,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,144,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,30,159,64,26,20,8,230,6,16,148,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,56,100,192,26,20,8,230,6,16,149,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,147,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,213,158,64,26,20,8,230,6,16,151,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,248,98,192,26,20,8,230,6,16,152,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,150,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,246,158,64,26,20,8,230,6,16,154,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,145,99,99,192,26,20,8,230,6,16,155,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,153,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,253,158,64,26,20,8,230,6,16,157,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,46,99,192,26,20,8,230,6,16,158,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,156,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,126,158,64,26,20,8,230,6,16,160,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,142,98,192,26,20,8,230,6,16,161,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,159,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,43,159,64,26,20,8,230,6,16,163,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,206,99,192,26,20,8,230,6,16,164,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,162,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,239,158,64,26,20,8,230,6,16,166,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,145,99,99,192,26,20,8,230,6,16,167,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,165,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,113,158,64,26,20,8,230,6,16,169,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,46,99,192,26,20,8,230,6,16,170,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,168,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,145,99,99,192,26,20,8,230,6,16,173,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,17,159,64,26,20,8,230,6,16,172,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,171,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,193,158,64,26,20,8,230,6,16,175,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,142,98,192,26,20,8,230,6,16,176,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,174,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,77,159,64,26,20,8,230,6,16,178,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,248,98,192,26,20,8,230,6,16,179,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,177,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,146,158,64,26,20,8,230,6,16,181,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,142,98,192,26,20,8,230,6,16,182,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,180,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,150,159,64,26,20,8,230,6,16,184,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,248,98,192,26,20,8,230,6,16,185,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,183,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,57,159,64,26,20,8,230,6,16,187,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,142,98,192,26,20,8,230,6,16,188,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,186,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,239,158,64,26,20,8,230,6,16,190,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,142,98,192,26,20,8,230,6,16,191,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,189,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,253,158,64,26,20,8,230,6,16,193,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,142,98,192,26,20,8,230,6,16,194,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,230,6,16,192,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,6,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,242,6,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,233,7,18,230,7,10,227,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,230,6,16,2,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,99,98,54,56,48,26,19,8,230,6,16,3,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,230,6,16,4,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,135,64,26,19,8,230,6,16,7,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,111,64,26,19,8,230,6,16,8,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,230,6,16,6,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,136,64,26,19,8,230,6,16,10,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,109,64,26,19,8,230,6,16,11,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,230,6,16,9,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,138,64,26,19,8,230,6,16,13,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,109,64,26,19,8,230,6,16,14,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,230,6,16,12,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,139,64,26,19,8,230,6,16,16,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,110,64,26,19,8,230,6,16,17,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,230,6,16,15,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,141,64,26,19,8,230,6,16,19,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,112,64,26,19,8,230,6,16,20,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,230,6,16,18,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,142,64,26,19,8,230,6,16,22,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,116,64,26,19,8,230,6,16,23,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,230,6,16,21,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,144,64,26,19,8,230,6,16,25,26,12,98,255,26,214,217,176,234,142,137,48,119,164,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,230,6,16,26,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,230,6,16,24,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,230,6,16,5,26,12,98,255,26,214,217,176,234,142,137,48,119,164,18,19,8,230,6,16,1,26,12,98,255,26,214,217,176,234,142,137,48,119,164,34,19,8,130,7,16,2,26,12,98,255,30,133,217,176,234,142,137,49,86,140,10,213,254,1,18,209,254,1,10,205,254,1,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,231,6,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,231,6,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,231,6,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,149,253,1,10,6,112,111,105,110,116,115,18,137,253,1,18,133,253,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,82,156,64,26,19,8,231,6,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,224,255,58,130,64,26,19,8,231,6,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,202,156,64,26,19,8,231,6,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,224,255,174,129,64,26,19,8,231,6,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,34,159,64,26,19,8,231,6,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,229,120,64,26,19,8,231,6,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,119,159,64,26,19,8,231,6,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,3,109,64,26,19,8,231,6,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,229,159,64,26,19,8,231,6,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,35,107,64,26,19,8,231,6,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,35,153,64,26,19,8,231,6,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,7,82,64,26,19,8,231,6,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,25,153,64,26,19,8,231,6,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,47,67,64,26,19,8,231,6,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,252,31,59,64,26,19,8,231,6,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,153,64,26,19,8,231,6,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,156,64,26,19,8,231,6,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,103,81,64,26,19,8,231,6,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,153,64,26,19,8,231,6,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,15,79,64,26,19,8,231,6,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,211,152,64,26,19,8,231,6,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,239,70,64,26,19,8,231,6,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,155,64,26,19,8,231,6,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,252,159,61,64,26,19,8,231,6,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,97,156,64,26,19,8,231,6,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,239,65,64,26,19,8,231,6,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,63,155,64,26,19,8,231,6,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,216,82,192,26,19,8,231,6,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,126,152,64,26,19,8,231,6,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,148,109,192,26,19,8,231,6,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,148,109,192,26,19,8,231,6,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,81,152,64,26,19,8,231,6,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,49,149,64,26,19,8,231,6,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,228,104,192,26,19,8,231,6,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,105,148,64,26,19,8,231,6,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,52,105,192,26,19,8,231,6,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,229,144,64,26,19,8,231,6,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,108,109,192,26,19,8,231,6,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,137,146,64,26,19,8,231,6,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,36,111,192,26,19,8,231,6,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,17,146,64,26,19,8,231,6,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,132,110,192,26,19,8,231,6,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,127,64,26,19,8,231,6,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,52,105,192,26,19,8,231,6,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,132,105,192,26,19,8,231,6,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,62,130,64,26,19,8,231,6,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,135,64,26,19,8,231,6,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,20,107,192,26,19,8,231,6,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,133,64,26,19,8,231,6,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,84,108,192,26,19,8,231,6,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,131,64,26,19,8,231,6,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,244,103,192,26,19,8,231,6,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,135,64,26,19,8,231,6,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,68,99,192,26,19,8,231,6,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,162,135,64,26,19,8,231,6,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,0,164,98,192,26,19,8,231,6,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,118,64,26,19,8,231,6,16,91,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,1,168,80,192,26,19,8,231,6,16,92,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,90,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,112,64,26,19,8,231,6,16,94,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,8,192,46,192,26,19,8,231,6,16,95,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,93,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,113,64,26,19,8,231,6,16,97,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,16,128,16,192,26,19,8,231,6,16,98,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,96,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,118,64,26,19,8,231,6,16,100,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,254,239,65,64,26,19,8,231,6,16,101,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,99,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,126,64,26,19,8,231,6,16,103,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,55,84,64,26,19,8,231,6,16,104,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,102,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,186,131,64,26,19,8,231,6,16,106,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,255,119,95,64,26,19,8,231,6,16,107,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,105,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,42,135,64,26,19,8,231,6,16,109,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,107,100,64,26,19,8,231,6,16,110,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,108,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,142,135,64,26,19,8,231,6,16,112,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,141,113,64,26,19,8,231,6,16,113,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,111,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,222,130,64,26,19,8,231,6,16,115,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,145,114,64,26,19,8,231,6,16,116,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,114,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,126,64,26,19,8,231,6,16,118,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,192,255,21,113,64,26,19,8,231,6,16,119,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,117,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,110,64,26,19,8,231,6,16,121,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,128,255,75,97,64,26,19,8,231,6,16,122,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,120,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,137,64,26,19,8,231,6,16,124,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,4,160,63,192,26,19,8,231,6,16,125,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,123,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,143,64,26,19,8,231,6,16,127,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,248,191,37,64,26,20,8,231,6,16,128,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,126,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,143,64,26,20,8,231,6,16,130,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,31,59,64,26,20,8,231,6,16,131,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,129,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,66,131,64,26,20,8,231,6,16,133,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,11,111,64,26,20,8,231,6,16,134,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,132,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,125,64,26,20,8,231,6,16,136,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,9,115,64,26,20,8,231,6,16,137,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,135,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,202,135,64,26,20,8,231,6,16,139,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,105,114,64,26,20,8,231,6,16,140,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,138,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,252,124,64,26,20,8,231,6,16,142,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,249,120,64,26,20,8,231,6,16,143,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,141,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,118,64,26,20,8,231,6,16,145,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,73,121,64,26,20,8,231,6,16,146,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,144,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,111,64,26,20,8,231,6,16,148,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,45,119,64,26,20,8,231,6,16,149,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,147,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,102,64,26,20,8,231,6,16,151,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,29,115,64,26,20,8,231,6,16,152,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,150,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,102,64,26,20,8,231,6,16,154,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,227,110,64,26,20,8,231,6,16,155,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,153,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,125,64,26,20,8,231,6,16,157,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,71,83,64,26,20,8,231,6,16,158,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,156,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,23,81,64,26,20,8,231,6,16,161,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,202,130,64,26,20,8,231,6,16,160,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,159,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,135,64,26,20,8,231,6,16,163,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,247,82,64,26,20,8,231,6,16,164,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,162,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,139,98,64,26,20,8,231,6,16,167,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,141,64,26,20,8,231,6,16,166,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,165,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,141,64,26,20,8,231,6,16,169,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,75,102,64,26,20,8,231,6,16,170,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,168,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,241,113,64,26,20,8,231,6,16,173,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,46,136,64,26,20,8,231,6,16,172,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,171,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,117,64,26,20,8,231,6,16,175,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,145,114,64,26,20,8,231,6,16,176,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,174,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,112,64,26,20,8,231,6,16,178,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,107,110,64,26,20,8,231,6,16,179,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,177,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,114,64,26,20,8,231,6,16,181,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,193,121,64,26,20,8,231,6,16,182,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,180,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,114,64,26,20,8,231,6,16,184,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,131,106,64,26,20,8,231,6,16,185,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,183,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,122,64,26,20,8,231,6,16,187,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,91,96,64,26,20,8,231,6,16,188,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,186,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,130,64,26,20,8,231,6,16,190,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,231,83,64,26,20,8,231,6,16,191,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,189,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,135,64,26,20,8,231,6,16,193,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,103,81,64,26,20,8,231,6,16,194,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,192,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,140,64,26,20,8,231,6,16,196,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,71,83,64,26,20,8,231,6,16,197,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,195,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,145,64,26,20,8,231,6,16,199,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,235,102,64,26,20,8,231,6,16,200,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,198,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,238,145,64,26,20,8,231,6,16,202,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,187,110,64,26,20,8,231,6,16,203,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,201,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,237,117,64,26,20,8,231,6,16,206,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,145,64,26,20,8,231,6,16,205,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,204,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,18,139,64,26,20,8,231,6,16,208,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,80,128,64,26,20,8,231,6,16,209,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,207,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,238,134,64,26,20,8,231,6,16,211,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,174,129,64,26,20,8,231,6,16,212,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,210,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,130,64,26,20,8,231,6,16,214,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,108,130,64,26,20,8,231,6,16,215,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,213,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,123,64,26,20,8,231,6,16,217,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,58,130,64,26,20,8,231,6,16,218,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,216,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,116,64,26,20,8,231,6,16,220,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,160,128,64,26,20,8,231,6,16,221,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,219,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,121,64,26,20,8,231,6,16,223,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,197,122,64,26,20,8,231,6,16,224,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,222,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,120,64,26,20,8,231,6,16,226,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,11,111,64,26,20,8,231,6,16,227,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,225,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,135,64,26,20,8,231,6,16,229,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,87,92,64,26,20,8,231,6,16,230,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,228,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,139,64,26,20,8,231,6,16,232,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,215,94,64,26,20,8,231,6,16,233,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,231,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,14,144,64,26,20,8,231,6,16,235,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,27,100,64,26,20,8,231,6,16,236,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,234,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,144,64,26,20,8,231,6,16,238,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,171,106,64,26,20,8,231,6,16,239,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,237,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,199,144,64,26,20,8,231,6,16,241,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,77,112,64,26,20,8,231,6,16,242,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,240,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,225,114,64,26,20,8,231,6,16,245,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,4,144,64,26,20,8,231,6,16,244,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,243,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,18,134,64,26,20,8,231,6,16,247,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,201,118,64,26,20,8,231,6,16,248,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,246,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,101,118,64,26,20,8,231,6,16,251,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,98,129,64,26,20,8,231,6,16,250,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,249,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,120,64,26,20,8,231,6,16,253,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,113,116,64,26,20,8,231,6,16,254,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,252,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,104,64,26,20,8,231,6,16,128,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,99,103,64,26,20,8,231,6,16,129,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,255,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,106,64,26,20,8,231,6,16,131,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,131,96,64,26,20,8,231,6,16,132,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,130,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,114,64,26,20,8,231,6,16,134,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,207,67,64,26,20,8,231,6,16,135,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,133,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,120,64,26,20,8,231,6,16,137,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,211,96,64,26,20,8,231,6,16,138,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,136,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,133,64,26,20,8,231,6,16,140,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,32,0,7,192,26,20,8,231,6,16,141,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,139,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,8,192,41,192,26,20,8,231,6,16,144,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,138,64,26,20,8,231,6,16,143,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,142,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,207,67,64,26,20,8,231,6,16,147,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,102,146,64,26,20,8,231,6,16,146,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,145,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,50,148,64,26,20,8,231,6,16,149,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,251,106,64,26,20,8,231,6,16,150,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,148,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,151,147,64,26,20,8,231,6,16,152,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,81,113,64,26,20,8,231,6,16,153,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,151,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,203,145,64,26,20,8,231,6,16,155,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,237,117,64,26,20,8,231,6,16,156,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,154,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,137,64,26,20,8,231,6,16,158,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,45,119,64,26,20,8,231,6,16,159,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,157,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,132,64,26,20,8,231,6,16,161,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,253,116,64,26,20,8,231,6,16,162,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,160,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,128,64,26,20,8,231,6,16,164,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,77,112,64,26,20,8,231,6,16,165,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,163,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,124,64,26,20,8,231,6,16,167,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,163,99,64,26,20,8,231,6,16,168,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,166,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,104,84,192,26,20,8,231,6,16,171,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,98,139,64,26,20,8,231,6,16,170,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,169,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,32,0,7,192,26,20,8,231,6,16,174,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,123,145,64,26,20,8,231,6,16,173,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,172,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,107,110,64,26,20,8,231,6,16,177,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,147,64,26,20,8,231,6,16,176,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,175,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,42,146,64,26,20,8,231,6,16,179,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,157,117,64,26,20,8,231,6,16,180,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,178,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,220,142,64,26,20,8,231,6,16,182,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,213,121,64,26,20,8,231,6,16,183,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,181,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,118,64,26,20,8,231,6,16,185,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,65,114,64,26,20,8,231,6,16,186,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,184,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,118,64,26,20,8,231,6,16,188,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,203,109,64,26,20,8,231,6,16,189,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,187,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,106,136,64,26,20,8,231,6,16,191,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,159,51,64,26,20,8,231,6,16,192,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,190,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,141,64,26,20,8,231,6,16,194,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,159,56,64,26,20,8,231,6,16,195,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,193,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,145,64,26,20,8,231,6,16,197,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,183,81,64,26,20,8,231,6,16,198,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,196,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,211,147,64,26,20,8,231,6,16,200,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,131,101,64,26,20,8,231,6,16,201,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,199,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,65,148,64,26,20,8,231,6,16,203,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,245,114,64,26,20,8,231,6,16,204,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,202,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,154,149,64,26,20,8,231,6,16,206,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,197,112,64,26,20,8,231,6,16,207,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,205,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,214,149,64,26,20,8,231,6,16,209,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,149,120,64,26,20,8,231,6,16,210,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,208,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,167,146,64,26,20,8,231,6,16,212,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,188,130,64,26,20,8,231,6,16,213,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,211,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,94,143,64,26,20,8,231,6,16,215,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,202,131,64,26,20,8,231,6,16,216,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,214,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,182,131,64,26,20,8,231,6,16,219,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,230,137,64,26,20,8,231,6,16,218,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,217,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,125,64,26,20,8,231,6,16,221,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,0,128,64,26,20,8,231,6,16,222,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,220,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,60,121,64,26,20,8,231,6,16,224,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,133,121,64,26,20,8,231,6,16,225,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,223,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,122,64,26,20,8,231,6,16,227,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,21,113,64,26,20,8,231,6,16,228,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,226,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,144,64,26,20,8,231,6,16,230,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,239,65,64,26,20,8,231,6,16,231,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,229,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,3,150,64,26,20,8,231,6,16,233,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,3,104,64,26,20,8,231,6,16,234,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,232,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,18,150,64,26,20,8,231,6,16,236,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,69,115,64,26,20,8,231,6,16,237,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,235,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,7,146,64,26,20,8,231,6,16,239,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,20,128,64,26,20,8,231,6,16,240,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,238,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,224,255,34,129,64,26,20,8,231,6,16,243,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,190,142,64,26,20,8,231,6,16,242,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,241,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,122,64,26,20,8,231,6,16,245,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,177,127,64,26,20,8,231,6,16,246,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,244,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,118,64,26,20,8,231,6,16,248,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,17,122,64,26,20,8,231,6,16,249,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,247,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,119,64,26,20,8,231,6,16,251,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,201,113,64,26,20,8,231,6,16,252,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,250,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,4,128,64,26,20,8,231,6,16,254,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,83,99,64,26,20,8,231,6,16,255,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,253,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,234,133,64,26,20,8,231,6,16,129,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,215,84,64,26,20,8,231,6,16,130,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,128,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,2,140,64,26,20,8,231,6,16,132,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,39,80,64,26,20,8,231,6,16,133,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,131,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,45,148,64,26,20,8,231,6,16,135,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,171,96,64,26,20,8,231,6,16,136,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,134,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,179,149,64,26,20,8,231,6,16,138,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,235,107,64,26,20,8,231,6,16,139,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,137,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,69,149,64,26,20,8,231,6,16,141,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,157,117,64,26,20,8,231,6,16,142,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,140,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,147,64,26,20,8,231,6,16,144,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,1,123,64,26,20,8,231,6,16,145,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,143,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,94,144,64,26,20,8,231,6,16,147,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,149,125,64,26,20,8,231,6,16,148,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,146,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,229,125,64,26,20,8,231,6,16,151,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,254,138,64,26,20,8,231,6,16,150,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,149,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,132,64,26,20,8,231,6,16,153,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,85,124,64,26,20,8,231,6,16,154,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,152,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,126,64,26,20,8,231,6,16,156,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,189,120,64,26,20,8,231,6,16,157,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,155,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,119,64,26,20,8,231,6,16,159,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,69,115,64,26,20,8,231,6,16,160,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,158,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,120,64,26,20,8,231,6,16,162,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,17,112,64,26,20,8,231,6,16,163,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,161,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,134,133,64,26,20,8,231,6,16,165,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,55,94,64,26,20,8,231,6,16,166,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,164,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,190,137,64,26,20,8,231,6,16,168,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,135,89,64,26,20,8,231,6,16,169,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,167,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,161,147,64,26,20,8,231,6,16,171,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,97,117,64,26,20,8,231,6,16,172,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,170,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,87,146,64,26,20,8,231,6,16,174,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,9,120,64,26,20,8,231,6,16,175,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,173,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,193,121,64,26,20,8,231,6,16,178,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,142,64,26,20,8,231,6,16,177,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,176,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,121,64,26,20,8,231,6,16,180,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,163,109,64,26,20,8,231,6,16,181,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,179,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,123,64,26,20,8,231,6,16,183,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,27,100,64,26,20,8,231,6,16,184,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,182,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,130,64,26,20,8,231,6,16,186,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,39,90,64,26,20,8,231,6,16,187,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,185,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,26,136,64,26,20,8,231,6,16,189,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,87,87,64,26,20,8,231,6,16,190,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,188,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,2,146,64,26,20,8,231,6,16,192,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,163,99,64,26,20,8,231,6,16,193,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,191,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,83,104,64,26,20,8,231,6,16,196,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,227,146,64,26,20,8,231,6,16,195,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,194,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,146,64,26,20,8,231,6,16,198,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,99,108,64,26,20,8,231,6,16,199,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,197,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,18,139,64,26,20,8,231,6,16,201,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,141,113,64,26,20,8,231,6,16,202,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,200,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,81,113,64,26,20,8,231,6,16,205,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,46,136,64,26,20,8,231,6,16,204,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,203,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,2,130,64,26,20,8,231,6,16,207,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,243,109,64,26,20,8,231,6,16,208,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,206,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,114,64,26,20,8,231,6,16,210,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,39,90,64,26,20,8,231,6,16,211,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,209,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,87,82,64,26,20,8,231,6,16,214,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,114,64,26,20,8,231,6,16,213,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,212,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,121,64,26,20,8,231,6,16,216,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,1,216,191,26,20,8,231,6,16,217,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,215,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,82,130,64,26,20,8,231,6,16,219,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,176,65,192,26,20,8,231,6,16,220,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,218,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,240,66,192,26,20,8,231,6,16,223,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,146,136,64,26,20,8,231,6,16,222,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,221,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,110,142,64,26,20,8,231,6,16,225,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,4,224,49,192,26,20,8,231,6,16,226,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,224,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,251,147,64,26,20,8,231,6,16,228,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,7,92,64,26,20,8,231,6,16,229,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,227,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,219,98,64,26,20,8,231,6,16,232,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,251,147,64,26,20,8,231,6,16,231,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,230,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,117,146,64,26,20,8,231,6,16,234,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,115,107,64,26,20,8,231,6,16,235,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,233,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,194,143,64,26,20,8,231,6,16,237,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,17,112,64,26,20,8,231,6,16,238,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,236,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,130,137,64,26,20,8,231,6,16,240,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,177,112,64,26,20,8,231,6,16,241,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,239,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,251,111,64,26,20,8,231,6,16,244,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,132,64,26,20,8,231,6,16,243,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,242,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,251,106,64,26,20,8,231,6,16,247,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,125,64,26,20,8,231,6,16,246,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,245,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,116,64,26,20,8,231,6,16,249,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,203,99,64,26,20,8,231,6,16,250,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,248,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,11,96,64,26,20,8,231,6,16,253,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,115,64,26,20,8,231,6,16,252,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,251,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,112,64,26,20,8,231,6,16,255,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,87,92,64,26,20,8,231,6,16,128,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,254,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,252,130,64,26,20,8,231,6,16,130,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,248,63,45,64,26,20,8,231,6,16,131,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,129,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,106,136,64,26,20,8,231,6,16,133,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,16,128,16,192,26,20,8,231,6,16,134,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,132,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,16,128,16,192,26,20,8,231,6,16,137,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,50,142,64,26,20,8,231,6,16,136,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,135,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,254,143,64,26,20,8,231,6,16,139,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,79,70,64,26,20,8,231,6,16,140,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,138,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,141,64,26,20,8,231,6,16,142,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,215,84,64,26,20,8,231,6,16,143,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,141,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,135,64,26,20,8,231,6,16,145,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,55,94,64,26,20,8,231,6,16,146,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,144,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,75,97,64,26,20,8,231,6,16,149,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,129,64,26,20,8,231,6,16,148,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,147,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,120,64,26,20,8,231,6,16,151,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,155,97,64,26,20,8,231,6,16,152,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,150,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,111,64,26,20,8,231,6,16,154,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,91,96,64,26,20,8,231,6,16,155,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,153,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,84,64,26,20,8,231,6,16,157,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,55,84,64,26,20,8,231,6,16,158,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,156,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,88,64,26,20,8,231,6,16,160,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,47,77,64,26,20,8,231,6,16,161,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,159,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,106,64,26,20,8,231,6,16,163,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,8,64,44,192,26,20,8,231,6,16,164,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,162,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,129,64,26,20,8,231,6,16,166,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,24,89,192,26,20,8,231,6,16,167,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,165,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,238,134,64,26,20,8,231,6,16,169,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,88,90,192,26,20,8,231,6,16,170,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,168,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,0,172,100,192,26,20,8,231,6,16,173,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,139,64,26,20,8,231,6,16,172,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,171,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,198,145,64,26,20,8,231,6,16,175,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,32,0,7,192,26,20,8,231,6,16,176,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,174,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,145,64,26,20,8,231,6,16,178,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,39,80,64,26,20,8,231,6,16,179,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,177,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,14,144,64,26,20,8,231,6,16,181,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,203,99,64,26,20,8,231,6,16,182,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,180,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,139,64,26,20,8,231,6,16,184,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,171,106,64,26,20,8,231,6,16,185,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,183,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,74,133,64,26,20,8,231,6,16,187,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,219,108,64,26,20,8,231,6,16,188,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,186,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,128,64,26,20,8,231,6,16,190,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,155,107,64,26,20,8,231,6,16,191,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,189,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,105,64,26,20,8,231,6,16,193,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,71,93,64,26,20,8,231,6,16,194,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,192,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,101,64,26,20,8,231,6,16,196,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,183,81,64,26,20,8,231,6,16,197,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,195,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,107,64,26,20,8,231,6,16,199,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,8,192,41,192,26,20,8,231,6,16,200,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,198,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,138,129,64,26,20,8,231,6,16,202,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,120,93,192,26,20,8,231,6,16,203,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,201,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,135,64,26,20,8,231,6,16,205,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,1,184,94,192,26,20,8,231,6,16,206,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,204,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,238,145,64,26,20,8,231,6,16,208,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,16,70,192,26,20,8,231,6,16,209,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,207,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,147,64,26,20,8,231,6,16,211,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,223,62,64,26,20,8,231,6,16,212,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,210,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,185,148,64,26,20,8,231,6,16,214,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,139,98,64,26,20,8,231,6,16,215,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,213,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,195,148,64,26,20,8,231,6,16,217,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,227,110,64,26,20,8,231,6,16,218,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,216,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,25,119,64,26,20,8,231,6,16,221,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,145,64,26,20,8,231,6,16,220,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,219,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,135,64,26,20,8,231,6,16,223,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,249,120,64,26,20,8,231,6,16,224,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,222,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,130,64,26,20,8,231,6,16,226,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,205,119,64,26,20,8,231,6,16,227,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,225,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,120,64,26,20,8,231,6,16,229,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,37,117,64,26,20,8,231,6,16,230,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,228,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,113,64,26,20,8,231,6,16,232,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,1,113,64,26,20,8,231,6,16,233,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,231,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,113,64,26,20,8,231,6,16,235,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,155,107,64,26,20,8,231,6,16,236,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,234,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,117,64,26,20,8,231,6,16,238,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,51,101,64,26,20,8,231,6,16,239,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,237,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,133,64,26,20,8,231,6,16,241,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,55,84,64,26,20,8,231,6,16,242,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,240,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,138,139,64,26,20,8,231,6,16,244,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,23,81,64,26,20,8,231,6,16,245,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,243,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,144,64,26,20,8,231,6,16,247,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,87,82,64,26,20,8,231,6,16,248,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,246,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,210,148,64,26,20,8,231,6,16,250,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,19,98,64,26,20,8,231,6,16,251,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,249,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,123,99,64,26,20,8,231,6,16,254,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,195,148,64,26,20,8,231,6,16,253,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,252,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,58,145,64,26,20,8,231,6,16,128,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,235,107,64,26,20,8,231,6,16,129,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,255,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,98,129,64,26,20,8,231,6,16,131,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,171,96,64,26,20,8,231,6,16,132,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,130,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,190,132,64,26,20,8,231,6,16,134,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,167,92,64,26,20,8,231,6,16,135,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,133,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,62,135,64,26,20,8,231,6,16,137,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,215,89,64,26,20,8,231,6,16,138,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,136,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,23,91,64,26,20,8,231,6,16,141,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,58,139,64,26,20,8,231,6,16,140,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,139,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,87,92,64,26,20,8,231,6,16,144,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,138,64,26,20,8,231,6,16,143,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,142,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,26,136,64,26,20,8,231,6,16,146,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,87,92,64,26,20,8,231,6,16,147,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,145,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,119,64,26,20,8,231,6,16,149,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,223,57,64,26,20,8,231,6,16,150,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,148,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,97,64,26,20,8,231,6,16,152,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,35,102,64,26,20,8,231,6,16,153,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,151,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,95,64,26,20,8,231,6,16,155,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,99,98,64,26,20,8,231,6,16,156,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,154,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,127,64,26,20,8,231,6,16,158,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,8,64,39,192,26,20,8,231,6,16,159,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,157,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,133,64,26,20,8,231,6,16,161,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,4,224,49,192,26,20,8,231,6,16,162,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,160,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,209,144,64,26,20,8,231,6,16,164,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,239,75,64,26,20,8,231,6,16,165,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,163,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,146,64,26,20,8,231,6,16,167,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,199,95,64,26,20,8,231,6,16,168,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,166,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,144,64,26,20,8,231,6,16,170,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,145,114,64,26,20,8,231,6,16,171,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,169,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,140,64,26,20,8,231,6,16,173,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,97,117,64,26,20,8,231,6,16,174,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,172,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,38,134,64,26,20,8,231,6,16,176,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,241,118,64,26,20,8,231,6,16,177,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,175,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,105,64,26,20,8,231,6,16,179,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,25,114,64,26,20,8,231,6,16,180,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,178,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,101,64,26,20,8,231,6,16,182,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,179,108,64,26,20,8,231,6,16,183,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,181,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,113,64,26,20,8,231,6,16,185,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,179,98,64,26,20,8,231,6,16,186,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,184,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,87,146,64,26,20,8,231,6,16,188,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,211,111,64,26,20,8,231,6,16,189,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,187,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,177,122,64,26,20,8,231,6,16,192,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,70,142,64,26,20,8,231,6,16,191,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,190,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,246,136,64,26,20,8,231,6,16,194,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,205,124,64,26,20,8,231,6,16,195,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,193,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,113,64,26,20,8,231,6,16,197,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,161,118,64,26,20,8,231,6,16,198,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,196,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,110,64,26,20,8,231,6,16,200,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,89,115,64,26,20,8,231,6,16,201,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,199,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,124,64,26,20,8,231,6,16,203,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,211,96,64,26,20,8,231,6,16,204,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,202,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,119,80,64,26,20,8,231,6,16,207,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,138,64,26,20,8,231,6,16,206,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,205,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,74,144,64,26,20,8,231,6,16,209,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,167,82,64,26,20,8,231,6,16,210,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,208,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,41,147,64,26,20,8,231,6,16,212,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,55,94,64,26,20,8,231,6,16,213,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,211,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,221,147,64,26,20,8,231,6,16,215,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,11,101,64,26,20,8,231,6,16,216,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,214,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,137,64,26,20,8,231,6,16,218,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,169,115,64,26,20,8,231,6,16,219,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,217,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,109,115,64,26,20,8,231,6,16,222,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,86,131,64,26,20,8,231,6,16,221,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,220,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,122,64,26,20,8,231,6,16,224,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,161,113,64,26,20,8,231,6,16,225,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,223,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,55,84,64,26,20,8,231,6,16,228,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,100,132,64,26,20,8,231,6,16,227,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,226,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,134,138,64,26,20,8,231,6,16,230,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,119,85,64,26,20,8,231,6,16,231,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,229,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,69,144,64,26,20,8,231,6,16,233,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,247,92,64,26,20,8,231,6,16,234,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,232,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,138,145,64,26,20,8,231,6,16,236,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,187,105,64,26,20,8,231,6,16,237,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,235,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,9,144,64,26,20,8,231,6,16,239,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,83,109,64,26,20,8,231,6,16,240,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,238,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,51,111,64,26,20,8,231,6,16,243,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,138,64,26,20,8,231,6,16,242,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,241,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,195,107,64,26,20,8,231,6,16,246,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,123,64,26,20,8,231,6,16,245,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,244,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,203,104,64,26,20,8,231,6,16,249,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,115,64,26,20,8,231,6,16,248,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,247,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,39,90,64,26,20,8,231,6,16,252,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,120,64,26,20,8,231,6,16,251,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,250,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,131,64,26,20,8,231,6,16,254,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,240,127,18,64,26,20,8,231,6,16,255,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,253,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,50,137,64,26,20,8,231,6,16,129,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,95,55,64,26,20,8,231,6,16,130,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,128,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,171,101,64,26,20,8,231,6,16,133,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,219,144,64,26,20,8,231,6,16,132,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,131,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,166,141,64,26,20,8,231,6,16,135,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,139,108,64,26,20,8,231,6,16,136,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,134,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,129,64,26,20,8,231,6,16,138,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,179,108,64,26,20,8,231,6,16,139,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,137,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,119,64,26,20,8,231,6,16,141,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,163,104,64,26,20,8,231,6,16,142,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,140,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,105,64,26,20,8,231,6,16,144,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,155,97,64,26,20,8,231,6,16,145,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,143,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,103,81,64,26,20,8,231,6,16,148,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,96,64,26,20,8,231,6,16,147,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,146,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,108,64,26,20,8,231,6,16,150,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,32,0,7,192,26,20,8,231,6,16,151,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,149,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,120,64,26,20,8,231,6,16,153,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,2,112,69,192,26,20,8,231,6,16,154,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,152,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,186,136,64,26,20,8,231,6,16,156,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,4,32,51,192,26,20,8,231,6,16,157,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,155,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,142,64,26,20,8,231,6,16,159,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,239,65,64,26,20,8,231,6,16,160,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,158,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,199,95,64,26,20,8,231,6,16,163,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,144,64,26,20,8,231,6,16,162,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,161,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,43,104,64,26,20,8,231,6,16,166,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,29,144,64,26,20,8,231,6,16,165,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,164,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,139,64,26,20,8,231,6,16,168,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,123,109,64,26,20,8,231,6,16,169,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,167,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,38,134,64,26,20,8,231,6,16,171,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,11,111,64,26,20,8,231,6,16,172,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,170,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,120,64,26,20,8,231,6,16,174,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,125,114,64,26,20,8,231,6,16,175,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,173,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,107,64,26,20,8,231,6,16,177,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,11,96,64,26,20,8,231,6,16,178,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,176,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,7,82,64,26,20,8,231,6,16,181,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,112,64,26,20,8,231,6,16,180,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,179,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,131,64,26,20,8,231,6,16,183,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,252,223,57,64,26,20,8,231,6,16,184,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,182,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,175,79,64,26,20,8,231,6,16,187,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,206,136,64,26,20,8,231,6,16,186,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,185,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,53,116,64,26,20,8,231,6,16,190,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,142,64,26,20,8,231,6,16,189,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,188,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,38,139,64,26,20,8,231,6,16,192,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,5,119,64,26,20,8,231,6,16,193,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,191,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,133,64,26,20,8,231,6,16,195,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,225,119,64,26,20,8,231,6,16,196,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,194,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,101,118,64,26,20,8,231,6,16,199,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,126,64,26,20,8,231,6,16,198,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,197,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,114,64,26,20,8,231,6,16,201,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,192,255,125,114,64,26,20,8,231,6,16,202,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,200,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,103,64,26,20,8,231,6,16,204,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,128,255,235,107,64,26,20,8,231,6,16,205,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,203,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,151,83,64,26,20,8,231,6,16,208,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,114,64,26,20,8,231,6,16,207,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,206,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,123,64,26,20,8,231,6,16,210,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,254,143,76,64,26,20,8,231,6,16,211,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,209,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,132,64,26,20,8,231,6,16,213,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,39,80,64,26,20,8,231,6,16,214,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,212,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,74,128,64,26,20,8,231,6,16,216,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,167,87,64,26,20,8,231,6,16,217,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,215,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,128,64,26,20,8,231,6,16,219,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,255,55,89,64,26,20,8,231,6,16,220,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,20,8,231,6,16,218,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,231,6,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,239,6,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,160,62,18,157,62,10,154,62,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,55,52,101,50,26,19,8,234,6,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,234,6,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,227,60,10,6,112,111,105,110,116,115,18,216,60,18,213,60,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,113,158,64,26,19,8,234,6,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,163,110,192,26,19,8,234,6,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,113,158,64,26,19,8,234,6,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,174,106,192,26,19,8,234,6,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,159,158,64,26,19,8,234,6,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,163,100,192,26,19,8,234,6,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,159,158,64,26,19,8,234,6,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,24,102,192,26,19,8,234,6,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,113,158,64,26,19,8,234,6,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,3,105,192,26,19,8,234,6,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,99,158,64,26,19,8,234,6,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,24,107,192,26,19,8,234,6,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,99,158,64,26,19,8,234,6,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,88,103,192,26,19,8,234,6,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,24,102,192,26,19,8,234,6,16,29,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,113,158,64,26,19,8,234,6,16,28,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,27,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,113,158,64,26,19,8,234,6,16,31,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,14,101,192,26,19,8,234,6,16,32,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,30,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,206,104,192,26,19,8,234,6,16,35,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,79,158,64,26,19,8,234,6,16,34,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,33,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,73,158,64,26,19,8,234,6,16,37,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,206,104,192,26,19,8,234,6,16,38,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,36,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,73,158,64,26,19,8,234,6,16,40,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,3,105,192,26,19,8,234,6,16,41,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,39,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,93,158,64,26,19,8,234,6,16,43,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,131,102,192,26,19,8,234,6,16,44,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,42,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,113,158,64,26,19,8,234,6,16,46,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,67,101,192,26,19,8,234,6,16,47,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,45,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,133,158,64,26,19,8,234,6,16,49,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,216,100,192,26,19,8,234,6,16,50,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,48,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,139,158,64,26,19,8,234,6,16,52,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,174,101,192,26,19,8,234,6,16,53,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,51,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,99,104,192,26,19,8,234,6,16,56,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,133,158,64,26,19,8,234,6,16,55,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,54,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,133,158,64,26,19,8,234,6,16,58,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,142,103,192,26,19,8,234,6,16,59,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,57,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,146,158,64,26,19,8,234,6,16,61,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,24,102,192,26,19,8,234,6,16,62,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,60,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,153,158,64,26,19,8,234,6,16,64,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,24,102,192,26,19,8,234,6,16,65,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,63,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,153,158,64,26,19,8,234,6,16,67,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,227,101,192,26,19,8,234,6,16,68,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,66,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,113,158,64,26,19,8,234,6,16,70,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,110,105,192,26,19,8,234,6,16,71,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,69,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,113,158,64,26,19,8,234,6,16,73,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,78,102,192,26,19,8,234,6,16,74,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,72,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,119,158,64,26,19,8,234,6,16,76,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,35,103,192,26,19,8,234,6,16,77,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,75,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,106,158,64,26,19,8,234,6,16,79,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,56,105,192,26,19,8,234,6,16,80,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,78,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,113,158,64,26,19,8,234,6,16,82,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,195,103,192,26,19,8,234,6,16,83,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,81,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,159,158,64,26,19,8,234,6,16,85,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,78,102,192,26,19,8,234,6,16,86,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,84,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,158,64,26,19,8,234,6,16,88,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,174,101,192,26,19,8,234,6,16,89,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,87,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,23,159,64,26,19,8,234,6,16,91,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,174,101,192,26,19,8,234,6,16,92,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,90,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,57,159,64,26,19,8,234,6,16,94,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,78,102,192,26,19,8,234,6,16,95,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,93,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,57,159,64,26,19,8,234,6,16,97,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,184,102,192,26,19,8,234,6,16,98,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,96,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,159,64,26,19,8,234,6,16,100,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,78,102,192,26,19,8,234,6,16,101,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,99,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,103,159,64,26,19,8,234,6,16,103,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,120,101,192,26,19,8,234,6,16,104,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,102,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,83,159,64,26,19,8,234,6,16,106,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,120,101,192,26,19,8,234,6,16,107,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,105,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,70,159,64,26,19,8,234,6,16,109,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,145,131,102,192,26,19,8,234,6,16,110,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,108,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,70,159,64,26,19,8,234,6,16,112,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,216,100,192,26,19,8,234,6,16,113,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,111,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,57,159,64,26,19,8,234,6,16,115,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,230,184,102,192,26,19,8,234,6,16,116,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,114,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,37,159,64,26,19,8,234,6,16,118,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,14,101,192,26,19,8,234,6,16,119,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,117,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,30,159,64,26,19,8,234,6,16,121,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,14,101,192,26,19,8,234,6,16,122,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,120,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,37,159,64,26,19,8,234,6,16,124,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,59,14,101,192,26,19,8,234,6,16,125,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,123,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,50,159,64,26,19,8,234,6,16,127,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,24,102,192,26,20,8,234,6,16,128,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,126,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,50,159,64,26,20,8,234,6,16,130,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,101,192,26,20,8,234,6,16,131,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,129,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,57,159,64,26,20,8,234,6,16,133,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,101,192,26,20,8,234,6,16,134,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,132,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,57,159,64,26,20,8,234,6,16,136,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,101,192,26,20,8,234,6,16,137,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,135,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,50,159,64,26,20,8,234,6,16,139,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,101,192,26,20,8,234,6,16,140,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,138,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,43,159,64,26,20,8,234,6,16,142,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,101,192,26,20,8,234,6,16,143,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,141,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,43,159,64,26,20,8,234,6,16,145,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,88,103,192,26,20,8,234,6,16,146,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,144,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,10,159,64,26,20,8,234,6,16,148,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,238,107,192,26,20,8,234,6,16,149,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,147,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,253,158,64,26,20,8,234,6,16,151,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,248,108,192,26,20,8,234,6,16,152,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,150,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,233,158,64,26,20,8,234,6,16,154,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,152,109,192,26,20,8,234,6,16,155,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,153,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,213,158,64,26,20,8,234,6,16,157,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,29,119,112,192,26,20,8,234,6,16,158,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,156,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,163,110,192,26,20,8,234,6,16,161,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,193,158,64,26,20,8,234,6,16,160,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,159,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,166,158,64,26,20,8,234,6,16,163,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,111,192,26,20,8,234,6,16,164,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,162,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,166,158,64,26,20,8,234,6,16,166,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,111,192,26,20,8,234,6,16,167,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,165,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,186,158,64,26,20,8,234,6,16,169,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,111,192,26,20,8,234,6,16,170,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,168,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,179,158,64,26,20,8,234,6,16,172,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,230,216,110,192,26,20,8,234,6,16,173,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,171,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,193,158,64,26,20,8,234,6,16,175,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,14,111,192,26,20,8,234,6,16,176,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,174,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,199,158,64,26,20,8,234,6,16,178,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,110,110,192,26,20,8,234,6,16,179,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,177,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,186,158,64,26,20,8,234,6,16,181,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,35,108,192,26,20,8,234,6,16,182,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,180,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,159,158,64,26,20,8,234,6,16,184,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,24,107,192,26,20,8,234,6,16,185,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,183,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,174,106,192,26,20,8,234,6,16,188,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,133,158,64,26,20,8,234,6,16,187,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,186,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,126,158,64,26,20,8,234,6,16,190,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,227,106,192,26,20,8,234,6,16,191,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,189,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,139,158,64,26,20,8,234,6,16,193,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,78,107,192,26,20,8,234,6,16,194,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,192,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,159,158,64,26,20,8,234,6,16,196,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,59,78,107,192,26,20,8,234,6,16,197,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,195,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,193,158,64,26,20,8,234,6,16,199,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,56,105,192,26,20,8,234,6,16,200,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,198,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,193,158,64,26,20,8,234,6,16,202,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,195,103,192,26,20,8,234,6,16,203,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,201,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,253,158,64,26,20,8,234,6,16,205,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,120,106,192,26,20,8,234,6,16,206,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,204,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,17,159,64,26,20,8,234,6,16,208,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,145,195,103,192,26,20,8,234,6,16,209,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,207,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,50,159,64,26,20,8,234,6,16,211,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,230,24,102,192,26,20,8,234,6,16,212,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,20,8,234,6,16,210,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,234,6,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,234,6,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,34,19,8,242,6,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,243,6,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,53,102,99,49,49,26,19,8,243,6,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,243,6,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,131,66,65,58,97,188,109,64,26,19,8,243,6,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,231,62,103,112,151,133,129,64,26,19,8,243,6,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,243,6,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,107,40,253,129,231,116,64,26,19,8,243,6,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,231,62,103,112,151,133,129,64,26,19,8,243,6,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,243,6,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,179,191,104,76,215,117,64,26,19,8,243,6,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,243,186,23,21,69,120,129,64,26,19,8,243,6,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,243,6,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,243,6,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,243,6,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,53,102,99,49,49,26,19,8,244,6,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,244,6,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,197,28,2,255,183,114,64,26,19,8,244,6,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,34,84,4,207,231,29,128,64,26,19,8,244,6,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,244,6,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,197,28,2,255,183,114,64,26,19,8,244,6,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,114,107,2,140,10,122,133,64,26,19,8,244,6,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,244,6,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,244,6,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,244,6,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,244,6,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,238,12,18,235,12,10,232,12,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,245,6,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,53,102,99,49,49,26,19,8,245,6,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,245,6,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,208,157,219,255,79,197,130,64,26,19,8,245,6,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,18,100,137,70,221,204,116,64,26,19,8,245,6,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,92,234,143,56,178,116,64,26,19,8,245,6,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,208,157,219,255,79,197,130,64,26,19,8,245,6,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,92,234,143,56,178,116,64,26,19,8,245,6,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,196,120,0,52,182,247,131,64,26,19,8,245,6,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,227,115,199,179,38,2,117,64,26,19,8,245,6,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,114,20,45,179,246,84,132,64,26,19,8,245,6,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,56,168,186,123,146,151,132,64,26,19,8,245,6,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,41,179,191,104,76,215,117,64,26,19,8,245,6,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,250,86,212,22,199,118,64,26,19,8,245,6,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,68,36,107,32,64,138,132,64,26,19,8,245,6,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,41,17,28,243,102,119,64,26,19,8,245,6,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,138,12,142,252,81,58,132,64,26,19,8,245,6,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,180,49,176,210,151,129,119,64,26,19,8,245,6,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,184,252,79,143,8,5,132,64,26,19,8,245,6,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,180,49,176,210,151,129,119,64,26,19,8,245,6,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,80,73,70,236,217,87,131,64,26,19,8,245,6,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,41,17,28,243,102,119,64,26,19,8,245,6,16,34,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,103,65,167,53,53,61,131,64,26,19,8,245,6,16,35,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,33,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,194,253,213,149,12,118,64,26,19,8,245,6,16,37,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,231,149,60,73,171,170,130,64,26,19,8,245,6,16,38,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,36,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,231,149,60,73,171,170,130,64,26,19,8,245,6,16,41,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,251,107,40,253,129,231,116,64,26,19,8,245,6,16,40,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,39,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,92,234,143,56,178,116,64,26,19,8,245,6,16,43,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,208,157,219,255,79,197,130,64,26,19,8,245,6,16,44,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,42,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,245,6,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,204,14,18,201,14,10,198,14,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,53,102,99,49,49,26,19,8,246,6,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,246,6,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,64,176,160,60,227,43,121,64,26,19,8,246,6,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,243,17,237,237,88,157,130,64,26,19,8,246,6,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,168,1,134,62,17,121,64,26,19,8,246,6,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,243,17,237,237,88,157,130,64,26,19,8,246,6,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,168,1,134,62,17,121,64,26,19,8,246,6,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,196,120,0,52,182,247,131,64,26,19,8,246,6,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,103,152,124,14,73,98,132,64,26,19,8,246,6,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,40,184,63,243,135,70,121,64,26,19,8,246,6,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,180,223,90,132,191,203,121,64,26,19,8,246,6,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,44,44,10,215,228,164,132,64,26,19,8,246,6,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,86,172,55,102,91,123,64,26,19,8,246,6,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,33,176,89,50,55,178,132,64,26,19,8,246,6,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,117,40,18,249,197,123,64,26,19,8,246,6,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,68,36,107,32,64,138,132,64,26,19,8,246,6,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,156,149,164,236,139,48,124,64,26,19,8,246,6,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,138,12,142,252,81,58,132,64,26,19,8,246,6,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,56,81,229,162,126,114,131,64,26,19,8,246,6,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,63,181,32,199,30,155,124,64,26,19,8,246,6,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,173,129,16,122,128,124,64,26,19,8,246,6,16,34,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,150,49,105,200,235,7,131,64,26,19,8,246,6,16,35,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,33,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,117,40,18,249,197,123,64,26,19,8,246,6,16,37,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,243,17,237,237,88,157,130,64,26,19,8,246,6,16,38,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,36,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,33,2,175,128,15,104,130,64,26,19,8,246,6,16,41,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,226,38,242,239,137,187,122,64,26,19,8,246,6,16,40,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,39,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,207,28,23,118,150,121,64,26,19,8,246,6,16,43,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,45,126,95,37,189,90,130,64,26,19,8,246,6,16,44,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,42,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,160,98,207,153,246,120,64,26,19,8,246,6,16,46,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,22,134,254,219,97,117,130,64,26,19,8,246,6,16,47,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,45,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,254,141,157,146,6,144,130,64,26,19,8,246,6,16,50,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,133,152,195,24,245,219,120,64,26,19,8,246,6,16,49,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,48,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,246,6,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,246,6,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,147,37,18,144,37,10,141,37,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,246,6,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,49,55,52,101,50,26,19,8,246,6,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,246,6,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,235,35,10,6,112,111,105,110,116,115,18,224,35,18,221,35,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,33,160,64,26,19,8,246,6,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,34,199,82,192,26,19,8,246,6,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,37,160,64,26,19,8,246,6,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,34,199,82,192,26,19,8,246,6,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,203,159,64,26,19,8,246,6,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,34,7,84,192,26,19,8,246,6,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,103,159,64,26,19,8,246,6,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,34,7,84,192,26,19,8,246,6,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,246,158,64,26,19,8,246,6,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,205,241,81,192,26,19,8,246,6,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,219,158,64,26,19,8,246,6,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,205,177,80,192,26,19,8,246,6,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,219,158,64,26,19,8,246,6,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,69,142,75,192,26,19,8,246,6,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,239,158,64,26,19,8,246,6,16,28,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,239,184,64,192,26,19,8,246,6,16,29,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,27,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,223,113,50,192,26,19,8,246,6,16,32,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,10,159,64,26,19,8,246,6,16,31,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,30,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,30,159,64,26,19,8,246,6,16,34,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,191,227,42,192,26,19,8,246,6,16,35,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,33,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,143,159,64,26,19,8,246,6,16,37,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,191,227,42,192,26,19,8,246,6,16,38,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,36,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,50,160,64,26,19,8,246,6,16,40,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,191,227,32,192,26,19,8,246,6,16,41,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,39,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,60,160,64,26,19,8,246,6,16,43,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,138,28,62,192,26,19,8,246,6,16,44,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,42,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,60,160,64,26,19,8,246,6,16,46,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,69,14,73,192,26,19,8,246,6,16,47,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,45,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,53,160,64,26,19,8,246,6,16,49,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,154,227,78,192,26,19,8,246,6,16,50,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,48,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,33,160,64,26,19,8,246,6,16,52,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,119,92,82,192,26,19,8,246,6,16,53,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,51,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,237,159,64,26,19,8,246,6,16,55,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,34,7,84,192,26,19,8,246,6,16,56,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,54,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,77,159,64,26,19,8,246,6,16,58,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,205,113,84,192,26,19,8,246,6,16,59,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,57,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,159,64,26,19,8,246,6,16,61,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,119,156,83,192,26,19,8,246,6,16,62,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,60,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,10,159,64,26,19,8,246,6,16,64,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,119,92,82,192,26,19,8,246,6,16,65,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,63,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,253,158,64,26,19,8,246,6,16,67,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,34,71,80,192,26,19,8,246,6,16,68,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,66,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,253,158,64,26,19,8,246,6,16,70,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,239,184,74,192,26,19,8,246,6,16,71,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,69,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,30,159,64,26,19,8,246,6,16,73,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,138,28,52,192,26,19,8,246,6,16,74,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,72,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,157,159,64,26,19,8,246,6,16,76,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,138,28,52,192,26,19,8,246,6,16,77,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,75,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,243,159,64,26,19,8,246,6,16,79,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,21,57,46,192,26,19,8,246,6,16,80,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,78,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,13,160,64,26,19,8,246,6,16,82,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,21,57,46,192,26,19,8,246,6,16,83,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,81,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,30,160,64,26,19,8,246,6,16,85,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,53,199,53,192,26,19,8,246,6,16,86,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,84,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,239,184,64,192,26,19,8,246,6,16,89,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,43,160,64,26,19,8,246,6,16,88,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,87,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,47,160,64,26,19,8,246,6,16,91,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,154,99,76,192,26,19,8,246,6,16,92,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,90,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,43,160,64,26,19,8,246,6,16,94,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,34,71,80,192,26,19,8,246,6,16,95,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,93,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,33,160,64,26,19,8,246,6,16,97,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,205,241,81,192,26,19,8,246,6,16,98,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,96,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,205,113,84,192,26,19,8,246,6,16,101,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,190,159,64,26,19,8,246,6,16,100,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,99,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,150,159,64,26,19,8,246,6,16,103,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,205,113,84,192,26,19,8,246,6,16,104,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,102,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,150,159,64,26,19,8,246,6,16,106,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,119,220,84,192,26,19,8,246,6,16,107,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,105,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,43,159,64,26,19,8,246,6,16,109,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,205,113,84,192,26,19,8,246,6,16,110,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,108,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,23,159,64,26,19,8,246,6,16,112,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,119,156,83,192,26,19,8,246,6,16,113,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,111,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,17,159,64,26,19,8,246,6,16,115,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,119,92,82,192,26,19,8,246,6,16,116,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,114,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,10,159,64,26,19,8,246,6,16,118,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,154,227,68,192,26,19,8,246,6,16,119,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,117,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,30,159,64,26,19,8,246,6,16,121,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,223,113,60,192,26,19,8,246,6,16,122,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,120,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,138,28,57,192,26,19,8,246,6,16,125,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,230,159,64,26,19,8,246,6,16,124,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,123,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,10,160,64,26,19,8,246,6,16,127,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,53,199,53,192,26,20,8,246,6,16,128,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,126,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,246,6,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,144,11,18,141,11,10,138,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,248,6,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,53,102,99,49,49,26,19,8,248,6,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,248,6,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,57,250,15,202,106,77,130,64,26,19,8,248,6,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,39,107,106,47,235,255,126,64,26,19,8,248,6,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,248,6,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,39,107,106,47,235,255,126,64,26,19,8,248,6,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,254,59,72,68,46,218,132,64,26,19,8,248,6,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,248,6,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,242,191,151,159,128,231,132,64,26,19,8,248,6,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,62,99,203,120,70,229,126,64,26,19,8,248,6,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,248,6,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,99,203,120,70,229,126,64,26,19,8,248,6,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,208,244,176,216,99,234,131,64,26,19,8,248,6,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,248,6,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,225,130,71,83,217,79,127,64,26,19,8,248,6,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,45,213,52,254,208,127,131,64,26,19,8,248,6,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,248,6,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,240,108,14,150,118,58,128,64,26,19,8,248,6,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,184,165,122,182,244,223,130,64,26,19,8,248,6,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,248,6,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,0,156,94,18,125,128,64,26,19,8,248,6,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,219,25,140,164,253,183,130,64,26,19,8,248,6,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,248,6,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,54,172,6,75,156,15,129,64,26,19,8,248,6,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,219,25,140,164,253,183,130,64,26,19,8,248,6,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,248,6,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,180,165,1,65,42,129,64,26,19,8,248,6,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,196,33,43,91,162,210,130,64,26,19,8,248,6,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,248,6,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,240,195,227,110,138,95,129,64,26,19,8,248,6,16,34,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,33,89,132,89,35,141,131,64,26,19,8,248,6,16,35,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,248,6,16,33,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,229,71,51,202,220,108,129,64,26,19,8,248,6,16,37,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,254,59,72,68,46,218,132,64,26,19,8,248,6,16,38,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,248,6,16,36,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,248,6,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,248,6,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,249,6,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,217,34,88,254,66,159,130,64,26,19,8,249,6,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,80,73,70,236,217,87,131,64,26,19,8,249,6,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,249,6,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,217,34,88,254,66,159,130,64,26,19,8,249,6,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,172,215,116,195,110,55,133,64,26,19,8,249,6,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,249,6,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,249,6,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,249,6,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,53,102,99,49,49,26,19,8,249,6,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,249,6,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,255,11,18,252,11,10,249,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,250,6,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,53,102,99,49,49,26,19,8,250,6,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,250,6,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,215,10,10,6,112,111,105,110,116,115,18,204,10,18,201,10,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,138,94,227,74,42,240,129,64,26,19,8,250,6,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,252,150,105,236,75,119,130,64,26,19,8,250,6,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,250,6,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,240,26,185,71,158,132,130,64,26,19,8,250,6,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,92,110,33,184,115,37,130,64,26,19,8,250,6,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,250,6,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,193,42,247,180,231,185,130,64,26,19,8,250,6,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,92,110,33,184,115,37,130,64,26,19,8,250,6,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,250,6,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,174,70,16,58,199,130,64,26,19,8,250,6,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,150,218,147,239,215,226,129,64,26,19,8,250,6,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,250,6,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,217,34,88,254,66,159,130,64,26,19,8,250,6,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,173,210,244,56,51,200,129,64,26,19,8,250,6,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,250,6,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,7,19,26,145,249,105,130,64,26,19,8,250,6,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,173,210,244,56,51,200,129,64,26,19,8,250,6,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,250,6,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,143,202,53,167,92,130,64,26,19,8,250,6,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,150,218,147,239,215,226,129,64,26,19,8,250,6,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,250,6,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,143,202,53,167,92,130,64,26,19,8,250,6,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,68,118,192,110,24,64,130,64,26,19,8,250,6,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,250,6,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,217,34,88,254,66,159,130,64,26,19,8,250,6,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,57,250,15,202,106,77,130,64,26,19,8,250,6,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,250,6,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,174,70,16,58,199,130,64,26,19,8,250,6,16,34,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,92,110,33,184,115,37,130,64,26,19,8,250,6,16,35,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,250,6,16,33,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,174,70,16,58,199,130,64,26,19,8,250,6,16,37,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,126,226,50,166,124,253,129,64,26,19,8,250,6,16,38,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,250,6,16,36,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,150,105,236,75,119,130,64,26,19,8,250,6,16,40,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,150,218,147,239,215,226,129,64,26,19,8,250,6,16,41,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,250,6,16,39,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,250,6,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,250,6,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,238,12,18,235,12,10,232,12,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,251,6,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,53,102,99,49,49,26,19,8,251,6,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,251,6,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,80,73,70,236,217,87,131,64,26,19,8,251,6,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,123,153,169,177,233,46,132,64,26,19,8,251,6,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,171,39,228,208,27,134,64,26,19,8,251,6,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,68,205,149,71,44,101,131,64,26,19,8,251,6,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,216,39,216,136,126,14,134,64,26,19,8,251,6,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,184,165,122,182,244,223,130,64,26,19,8,251,6,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,124,109,156,244,123,133,64,26,19,8,251,6,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,10,10,78,55,180,130,130,64,26,19,8,251,6,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,7,193,196,66,33,180,132,64,26,19,8,251,6,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,57,250,15,202,106,77,130,64,26,19,8,251,6,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,161,72,104,142,73,132,64,26,19,8,251,6,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,57,250,15,202,106,77,130,64,26,19,8,251,6,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,158,13,187,159,242,6,132,64,26,19,8,251,6,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,243,17,237,237,88,157,130,64,26,19,8,251,6,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,237,62,197,95,156,131,64,26,19,8,251,6,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,45,213,52,254,208,127,131,64,26,19,8,251,6,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,7,106,239,105,13,143,131,64,26,19,8,251,6,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,254,228,114,107,26,181,131,64,26,19,8,251,6,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,237,62,197,95,156,131,64,26,19,8,251,6,16,34,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,138,12,142,252,81,58,132,64,26,19,8,251,6,16,35,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,33,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,137,107,68,160,249,131,64,26,19,8,251,6,16,37,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,56,168,186,123,146,151,132,64,26,19,8,251,6,16,38,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,36,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,68,20,158,115,193,132,64,26,19,8,251,6,16,40,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,21,52,169,141,137,191,132,64,26,19,8,251,6,16,41,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,39,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,21,52,169,141,137,191,132,64,26,19,8,251,6,16,44,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,170,224,64,29,180,30,133,64,26,19,8,251,6,16,43,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,42,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,251,6,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,137,31,18,134,31,10,131,31,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,53,102,99,49,49,26,19,8,252,6,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,252,6,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,225,29,10,6,112,111,105,110,116,115,18,214,29,18,211,29,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,134,113,175,185,230,181,136,64,26,19,8,252,6,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,242,191,151,159,128,231,132,64,26,19,8,252,6,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,56,168,186,123,146,151,132,64,26,19,8,252,6,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,134,113,175,185,230,181,136,64,26,19,8,252,6,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,42,24,78,28,198,135,64,26,19,8,252,6,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,68,31,235,149,4,27,129,64,26,19,8,252,6,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,166,200,242,201,184,135,64,26,19,8,252,6,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,197,115,128,169,122,136,128,64,26,19,8,252,6,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,53,182,6,96,19,238,135,64,26,19,8,252,6,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,243,99,66,60,49,83,128,64,26,19,8,252,6,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,73,148,40,175,48,136,64,26,19,8,252,6,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,232,231,145,151,131,96,128,64,26,19,8,252,6,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,121,78,112,139,208,136,64,26,19,8,252,6,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,161,86,68,148,133,213,129,64,26,19,8,252,6,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,129,237,38,48,235,136,64,26,19,8,252,6,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,161,86,68,148,133,213,129,64,26,19,8,252,6,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,76,5,61,130,130,248,136,64,26,19,8,252,6,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,208,70,6,39,60,160,129,64,26,19,8,252,6,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,160,105,1,195,85,137,64,26,19,8,252,6,16,34,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,243,186,23,21,69,120,129,64,26,19,8,252,6,16,35,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,33,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,54,200,185,242,106,129,64,26,19,8,252,6,16,38,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,52,100,177,17,59,56,138,64,26,19,8,252,6,16,37,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,36,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,17,240,159,35,50,96,138,64,26,19,8,252,6,16,40,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,220,194,182,203,233,146,129,64,26,19,8,252,6,16,41,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,39,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,29,108,80,200,223,82,138,64,26,19,8,252,6,16,43,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,150,218,147,239,215,226,129,64,26,19,8,252,6,16,44,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,42,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,192,229,219,85,192,137,64,26,19,8,252,6,16,46,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,33,2,175,128,15,104,130,64,26,19,8,252,6,16,47,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,45,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,180,184,70,37,177,165,137,64,26,19,8,252,6,16,49,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,33,2,175,128,15,104,130,64,26,19,8,252,6,16,50,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,48,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,76,92,18,91,150,29,138,64,26,19,8,252,6,16,52,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,57,250,15,202,106,77,130,64,26,19,8,252,6,16,53,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,51,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,203,7,125,71,32,176,138,64,26,19,8,252,6,16,55,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,57,250,15,202,106,77,130,64,26,19,8,252,6,16,56,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,54,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,23,187,180,105,229,138,64,26,19,8,252,6,16,58,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,22,134,254,219,97,117,130,64,26,19,8,252,6,16,59,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,57,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,23,187,180,105,229,138,64,26,19,8,252,6,16,61,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,243,17,237,237,88,157,130,64,26,19,8,252,6,16,62,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,60,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,84,115,164,241,2,138,64,26,19,8,252,6,16,64,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,138,181,184,35,62,21,131,64,26,19,8,252,6,16,65,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,63,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,122,76,212,237,76,232,137,64,26,19,8,252,6,16,67,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,138,181,184,35,62,21,131,64,26,19,8,252,6,16,68,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,66,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,122,76,212,237,76,232,137,64,26,19,8,252,6,16,70,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,126,57,8,127,144,34,131,64,26,19,8,252,6,16,71,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,69,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,227,255,221,144,123,149,138,64,26,19,8,252,6,16,73,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,150,49,105,200,235,7,131,64,26,19,8,252,6,16,74,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,72,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,150,49,105,200,235,7,131,64,26,19,8,252,6,16,77,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,110,39,249,33,179,26,139,64,26,19,8,252,6,16,76,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,75,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,171,72,125,5,40,139,64,26,19,8,252,6,16,79,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,103,65,167,53,53,61,131,64,26,19,8,252,6,16,80,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,78,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,52,100,177,17,59,56,138,64,26,19,8,252,6,16,82,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,219,112,97,125,17,221,131,64,26,19,8,252,6,16,83,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,81,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,64,55,55,143,252,79,139,64,26,19,8,252,6,16,85,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,231,236,17,34,191,207,131,64,26,19,8,252,6,16,86,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,84,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,184,252,79,143,8,5,132,64,26,19,8,252,6,16,89,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,29,195,37,161,243,119,139,64,26,19,8,252,6,16,88,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,87,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,29,195,37,161,243,119,139,64,26,19,8,252,6,16,91,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,161,4,239,69,173,31,132,64,26,19,8,252,6,16,92,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,90,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,52,187,134,234,78,93,139,64,26,19,8,252,6,16,94,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,138,12,142,252,81,58,132,64,26,19,8,252,6,16,95,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,93,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,145,155,10,16,188,242,138,64,26,19,8,252,6,16,97,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,103,152,124,14,73,98,132,64,26,19,8,252,6,16,98,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,96,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,64,224,97,182,232,42,138,64,26,19,8,252,6,16,100,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,68,36,107,32,64,138,132,64,26,19,8,252,6,16,101,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,99,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,105,16,3,66,155,136,64,26,19,8,252,6,16,103,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,68,36,107,32,64,138,132,64,26,19,8,252,6,16,104,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,102,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,105,16,3,66,155,136,64,26,19,8,252,6,16,106,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,79,160,27,197,237,124,132,64,26,19,8,252,6,16,107,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,105,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,252,6,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,252,6,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,189,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,134,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,96,10,6,115,104,97,112,101,115,18,141,96,18,138,96,10,129,4,18,254,3,10,251,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,114,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,102,102,50,56,56,53,26,18,8,114,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,114,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,155,68,54,193,129,221,97,64,26,18,8,114,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,120,18,34,26,32,8,4,18,8,116,211,81,71,228,103,95,64,26,18,8,114,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,184,31,216,221,34,189,108,64,26,18,8,114,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,227,153,79,156,121,55,130,64,26,18,8,114,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,114,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,116,211,81,71,228,103,95,64,26,18,8,114,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,155,68,54,193,129,221,97,64,26,18,8,114,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,114,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,114,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,114,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,129,4,18,254,3,10,251,3,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,155,68,54,193,129,221,97,64,26,18,8,115,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,120,18,34,26,32,8,4,18,8,116,211,81,71,228,103,95,64,26,18,8,115,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,184,31,216,221,34,189,108,64,26,18,8,115,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,227,153,79,156,121,55,130,64,26,18,8,115,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,115,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,116,211,81,71,228,103,95,64,26,18,8,115,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,155,68,54,193,129,221,97,64,26,18,8,115,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,115,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,115,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,115,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,102,102,50,56,56,53,26,18,8,115,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,115,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,115,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,129,4,18,254,3,10,251,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,116,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,102,102,50,56,56,53,26,18,8,116,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,116,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,120,18,34,26,32,8,4,18,8,116,211,81,71,228,103,95,64,26,18,8,116,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,184,31,216,221,34,189,108,64,26,18,8,116,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,227,153,79,156,121,55,130,64,26,18,8,116,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,155,68,54,193,129,221,97,64,26,18,8,116,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,116,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,116,211,81,71,228,103,95,64,26,18,8,116,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,155,68,54,193,129,221,97,64,26,18,8,116,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,116,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,116,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,116,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,129,4,18,254,3,10,251,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,117,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,102,102,50,56,56,53,26,18,8,117,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,117,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,184,31,216,221,34,189,108,64,26,18,8,117,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,227,153,79,156,121,55,130,64,26,18,8,117,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,155,68,54,193,129,221,97,64,26,18,8,117,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,120,18,34,26,32,8,4,18,8,116,211,81,71,228,103,95,64,26,18,8,117,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,117,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,116,211,81,71,228,103,95,64,26,18,8,117,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,155,68,54,193,129,221,97,64,26,18,8,117,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,117,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,117,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,117,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,195,67,18,192,67,10,189,67,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,54,101,97,98,54,26,18,8,118,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,118,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,139,66,10,6,112,111,105,110,116,115,18,128,66,18,253,65,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,132,64,26,18,8,118,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,103,64,26,18,8,118,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,132,64,26,18,8,118,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,102,64,26,18,8,118,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,133,64,26,18,8,118,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,102,64,26,18,8,118,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,135,64,26,18,8,118,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,102,64,26,18,8,118,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,135,64,26,18,8,118,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,102,64,26,18,8,118,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,136,64,26,18,8,118,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,104,64,26,18,8,118,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,136,64,26,18,8,118,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,106,64,26,18,8,118,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,136,64,26,18,8,118,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,108,64,26,18,8,118,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,137,64,26,18,8,118,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,111,64,26,18,8,118,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,136,64,26,18,8,118,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,114,64,26,18,8,118,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,136,64,26,18,8,118,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,116,64,26,18,8,118,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,135,64,26,18,8,118,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,116,64,26,18,8,118,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,117,64,26,18,8,118,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,135,64,26,18,8,118,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,118,64,26,18,8,118,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,134,64,26,18,8,118,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,134,64,26,18,8,118,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,119,64,26,18,8,118,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,133,64,26,18,8,118,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,118,64,26,18,8,118,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,132,64,26,18,8,118,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,116,64,26,18,8,118,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,132,64,26,18,8,118,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,114,64,26,18,8,118,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,133,64,26,18,8,118,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,110,64,26,18,8,118,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,135,64,26,18,8,118,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,101,64,26,18,8,118,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,97,64,26,18,8,118,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,136,64,26,18,8,118,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,138,64,26,18,8,118,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,90,64,26,18,8,118,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,140,64,26,18,8,118,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,87,64,26,18,8,118,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,141,64,26,18,8,118,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,87,64,26,18,8,118,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,142,64,26,18,8,118,16,79,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,89,64,26,18,8,118,16,80,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,78,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,143,64,26,18,8,118,16,82,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,93,64,26,18,8,118,16,83,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,81,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,143,64,26,18,8,118,16,85,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,96,64,26,18,8,118,16,86,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,84,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,4,144,64,26,18,8,118,16,88,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,98,64,26,18,8,118,16,89,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,87,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,143,64,26,18,8,118,16,91,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,103,64,26,18,8,118,16,92,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,90,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,143,64,26,18,8,118,16,94,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,106,64,26,18,8,118,16,95,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,93,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,142,64,26,18,8,118,16,97,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,112,64,26,18,8,118,16,98,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,96,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,140,64,26,18,8,118,16,100,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,116,64,26,18,8,118,16,101,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,99,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,118,64,26,18,8,118,16,104,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,139,64,26,18,8,118,16,103,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,102,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,137,64,26,18,8,118,16,106,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,120,64,26,18,8,118,16,107,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,105,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,132,64,26,18,8,118,16,109,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,125,64,26,18,8,118,16,110,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,108,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,129,64,26,18,8,118,16,112,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,127,64,26,18,8,118,16,113,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,111,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,126,64,26,18,8,118,16,115,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,128,64,26,18,8,118,16,116,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,114,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,122,64,26,18,8,118,16,118,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,128,64,26,18,8,118,16,119,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,117,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,126,64,26,18,8,118,16,122,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,120,64,26,18,8,118,16,121,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,120,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,119,64,26,18,8,118,16,124,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,121,64,26,18,8,118,16,125,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,123,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,121,64,26,18,8,118,16,127,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,113,64,26,19,8,118,16,128,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,126,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,118,16,130,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,106,64,26,19,8,118,16,131,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,129,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,128,64,26,19,8,118,16,133,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,95,64,26,19,8,118,16,134,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,132,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,130,64,26,19,8,118,16,136,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,88,64,26,19,8,118,16,137,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,135,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,132,64,26,19,8,118,16,139,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,89,64,26,19,8,118,16,140,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,138,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,134,64,26,19,8,118,16,142,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,99,64,26,19,8,118,16,143,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,141,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,135,64,26,19,8,118,16,145,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,118,16,146,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,144,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,134,64,26,19,8,118,16,148,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,114,64,26,19,8,118,16,149,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,147,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,131,64,26,19,8,118,16,151,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,118,16,152,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,150,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,125,64,26,19,8,118,16,154,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,124,64,26,19,8,118,16,155,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,153,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,115,64,26,19,8,118,16,157,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,125,64,26,19,8,118,16,158,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,156,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,106,64,26,19,8,118,16,160,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,123,64,26,19,8,118,16,161,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,159,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,98,64,26,19,8,118,16,163,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,118,16,164,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,162,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,105,64,26,19,8,118,16,166,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,92,64,26,19,8,118,16,167,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,165,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,133,64,26,19,8,118,16,169,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,95,64,26,19,8,118,16,170,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,168,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,131,64,26,19,8,118,16,172,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,112,64,26,19,8,118,16,173,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,171,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,127,64,26,19,8,118,16,175,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,116,64,26,19,8,118,16,176,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,174,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,124,64,26,19,8,118,16,178,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,117,64,26,19,8,118,16,179,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,177,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,122,64,26,19,8,118,16,181,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,114,64,26,19,8,118,16,182,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,180,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,141,64,26,19,8,118,16,184,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,80,64,26,19,8,118,16,185,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,183,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,143,64,26,19,8,118,16,187,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,91,64,26,19,8,118,16,188,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,186,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,143,64,26,19,8,118,16,190,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,107,64,26,19,8,118,16,191,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,189,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,141,64,26,19,8,118,16,193,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,117,64,26,19,8,118,16,194,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,192,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,138,64,26,19,8,118,16,196,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,121,64,26,19,8,118,16,197,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,195,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,120,64,26,19,8,118,16,200,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,138,64,26,19,8,118,16,199,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,198,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,140,64,26,19,8,118,16,202,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,113,64,26,19,8,118,16,203,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,201,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,144,64,26,19,8,118,16,205,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,107,64,26,19,8,118,16,206,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,204,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,146,64,26,19,8,118,16,208,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,108,64,26,19,8,118,16,209,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,207,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,147,64,26,19,8,118,16,211,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,114,64,26,19,8,118,16,212,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,210,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,144,64,26,19,8,118,16,214,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,123,64,26,19,8,118,16,215,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,213,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,139,64,26,19,8,118,16,217,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,128,64,26,19,8,118,16,218,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,216,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,137,64,26,19,8,118,16,220,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,121,64,26,19,8,118,16,221,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,219,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,141,64,26,19,8,118,16,223,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,108,64,26,19,8,118,16,224,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,222,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,145,64,26,19,8,118,16,226,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,104,64,26,19,8,118,16,227,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,225,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,146,64,26,19,8,118,16,229,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,113,64,26,19,8,118,16,230,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,228,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,144,64,26,19,8,118,16,232,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,118,16,233,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,231,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,141,64,26,19,8,118,16,235,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,127,64,26,19,8,118,16,236,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,118,16,234,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,118,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,118,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,34,18,8,119,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,129,4,18,254,3,10,251,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,120,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,102,102,50,56,56,53,26,18,8,120,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,120,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,227,153,79,156,121,55,130,64,26,18,8,120,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,155,68,54,193,129,221,97,64,26,18,8,120,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,120,18,34,26,32,8,4,18,8,116,211,81,71,228,103,95,64,26,18,8,120,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,184,31,216,221,34,189,108,64,26,18,8,120,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,120,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,116,211,81,71,228,103,95,64,26,18,8,120,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,155,68,54,193,129,221,97,64,26,18,8,120,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,120,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,120,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,120,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,129,4,18,254,3,10,251,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,121,16,2,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,50,100,53,52,56,101,26,18,8,121,16,3,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,36,64,26,18,8,121,16,4,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,228,56,142,227,56,206,111,64,26,18,8,121,16,6,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,39,10,1,120,18,34,26,32,8,4,18,8,86,85,85,85,85,5,140,64,26,18,8,121,16,7,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,80,85,85,85,85,85,66,64,26,18,8,121,16,8,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,0,0,0,0,0,0,78,64,26,18,8,121,16,9,26,12,98,255,26,138,217,176,234,142,137,48,81,160,18,18,8,121,16,5,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,86,85,85,85,85,5,140,64,26,18,8,121,16,12,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,39,10,1,121,18,34,26,32,8,4,18,8,114,28,199,113,28,167,115,64,26,18,8,121,16,13,26,12,98,255,26,138,217,176,234,142,137,48,81,160,18,18,8,121,16,11,26,12,98,255,26,138,217,176,234,142,137,48,81,160,18,18,8,121,16,10,26,12,98,255,26,138,217,176,234,142,137,48,81,160,18,18,8,121,16,1,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,129,4,18,254,3,10,251,3,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,86,85,85,85,85,5,140,64,26,18,8,122,16,12,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,39,10,1,121,18,34,26,32,8,4,18,8,114,28,199,113,28,167,115,64,26,18,8,122,16,13,26,12,98,255,26,138,217,176,234,142,137,48,81,160,18,18,8,122,16,11,26,12,98,255,26,138,217,176,234,142,137,48,81,160,18,18,8,122,16,10,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,122,16,2,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,50,100,53,52,56,101,26,18,8,122,16,3,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,36,64,26,18,8,122,16,4,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,80,85,85,85,85,85,66,64,26,18,8,122,16,8,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,0,0,0,0,0,0,78,64,26,18,8,122,16,9,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,39,10,1,121,18,34,26,32,8,4,18,8,228,56,142,227,56,206,111,64,26,18,8,122,16,6,26,12,98,255,26,138,217,176,234,142,137,48,81,160,10,39,10,1,120,18,34,26,32,8,4,18,8,86,85,85,85,85,5,140,64,26,18,8,122,16,7,26,12,98,255,26,138,217,176,234,142,137,48,81,160,18,18,8,122,16,5,26,12,98,255,26,138,217,176,234,142,137,48,81,160,18,18,8,122,16,1,26,12,98,255,26,138,217,176,234,142,137,48,81,160,18,18,8,111,16,1,26,12,98,255,26,188,217,176,234,142,137,48,110,68,34,18,8,123,16,1,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,245,228,7,10,6,115,104,97,112,101,115,18,233,228,7,18,229,228,7,10,246,5,18,243,5,10,240,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,125,16,2,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,100,56,97,55,48,52,26,18,8,125,16,3,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,125,16,4,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,137,64,26,18,8,125,16,7,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,71,64,26,18,8,125,16,8,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,18,8,125,16,6,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,80,64,26,18,8,125,16,11,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,137,64,26,18,8,125,16,10,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,18,8,125,16,9,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,135,64,26,18,8,125,16,13,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,102,64,26,18,8,125,16,14,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,18,8,125,16,12,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,135,64,26,18,8,125,16,16,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,107,64,26,18,8,125,16,17,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,18,8,125,16,15,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,135,64,26,18,8,125,16,19,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,107,64,26,18,8,125,16,20,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,18,8,125,16,18,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,18,8,125,16,5,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,18,8,125,16,1,26,12,98,255,26,207,217,176,234,142,137,48,116,127,34,18,8,127,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,139,5,18,136,5,10,133,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,126,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,54,101,97,98,54,26,18,8,126,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,126,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,123,64,26,18,8,126,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,105,64,26,18,8,126,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,126,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,124,64,26,18,8,126,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,104,64,26,18,8,126,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,126,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,122,64,26,18,8,126,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,111,64,26,18,8,126,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,126,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,123,64,26,18,8,126,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,109,64,26,18,8,126,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,126,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,126,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,126,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,34,19,8,128,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,246,4,18,243,4,10,240,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,127,16,4,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,135,64,26,18,8,127,16,7,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,98,64,26,18,8,127,16,8,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,18,8,127,16,6,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,135,64,26,18,8,127,16,10,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,108,64,26,18,8,127,16,11,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,18,8,127,16,9,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,136,64,26,18,8,127,16,13,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,104,64,26,18,8,127,16,14,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,18,8,127,16,12,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,137,64,26,18,8,127,16,16,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,103,64,26,18,8,127,16,17,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,18,8,127,16,15,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,18,8,127,16,5,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,127,16,2,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,100,56,97,55,48,52,26,18,8,127,16,3,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,18,8,127,16,1,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,138,4,18,135,4,10,132,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,100,100,97,98,51,101,26,18,8,127,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,127,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,115,64,26,18,8,127,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,137,64,26,18,8,127,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,127,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,137,64,26,18,8,127,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,114,64,26,18,8,127,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,127,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,141,64,26,18,8,127,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,113,64,26,18,8,127,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,127,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,127,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,127,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,127,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,238,12,18,235,12,10,232,12,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,131,1,16,2,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,54,98,50,102,52,26,19,8,131,1,16,3,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,131,1,16,4,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,129,64,26,19,8,131,1,16,7,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,121,64,26,19,8,131,1,16,8,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,6,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,127,64,26,19,8,131,1,16,11,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,129,64,26,19,8,131,1,16,10,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,9,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,129,64,26,19,8,131,1,16,13,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,126,64,26,19,8,131,1,16,14,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,12,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,125,64,26,19,8,131,1,16,17,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,130,64,26,19,8,131,1,16,16,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,15,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,132,64,26,19,8,131,1,16,19,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,124,64,26,19,8,131,1,16,20,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,18,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,132,64,26,19,8,131,1,16,22,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,124,64,26,19,8,131,1,16,23,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,21,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,132,64,26,19,8,131,1,16,25,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,125,64,26,19,8,131,1,16,26,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,24,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,132,64,26,19,8,131,1,16,28,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,126,64,26,19,8,131,1,16,29,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,27,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,132,64,26,19,8,131,1,16,31,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,127,64,26,19,8,131,1,16,32,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,30,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,132,64,26,19,8,131,1,16,34,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,127,64,26,19,8,131,1,16,35,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,33,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,132,64,26,19,8,131,1,16,37,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,127,64,26,19,8,131,1,16,38,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,36,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,133,64,26,19,8,131,1,16,40,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,127,64,26,19,8,131,1,16,41,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,39,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,133,64,26,19,8,131,1,16,43,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,127,64,26,19,8,131,1,16,44,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,42,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,5,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,131,1,16,1,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,131,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,100,97,98,51,101,26,19,8,131,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,131,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,137,64,26,19,8,131,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,113,64,26,19,8,131,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,131,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,138,64,26,19,8,131,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,131,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,131,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,144,64,26,19,8,131,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,131,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,131,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,131,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,131,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,133,1,16,2,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,54,98,50,102,52,26,19,8,133,1,16,3,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,133,1,16,4,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,134,64,26,19,8,133,1,16,7,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,126,64,26,19,8,133,1,16,8,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,133,1,16,6,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,134,64,26,19,8,133,1,16,10,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,127,64,26,19,8,133,1,16,11,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,133,1,16,9,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,128,64,26,19,8,133,1,16,14,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,134,64,26,19,8,133,1,16,13,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,133,1,16,12,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,134,64,26,19,8,133,1,16,16,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,128,64,26,19,8,133,1,16,17,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,133,1,16,15,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,133,1,16,5,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,133,1,16,1,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,133,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,100,97,98,51,101,26,19,8,133,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,133,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,137,64,26,19,8,133,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,113,64,26,19,8,133,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,133,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,137,64,26,19,8,133,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,113,64,26,19,8,133,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,133,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,138,64,26,19,8,133,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,113,64,26,19,8,133,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,133,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,141,64,26,19,8,133,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,114,64,26,19,8,133,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,133,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,133,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,133,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,54,98,50,102,52,26,19,8,135,1,16,3,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,135,1,16,4,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,134,64,26,19,8,135,1,16,7,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,123,64,26,19,8,135,1,16,8,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,135,1,16,6,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,134,64,26,19,8,135,1,16,10,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,123,64,26,19,8,135,1,16,11,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,135,1,16,9,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,135,1,16,5,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,135,1,16,2,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,135,1,16,1,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,229,6,18,226,6,10,223,6,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,136,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,133,64,26,19,8,136,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,115,64,26,19,8,136,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,136,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,134,64,26,19,8,136,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,136,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,136,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,134,64,26,19,8,136,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,113,64,26,19,8,136,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,136,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,136,64,26,19,8,136,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,113,64,26,19,8,136,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,136,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,137,64,26,19,8,136,1,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,113,64,26,19,8,136,1,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,136,1,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,139,64,26,19,8,136,1,16,22,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,113,64,26,19,8,136,1,16,23,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,136,1,16,21,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,136,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,136,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,100,97,98,51,101,26,19,8,136,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,136,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,161,10,18,158,10,10,155,10,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,124,64,26,19,8,137,1,16,7,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,116,64,26,19,8,137,1,16,8,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,137,1,16,6,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,124,64,26,19,8,137,1,16,10,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,115,64,26,19,8,137,1,16,11,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,137,1,16,9,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,124,64,26,19,8,137,1,16,13,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,115,64,26,19,8,137,1,16,14,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,137,1,16,12,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,124,64,26,19,8,137,1,16,16,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,115,64,26,19,8,137,1,16,17,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,137,1,16,15,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,126,64,26,19,8,137,1,16,19,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,114,64,26,19,8,137,1,16,20,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,137,1,16,18,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,127,64,26,19,8,137,1,16,22,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,64,26,19,8,137,1,16,23,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,137,1,16,21,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,137,1,16,25,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,114,64,26,19,8,137,1,16,26,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,137,1,16,24,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,128,64,26,19,8,137,1,16,28,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,115,64,26,19,8,137,1,16,29,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,137,1,16,27,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,129,64,26,19,8,137,1,16,31,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,115,64,26,19,8,137,1,16,32,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,137,1,16,30,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,129,64,26,19,8,137,1,16,34,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,116,64,26,19,8,137,1,16,35,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,137,1,16,33,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,137,1,16,5,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,137,1,16,2,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,97,55,48,52,26,19,8,137,1,16,3,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,137,1,16,4,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,137,1,16,1,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,138,1,16,2,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,97,55,48,52,26,19,8,138,1,16,3,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,138,1,16,4,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,115,64,26,19,8,138,1,16,7,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,118,64,26,19,8,138,1,16,8,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,138,1,16,6,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,130,64,26,19,8,138,1,16,10,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,114,64,26,19,8,138,1,16,11,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,138,1,16,9,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,129,64,26,19,8,138,1,16,13,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,113,64,26,19,8,138,1,16,14,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,138,1,16,12,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,124,64,26,19,8,138,1,16,16,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,113,64,26,19,8,138,1,16,17,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,138,1,16,15,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,122,64,26,19,8,138,1,16,19,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,115,64,26,19,8,138,1,16,20,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,138,1,16,18,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,138,1,16,22,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,117,64,26,19,8,138,1,16,23,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,138,1,16,21,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,138,1,16,5,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,138,1,16,1,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,229,80,18,226,80,10,223,80,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,138,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,53,57,49,52,53,26,19,8,138,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,138,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,189,79,10,6,112,111,105,110,116,115,18,178,79,18,175,79,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,37,144,64,26,19,8,138,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,157,116,52,64,26,19,8,138,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,55,141,64,26,19,8,138,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,124,50,86,64,26,19,8,138,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,39,137,64,26,19,8,138,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,62,121,100,64,26,19,8,138,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,61,134,64,26,19,8,138,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,232,227,105,64,26,19,8,138,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,242,131,64,26,19,8,138,1,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,232,3,109,64,26,19,8,138,1,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,90,128,64,26,19,8,138,1,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,244,97,112,64,26,19,8,138,1,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,118,64,26,19,8,138,1,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,244,241,113,64,26,19,8,138,1,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,105,64,26,19,8,138,1,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,159,92,114,64,26,19,8,138,1,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,213,73,39,114,64,26,19,8,138,1,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,91,64,26,19,8,138,1,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,73,192,26,19,8,138,1,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,244,17,112,64,26,19,8,138,1,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,42,77,192,26,19,8,138,1,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,62,25,111,64,26,19,8,138,1,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,170,74,192,26,19,8,138,1,16,40,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,62,57,109,64,26,19,8,138,1,16,41,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,39,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,42,77,64,26,19,8,138,1,16,43,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,232,227,100,64,26,19,8,138,1,16,44,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,42,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,117,96,64,26,19,8,138,1,16,46,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,147,142,97,64,26,19,8,138,1,16,47,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,45,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,95,109,64,26,19,8,138,1,16,49,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,124,114,92,64,26,19,8,138,1,16,50,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,48,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,122,120,64,26,19,8,138,1,16,52,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,124,50,86,64,26,19,8,138,1,16,53,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,51,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,223,128,64,26,19,8,138,1,16,55,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,209,135,84,64,26,19,8,138,1,16,56,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,54,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,202,131,64,26,19,8,138,1,16,58,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,124,242,84,64,26,19,8,138,1,16,59,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,57,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,106,137,64,26,19,8,138,1,16,61,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,39,157,91,64,26,19,8,138,1,16,62,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,60,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,143,138,64,26,19,8,138,1,16,64,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,62,25,96,64,26,19,8,138,1,16,65,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,63,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,87,139,64,26,19,8,138,1,16,67,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,62,57,99,64,26,19,8,138,1,16,68,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,66,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,181,139,64,26,19,8,138,1,16,70,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,147,174,105,64,26,19,8,138,1,16,71,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,69,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,181,139,64,26,19,8,138,1,16,73,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,232,195,107,64,26,19,8,138,1,16,74,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,72,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,114,139,64,26,19,8,138,1,16,76,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,147,78,111,64,26,19,8,138,1,16,77,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,75,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,159,28,113,64,26,19,8,138,1,16,80,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,34,139,64,26,19,8,138,1,16,79,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,78,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,210,138,64,26,19,8,138,1,16,82,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,244,241,113,64,26,19,8,138,1,16,83,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,81,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,77,138,64,26,19,8,138,1,16,85,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,213,73,199,114,64,26,19,8,138,1,16,86,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,84,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,66,137,64,26,19,8,138,1,16,88,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,159,252,114,64,26,19,8,138,1,16,89,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,87,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,244,145,114,64,26,19,8,138,1,16,92,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,242,136,64,26,19,8,138,1,16,91,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,90,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,109,136,64,26,19,8,138,1,16,94,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,244,161,113,64,26,19,8,138,1,16,95,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,93,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,213,73,71,112,64,26,19,8,138,1,16,98,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,231,135,64,26,19,8,138,1,16,97,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,96,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,85,135,64,26,19,8,138,1,16,100,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,62,249,107,64,26,19,8,138,1,16,101,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,99,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,62,217,104,64,26,19,8,138,1,16,104,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,58,135,64,26,19,8,138,1,16,103,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,102,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,42,136,64,26,19,8,138,1,16,106,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,163,15,69,64,26,19,8,138,1,16,107,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,105,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,13,54,48,192,26,19,8,138,1,16,110,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,26,137,64,26,19,8,138,1,16,109,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,108,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,183,138,64,26,19,8,138,1,16,112,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,45,184,84,192,26,19,8,138,1,16,113,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,111,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,42,141,64,26,19,8,138,1,16,115,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,22,60,97,192,26,19,8,138,1,16,116,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,114,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,162,141,64,26,19,8,138,1,16,118,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,22,220,97,192,26,19,8,138,1,16,119,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,117,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,13,142,64,26,19,8,138,1,16,121,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,108,17,98,192,26,19,8,138,1,16,122,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,120,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,229,141,64,26,19,8,138,1,16,124,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,131,77,94,192,26,19,8,138,1,16,125,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,123,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,229,141,64,26,19,8,138,1,16,127,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,216,34,90,192,26,20,8,138,1,16,128,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,126,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,159,142,64,26,20,8,138,1,16,130,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,91,112,74,192,26,20,8,138,1,16,131,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,129,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,77,143,64,26,20,8,138,1,16,133,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,91,112,64,192,26,20,8,138,1,16,134,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,132,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,151,146,64,26,20,8,138,1,16,136,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,124,178,83,64,26,20,8,138,1,16,137,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,135,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,215,147,64,26,20,8,138,1,16,139,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,209,71,93,64,26,20,8,138,1,16,140,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,138,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,147,238,101,64,26,20,8,138,1,16,143,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,137,149,64,26,20,8,138,1,16,142,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,141,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,129,152,64,26,20,8,138,1,16,145,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,42,159,12,114,64,26,20,8,138,1,16,146,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,144,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,209,152,64,26,20,8,138,1,16,148,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,213,73,23,115,64,26,20,8,138,1,16,149,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,147,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,182,152,64,26,20,8,138,1,16,151,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,213,73,87,116,64,26,20,8,138,1,16,152,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,150,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,69,152,64,26,20,8,138,1,16,154,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,127,244,193,116,64,26,20,8,138,1,16,155,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,153,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,107,150,64,26,20,8,138,1,16,157,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,127,244,177,117,64,26,20,8,138,1,16,158,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,156,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,170,143,64,26,20,8,138,1,16,160,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,42,159,204,117,64,26,20,8,138,1,16,161,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,159,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,127,244,17,117,64,26,20,8,138,1,16,164,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,106,137,64,26,20,8,138,1,16,163,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,162,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,207,129,64,26,20,8,138,1,16,166,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,213,73,103,115,64,26,20,8,138,1,16,167,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,165,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,62,153,103,64,26,20,8,138,1,16,170,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,213,100,64,26,20,8,138,1,16,169,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,168,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,85,87,64,26,20,8,138,1,16,172,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,147,78,96,64,26,20,8,138,1,16,173,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,171,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,42,93,64,26,20,8,138,1,16,175,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,191,5,7,192,26,20,8,138,1,16,176,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,174,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,177,197,72,192,26,20,8,138,1,16,179,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,138,103,64,26,20,8,138,1,16,178,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,177,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,181,118,64,26,20,8,138,1,16,181,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,216,226,88,192,26,20,8,138,1,16,182,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,180,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,109,136,64,26,20,8,138,1,16,184,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,131,77,84,192,26,20,8,138,1,16,185,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,183,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,82,141,64,26,20,8,138,1,16,187,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,91,112,69,192,26,20,8,138,1,16,188,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,186,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,41,145,64,26,20,8,138,1,16,190,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,163,15,64,64,26,20,8,138,1,16,191,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,189,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,254,145,64,26,20,8,138,1,16,193,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,39,29,89,64,26,20,8,138,1,16,194,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,192,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,234,145,64,26,20,8,138,1,16,196,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,62,217,99,64,26,20,8,138,1,16,197,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,195,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,94,145,64,26,20,8,138,1,16,199,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,232,163,104,64,26,20,8,138,1,16,200,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,198,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,175,136,64,26,20,8,138,1,16,202,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,213,73,39,114,64,26,20,8,138,1,16,203,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,201,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,55,131,64,26,20,8,138,1,16,205,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,213,73,119,114,64,26,20,8,138,1,16,206,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,204,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,255,120,64,26,20,8,138,1,16,208,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,42,159,188,113,64,26,20,8,138,1,16,209,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,207,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,191,92,64,26,20,8,138,1,16,211,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,232,99,108,64,26,20,8,138,1,16,212,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,210,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,127,91,64,26,20,8,138,1,16,214,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,62,89,107,64,26,20,8,138,1,16,215,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,213,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,127,107,64,26,20,8,138,1,16,217,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,62,121,100,64,26,20,8,138,1,16,218,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,216,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,239,116,64,26,20,8,138,1,16,220,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,147,206,98,64,26,20,8,138,1,16,221,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,219,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,143,128,64,26,20,8,138,1,16,223,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,62,57,99,64,26,20,8,138,1,16,224,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,222,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,143,138,64,26,20,8,138,1,16,226,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,232,35,107,64,26,20,8,138,1,16,227,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,225,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,232,163,109,64,26,20,8,138,1,16,230,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,154,139,64,26,20,8,138,1,16,229,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,228,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,154,139,64,26,20,8,138,1,16,232,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,42,159,44,112,64,26,20,8,138,1,16,233,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,231,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,90,138,64,26,20,8,138,1,16,235,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,127,244,161,113,64,26,20,8,138,1,16,236,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,234,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,250,133,64,26,20,8,138,1,16,238,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,42,159,236,115,64,26,20,8,138,1,16,239,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,237,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,127,129,64,26,20,8,138,1,16,241,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,213,73,167,116,64,26,20,8,138,1,16,242,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,240,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,42,159,156,115,64,26,20,8,138,1,16,245,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,42,104,64,26,20,8,138,1,16,244,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,243,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,191,92,64,26,20,8,138,1,16,247,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,127,244,145,114,64,26,20,8,138,1,16,248,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,246,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,149,88,64,26,20,8,138,1,16,250,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,213,73,215,113,64,26,20,8,138,1,16,251,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,249,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,95,104,64,26,20,8,138,1,16,253,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,232,227,105,64,26,20,8,138,1,16,254,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,252,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,112,64,26,20,8,138,1,16,128,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,62,185,101,64,26,20,8,138,1,16,129,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,255,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,197,122,64,26,20,8,138,1,16,131,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,39,221,92,64,26,20,8,138,1,16,132,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,130,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,130,64,26,20,8,138,1,16,134,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,249,228,79,64,26,20,8,138,1,16,135,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,133,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,58,233,36,64,26,20,8,138,1,16,138,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,189,136,64,26,20,8,138,1,16,137,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,136,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,61,139,64,26,20,8,138,1,16,140,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,13,54,48,192,26,20,8,138,1,16,141,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,139,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,141,139,64,26,20,8,138,1,16,143,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,13,54,53,192,26,20,8,138,1,16,144,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,142,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,207,139,64,26,20,8,138,1,16,146,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,98,139,61,192,26,20,8,138,1,16,147,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,138,1,16,145,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,138,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,179,22,18,176,22,10,173,22,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,137,1,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,139,21,10,6,112,111,105,110,116,115,18,128,21,18,253,20,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,129,64,26,19,8,137,1,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,137,1,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,64,26,19,8,137,1,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,128,64,26,19,8,137,1,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,128,64,26,19,8,137,1,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,113,64,26,19,8,137,1,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,128,64,26,19,8,137,1,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,112,64,26,19,8,137,1,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,128,64,26,19,8,137,1,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,107,64,26,19,8,137,1,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,129,64,26,19,8,137,1,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,100,64,26,19,8,137,1,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,128,64,26,19,8,137,1,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,109,64,26,19,8,137,1,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,125,64,26,19,8,137,1,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,114,64,26,19,8,137,1,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,125,64,26,19,8,137,1,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,112,64,26,19,8,137,1,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,127,64,26,19,8,137,1,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,103,64,26,19,8,137,1,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,127,64,26,19,8,137,1,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,98,64,26,19,8,137,1,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,124,64,26,19,8,137,1,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,105,64,26,19,8,137,1,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,108,64,26,19,8,137,1,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,124,64,26,19,8,137,1,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,125,64,26,19,8,137,1,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,101,64,26,19,8,137,1,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,126,64,26,19,8,137,1,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,100,64,26,19,8,137,1,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,125,64,26,19,8,137,1,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,100,64,26,19,8,137,1,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,123,64,26,19,8,137,1,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,109,64,26,19,8,137,1,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,104,64,26,19,8,137,1,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,128,64,26,19,8,137,1,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,124,64,26,19,8,137,1,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,115,64,26,19,8,137,1,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,125,64,26,19,8,137,1,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,115,64,26,19,8,137,1,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,126,64,26,19,8,137,1,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,64,26,19,8,137,1,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,128,64,26,19,8,137,1,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,108,64,26,19,8,137,1,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,113,64,26,19,8,137,1,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,127,64,26,19,8,137,1,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,129,64,26,19,8,137,1,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,113,64,26,19,8,137,1,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,137,1,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,54,101,97,98,54,26,19,8,137,1,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,137,1,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,161,10,18,158,10,10,155,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,140,1,16,2,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,54,98,50,102,52,26,19,8,140,1,16,3,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,140,1,16,4,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,148,64,26,19,8,140,1,16,7,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,113,64,26,19,8,140,1,16,8,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,140,1,16,6,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,148,64,26,19,8,140,1,16,10,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,124,64,26,19,8,140,1,16,11,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,140,1,16,9,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,148,64,26,19,8,140,1,16,13,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,113,64,26,19,8,140,1,16,14,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,140,1,16,12,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,114,64,26,19,8,140,1,16,17,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,148,64,26,19,8,140,1,16,16,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,140,1,16,15,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,149,64,26,19,8,140,1,16,19,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,114,64,26,19,8,140,1,16,20,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,140,1,16,18,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,149,64,26,19,8,140,1,16,22,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,114,64,26,19,8,140,1,16,23,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,140,1,16,21,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,148,64,26,19,8,140,1,16,25,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,117,64,26,19,8,140,1,16,26,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,140,1,16,24,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,148,64,26,19,8,140,1,16,28,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,119,64,26,19,8,140,1,16,29,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,140,1,16,27,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,147,64,26,19,8,140,1,16,31,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,140,1,16,32,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,140,1,16,30,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,117,64,26,19,8,140,1,16,35,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,147,64,26,19,8,140,1,16,34,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,140,1,16,33,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,140,1,16,5,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,140,1,16,1,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,141,1,16,2,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,54,98,50,102,52,26,19,8,141,1,16,3,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,141,1,16,4,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,121,64,26,19,8,141,1,16,8,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,149,64,26,19,8,141,1,16,7,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,141,1,16,6,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,149,64,26,19,8,141,1,16,10,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,124,64,26,19,8,141,1,16,11,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,141,1,16,9,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,141,1,16,5,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,141,1,16,1,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,54,98,50,102,52,26,19,8,142,1,16,3,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,142,1,16,4,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,149,64,26,19,8,142,1,16,7,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,115,64,26,19,8,142,1,16,8,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,142,1,16,6,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,149,64,26,19,8,142,1,16,10,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,115,64,26,19,8,142,1,16,11,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,142,1,16,9,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,142,1,16,5,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,142,1,16,2,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,142,1,16,1,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,143,1,16,2,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,54,98,50,102,52,26,19,8,143,1,16,3,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,143,1,16,4,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,116,64,26,19,8,143,1,16,8,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,150,64,26,19,8,143,1,16,7,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,143,1,16,6,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,150,64,26,19,8,143,1,16,10,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,122,64,26,19,8,143,1,16,11,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,143,1,16,9,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,143,1,16,5,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,143,1,16,1,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,140,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,216,195,68,41,207,207,91,64,26,19,8,140,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,80,200,59,32,194,168,123,64,26,19,8,140,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,157,161,151,103,105,67,95,192,26,19,8,140,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,152,185,90,93,252,129,85,64,26,19,8,140,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,140,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,80,200,59,32,194,168,123,64,26,19,8,140,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,157,161,151,103,105,67,95,192,26,19,8,140,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,140,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,140,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,140,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,50,56,56,53,26,19,8,140,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,140,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,141,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,157,161,151,103,105,67,95,192,26,19,8,141,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,152,185,90,93,252,129,85,64,26,19,8,141,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,216,195,68,41,207,207,91,64,26,19,8,141,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,80,200,59,32,194,168,123,64,26,19,8,141,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,141,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,161,151,103,105,67,95,192,26,19,8,141,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,80,200,59,32,194,168,123,64,26,19,8,141,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,141,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,141,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,141,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,50,56,56,53,26,19,8,141,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,141,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,142,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,50,56,56,53,26,19,8,142,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,142,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,216,195,68,41,207,207,91,64,26,19,8,142,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,80,200,59,32,194,168,123,64,26,19,8,142,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,157,161,151,103,105,67,95,192,26,19,8,142,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,152,185,90,93,252,129,85,64,26,19,8,142,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,142,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,161,151,103,105,67,95,192,26,19,8,142,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,80,200,59,32,194,168,123,64,26,19,8,142,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,142,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,142,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,142,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,161,10,18,158,10,10,155,10,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,53,57,49,52,53,26,19,8,143,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,143,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,85,146,64,26,19,8,143,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,213,96,243,112,192,26,19,8,143,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,143,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,193,134,109,192,26,19,8,143,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,134,145,64,26,19,8,143,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,143,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,22,188,99,192,26,19,8,143,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,142,64,26,19,8,143,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,143,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,39,137,64,26,19,8,143,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,216,162,87,192,26,19,8,143,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,143,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,162,131,64,26,19,8,143,1,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,177,197,67,192,26,19,8,143,1,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,143,1,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,229,125,64,26,19,8,143,1,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,213,96,243,191,26,19,8,143,1,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,143,1,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,191,98,64,26,19,8,143,1,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,124,50,86,64,26,19,8,143,1,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,143,1,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,149,88,64,26,19,8,143,1,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,39,29,89,64,26,19,8,143,1,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,143,1,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,21,81,64,26,19,8,143,1,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,124,242,89,64,26,19,8,143,1,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,143,1,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,127,81,64,26,19,8,143,1,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,209,135,89,64,26,19,8,143,1,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,143,1,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,143,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,143,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,143,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,193,50,18,190,50,10,187,50,10,153,49,10,6,112,111,105,110,116,115,18,142,49,18,139,49,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,130,64,26,19,8,140,1,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,114,64,26,19,8,140,1,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,128,64,26,19,8,140,1,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,116,64,26,19,8,140,1,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,140,1,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,127,64,26,19,8,140,1,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,127,64,26,19,8,140,1,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,116,64,26,19,8,140,1,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,116,64,26,19,8,140,1,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,140,1,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,115,64,26,19,8,140,1,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,140,1,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,127,64,26,19,8,140,1,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,140,1,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,128,64,26,19,8,140,1,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,108,64,26,19,8,140,1,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,129,64,26,19,8,140,1,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,105,64,26,19,8,140,1,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,100,64,26,19,8,140,1,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,129,64,26,19,8,140,1,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,130,64,26,19,8,140,1,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,98,64,26,19,8,140,1,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,130,64,26,19,8,140,1,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,96,64,26,19,8,140,1,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,140,1,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,95,64,26,19,8,140,1,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,140,1,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,131,64,26,19,8,140,1,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,131,64,26,19,8,140,1,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,97,64,26,19,8,140,1,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,132,64,26,19,8,140,1,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,98,64,26,19,8,140,1,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,132,64,26,19,8,140,1,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,101,64,26,19,8,140,1,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,132,64,26,19,8,140,1,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,107,64,26,19,8,140,1,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,132,64,26,19,8,140,1,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,111,64,26,19,8,140,1,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,140,1,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,107,64,26,19,8,140,1,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,131,64,26,19,8,140,1,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,114,64,26,19,8,140,1,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,130,64,26,19,8,140,1,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,119,64,26,19,8,140,1,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,129,64,26,19,8,140,1,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,120,64,26,19,8,140,1,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,127,64,26,19,8,140,1,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,117,64,26,19,8,140,1,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,140,1,16,79,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,109,64,26,19,8,140,1,16,80,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,78,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,130,64,26,19,8,140,1,16,82,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,104,64,26,19,8,140,1,16,83,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,81,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,131,64,26,19,8,140,1,16,85,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,105,64,26,19,8,140,1,16,86,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,84,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,130,64,26,19,8,140,1,16,88,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,112,64,26,19,8,140,1,16,89,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,87,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,129,64,26,19,8,140,1,16,91,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,115,64,26,19,8,140,1,16,92,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,90,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,127,64,26,19,8,140,1,16,94,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,116,64,26,19,8,140,1,16,95,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,93,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,126,64,26,19,8,140,1,16,97,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,113,64,26,19,8,140,1,16,98,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,96,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,128,64,26,19,8,140,1,16,100,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,109,64,26,19,8,140,1,16,101,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,99,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,129,64,26,19,8,140,1,16,103,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,110,64,26,19,8,140,1,16,104,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,102,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,129,64,26,19,8,140,1,16,106,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,115,64,26,19,8,140,1,16,107,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,105,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,118,64,26,19,8,140,1,16,110,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,128,64,26,19,8,140,1,16,109,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,108,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,125,64,26,19,8,140,1,16,112,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,118,64,26,19,8,140,1,16,113,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,111,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,113,64,26,19,8,140,1,16,116,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,123,64,26,19,8,140,1,16,115,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,114,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,106,64,26,19,8,140,1,16,119,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,124,64,26,19,8,140,1,16,118,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,117,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,107,64,26,19,8,140,1,16,122,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,127,64,26,19,8,140,1,16,121,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,120,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,140,1,16,124,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,113,64,26,19,8,140,1,16,125,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,123,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,140,1,16,127,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,114,64,26,20,8,140,1,16,128,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,126,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,124,64,26,20,8,140,1,16,130,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,114,64,26,20,8,140,1,16,131,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,129,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,123,64,26,20,8,140,1,16,133,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,109,64,26,20,8,140,1,16,134,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,132,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,126,64,26,20,8,140,1,16,136,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,102,64,26,20,8,140,1,16,137,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,135,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,128,64,26,20,8,140,1,16,139,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,102,64,26,20,8,140,1,16,140,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,138,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,128,64,26,20,8,140,1,16,142,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,113,64,26,20,8,140,1,16,143,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,141,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,116,64,26,20,8,140,1,16,146,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,125,64,26,20,8,140,1,16,145,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,144,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,122,64,26,20,8,140,1,16,148,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,115,64,26,20,8,140,1,16,149,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,147,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,123,64,26,20,8,140,1,16,151,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,107,64,26,20,8,140,1,16,152,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,150,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,127,64,26,20,8,140,1,16,154,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,101,64,26,20,8,140,1,16,155,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,153,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,130,64,26,20,8,140,1,16,157,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,107,64,26,20,8,140,1,16,158,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,156,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,130,64,26,20,8,140,1,16,160,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,114,64,26,20,8,140,1,16,161,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,159,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,129,64,26,20,8,140,1,16,163,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,116,64,26,20,8,140,1,16,164,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,162,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,128,64,26,20,8,140,1,16,166,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,109,64,26,20,8,140,1,16,167,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,165,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,131,64,26,20,8,140,1,16,169,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,101,64,26,20,8,140,1,16,170,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,168,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,108,64,26,20,8,140,1,16,173,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,136,64,26,20,8,140,1,16,172,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,140,1,16,171,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,140,1,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,54,101,97,98,54,26,19,8,140,1,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,140,1,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,140,1,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,151,110,18,148,110,10,145,110,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,140,1,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,53,99,48,57,48,26,19,8,140,1,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,140,1,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,239,108,10,6,112,111,105,110,116,115,18,228,108,18,225,108,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,139,64,26,19,8,140,1,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,127,64,26,19,8,140,1,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,139,64,26,19,8,140,1,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,127,64,26,19,8,140,1,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,139,64,26,19,8,140,1,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,127,64,26,19,8,140,1,16,14,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,138,64,26,19,8,140,1,16,16,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,125,64,26,19,8,140,1,16,17,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,15,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,137,64,26,19,8,140,1,16,19,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,123,64,26,19,8,140,1,16,20,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,18,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,137,64,26,19,8,140,1,16,22,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,123,64,26,19,8,140,1,16,23,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,21,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,122,64,26,19,8,140,1,16,26,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,137,64,26,19,8,140,1,16,25,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,24,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,138,64,26,19,8,140,1,16,28,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,122,64,26,19,8,140,1,16,29,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,27,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,139,64,26,19,8,140,1,16,31,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,122,64,26,19,8,140,1,16,32,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,30,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,140,64,26,19,8,140,1,16,34,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,122,64,26,19,8,140,1,16,35,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,33,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,141,64,26,19,8,140,1,16,37,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,123,64,26,19,8,140,1,16,38,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,36,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,145,64,26,19,8,140,1,16,40,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,123,64,26,19,8,140,1,16,41,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,39,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,145,64,26,19,8,140,1,16,43,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,123,64,26,19,8,140,1,16,44,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,42,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,144,64,26,19,8,140,1,16,46,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,125,64,26,19,8,140,1,16,47,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,45,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,142,64,26,19,8,140,1,16,49,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,129,64,26,19,8,140,1,16,50,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,48,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,132,64,26,19,8,140,1,16,53,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,138,64,26,19,8,140,1,16,52,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,51,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,136,64,26,19,8,140,1,16,55,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,133,64,26,19,8,140,1,16,56,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,54,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,135,64,26,19,8,140,1,16,58,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,133,64,26,19,8,140,1,16,59,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,57,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,133,64,26,19,8,140,1,16,61,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,133,64,26,19,8,140,1,16,62,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,60,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,132,64,26,19,8,140,1,16,64,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,133,64,26,19,8,140,1,16,65,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,63,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,131,64,26,19,8,140,1,16,67,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,132,64,26,19,8,140,1,16,68,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,66,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,130,64,26,19,8,140,1,16,70,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,131,64,26,19,8,140,1,16,71,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,69,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,130,64,26,19,8,140,1,16,73,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,129,64,26,19,8,140,1,16,74,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,72,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,131,64,26,19,8,140,1,16,76,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,127,64,26,19,8,140,1,16,77,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,75,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,132,64,26,19,8,140,1,16,79,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,123,64,26,19,8,140,1,16,80,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,78,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,132,64,26,19,8,140,1,16,82,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,120,64,26,19,8,140,1,16,83,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,81,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,134,64,26,19,8,140,1,16,85,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,117,64,26,19,8,140,1,16,86,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,84,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,135,64,26,19,8,140,1,16,88,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,118,64,26,19,8,140,1,16,89,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,87,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,136,64,26,19,8,140,1,16,91,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,121,64,26,19,8,140,1,16,92,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,90,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,137,64,26,19,8,140,1,16,94,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,128,64,26,19,8,140,1,16,95,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,93,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,137,64,26,19,8,140,1,16,97,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,129,64,26,19,8,140,1,16,98,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,96,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,133,64,26,19,8,140,1,16,100,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,133,64,26,19,8,140,1,16,101,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,99,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,132,64,26,19,8,140,1,16,103,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,133,64,26,19,8,140,1,16,104,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,102,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,132,64,26,19,8,140,1,16,107,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,130,64,26,19,8,140,1,16,106,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,105,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,130,64,26,19,8,140,1,16,110,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,129,64,26,19,8,140,1,16,109,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,108,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,128,64,26,19,8,140,1,16,112,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,140,1,16,113,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,111,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,129,64,26,19,8,140,1,16,115,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,127,64,26,19,8,140,1,16,116,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,114,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,130,64,26,19,8,140,1,16,118,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,127,64,26,19,8,140,1,16,119,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,117,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,131,64,26,19,8,140,1,16,121,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,128,64,26,19,8,140,1,16,122,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,120,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,129,64,26,19,8,140,1,16,125,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,132,64,26,19,8,140,1,16,124,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,123,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,132,64,26,19,8,140,1,16,127,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,130,64,26,20,8,140,1,16,128,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,126,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,129,64,26,20,8,140,1,16,130,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,133,64,26,20,8,140,1,16,131,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,129,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,126,64,26,20,8,140,1,16,133,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,133,64,26,20,8,140,1,16,134,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,132,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,118,64,26,20,8,140,1,16,136,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,130,64,26,20,8,140,1,16,137,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,135,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,116,64,26,20,8,140,1,16,139,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,24,129,64,26,20,8,140,1,16,140,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,138,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,116,64,26,20,8,140,1,16,142,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,127,64,26,20,8,140,1,16,143,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,141,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,116,64,26,20,8,140,1,16,145,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,126,64,26,20,8,140,1,16,146,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,144,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,121,64,26,20,8,140,1,16,148,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,126,64,26,20,8,140,1,16,149,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,147,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,125,64,26,20,8,140,1,16,151,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,130,64,26,20,8,140,1,16,152,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,150,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,125,64,26,20,8,140,1,16,154,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,132,64,26,20,8,140,1,16,155,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,153,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,134,64,26,20,8,140,1,16,158,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,123,64,26,20,8,140,1,16,157,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,156,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,121,64,26,20,8,140,1,16,160,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,134,64,26,20,8,140,1,16,161,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,159,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,115,64,26,20,8,140,1,16,163,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,132,64,26,20,8,140,1,16,164,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,162,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,114,64,26,20,8,140,1,16,166,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,125,64,26,20,8,140,1,16,167,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,165,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,115,64,26,20,8,140,1,16,169,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,123,64,26,20,8,140,1,16,170,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,168,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,117,64,26,20,8,140,1,16,172,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,121,64,26,20,8,140,1,16,173,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,171,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,119,64,26,20,8,140,1,16,175,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,120,64,26,20,8,140,1,16,176,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,174,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,128,64,26,20,8,140,1,16,178,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,121,64,26,20,8,140,1,16,179,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,177,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,128,64,26,20,8,140,1,16,182,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,128,64,26,20,8,140,1,16,181,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,180,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,122,64,26,20,8,140,1,16,184,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,129,64,26,20,8,140,1,16,185,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,183,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,121,64,26,20,8,140,1,16,187,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,129,64,26,20,8,140,1,16,188,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,186,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,119,64,26,20,8,140,1,16,190,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,127,64,26,20,8,140,1,16,191,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,189,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,119,64,26,20,8,140,1,16,193,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,127,64,26,20,8,140,1,16,194,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,192,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,127,64,26,20,8,140,1,16,197,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,119,64,26,20,8,140,1,16,196,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,195,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,119,64,26,20,8,140,1,16,199,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,127,64,26,20,8,140,1,16,200,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,198,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,120,64,26,20,8,140,1,16,202,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,127,64,26,20,8,140,1,16,203,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,201,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,121,64,26,20,8,140,1,16,205,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,128,64,26,20,8,140,1,16,206,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,204,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,129,64,26,20,8,140,1,16,209,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,124,64,26,20,8,140,1,16,208,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,207,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,124,64,26,20,8,140,1,16,211,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,130,64,26,20,8,140,1,16,212,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,210,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,125,64,26,20,8,140,1,16,214,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,130,64,26,20,8,140,1,16,215,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,213,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,124,64,26,20,8,140,1,16,217,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,130,64,26,20,8,140,1,16,218,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,216,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,130,64,26,20,8,140,1,16,221,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,123,64,26,20,8,140,1,16,220,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,219,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,122,64,26,20,8,140,1,16,223,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,129,64,26,20,8,140,1,16,224,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,222,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,122,64,26,20,8,140,1,16,226,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,129,64,26,20,8,140,1,16,227,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,225,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,128,64,26,20,8,140,1,16,230,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,122,64,26,20,8,140,1,16,229,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,228,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,122,64,26,20,8,140,1,16,232,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,128,64,26,20,8,140,1,16,233,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,231,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,123,64,26,20,8,140,1,16,235,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,128,64,26,20,8,140,1,16,236,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,234,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,125,64,26,20,8,140,1,16,238,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,128,64,26,20,8,140,1,16,239,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,237,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,127,64,26,20,8,140,1,16,241,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,128,64,26,20,8,140,1,16,242,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,240,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,129,64,26,20,8,140,1,16,244,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,129,64,26,20,8,140,1,16,245,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,243,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,131,64,26,20,8,140,1,16,247,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,130,64,26,20,8,140,1,16,248,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,246,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,132,64,26,20,8,140,1,16,250,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,130,64,26,20,8,140,1,16,251,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,249,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,133,64,26,20,8,140,1,16,253,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,131,64,26,20,8,140,1,16,254,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,252,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,133,64,26,20,8,140,1,16,128,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,131,64,26,20,8,140,1,16,129,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,255,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,133,64,26,20,8,140,1,16,131,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,132,64,26,20,8,140,1,16,132,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,130,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,133,64,26,20,8,140,1,16,134,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,133,64,26,20,8,140,1,16,135,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,133,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,133,64,26,20,8,140,1,16,137,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,168,133,64,26,20,8,140,1,16,138,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,136,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,133,64,26,20,8,140,1,16,140,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,134,64,26,20,8,140,1,16,141,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,139,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,133,64,26,20,8,140,1,16,143,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,134,64,26,20,8,140,1,16,144,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,142,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,133,64,26,20,8,140,1,16,146,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,133,64,26,20,8,140,1,16,147,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,145,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,133,64,26,20,8,140,1,16,149,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,184,132,64,26,20,8,140,1,16,150,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,148,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,134,64,26,20,8,140,1,16,152,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,131,64,26,20,8,140,1,16,153,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,151,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,134,64,26,20,8,140,1,16,155,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,130,64,26,20,8,140,1,16,156,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,154,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,135,64,26,20,8,140,1,16,158,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,130,64,26,20,8,140,1,16,159,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,157,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,136,64,26,20,8,140,1,16,161,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,129,64,26,20,8,140,1,16,162,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,160,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,129,64,26,20,8,140,1,16,165,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,137,64,26,20,8,140,1,16,164,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,163,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,137,64,26,20,8,140,1,16,167,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,129,64,26,20,8,140,1,16,168,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,166,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,138,64,26,20,8,140,1,16,170,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,130,64,26,20,8,140,1,16,171,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,169,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,130,64,26,20,8,140,1,16,174,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,138,64,26,20,8,140,1,16,173,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,172,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,138,64,26,20,8,140,1,16,176,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,131,64,26,20,8,140,1,16,177,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,175,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,138,64,26,20,8,140,1,16,179,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,132,64,26,20,8,140,1,16,180,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,178,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,135,64,26,20,8,140,1,16,182,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,133,64,26,20,8,140,1,16,183,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,181,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,134,64,26,20,8,140,1,16,185,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,133,64,26,20,8,140,1,16,186,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,184,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,134,64,26,20,8,140,1,16,188,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,133,64,26,20,8,140,1,16,189,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,187,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,134,64,26,20,8,140,1,16,191,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,132,64,26,20,8,140,1,16,192,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,190,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,135,64,26,20,8,140,1,16,194,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,131,64,26,20,8,140,1,16,195,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,193,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,130,64,26,20,8,140,1,16,198,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,136,64,26,20,8,140,1,16,197,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,196,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,138,64,26,20,8,140,1,16,200,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,129,64,26,20,8,140,1,16,201,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,199,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,139,64,26,20,8,140,1,16,203,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,128,64,26,20,8,140,1,16,204,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,202,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,140,64,26,20,8,140,1,16,206,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,128,64,26,20,8,140,1,16,207,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,205,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,141,64,26,20,8,140,1,16,209,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,128,64,26,20,8,140,1,16,210,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,208,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,142,64,26,20,8,140,1,16,212,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,126,64,26,20,8,140,1,16,213,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,211,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,142,64,26,20,8,140,1,16,215,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,125,64,26,20,8,140,1,16,216,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,214,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,143,64,26,20,8,140,1,16,218,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,124,64,26,20,8,140,1,16,219,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,217,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,143,64,26,20,8,140,1,16,221,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,123,64,26,20,8,140,1,16,222,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,220,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,144,64,26,20,8,140,1,16,224,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,123,64,26,20,8,140,1,16,225,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,223,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,144,64,26,20,8,140,1,16,227,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,123,64,26,20,8,140,1,16,228,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,226,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,144,64,26,20,8,140,1,16,230,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,123,64,26,20,8,140,1,16,231,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,229,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,144,64,26,20,8,140,1,16,233,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,125,64,26,20,8,140,1,16,234,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,232,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,143,64,26,20,8,140,1,16,236,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,127,64,26,20,8,140,1,16,237,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,235,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,141,64,26,20,8,140,1,16,239,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,130,64,26,20,8,140,1,16,240,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,238,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,139,64,26,20,8,140,1,16,242,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,130,64,26,20,8,140,1,16,243,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,241,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,139,64,26,20,8,140,1,16,245,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,130,64,26,20,8,140,1,16,246,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,140,1,16,244,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,140,1,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,238,12,18,235,12,10,232,12,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,134,64,26,19,8,147,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,117,64,26,19,8,147,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,135,64,26,19,8,147,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,115,64,26,19,8,147,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,136,64,26,19,8,147,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,114,64,26,19,8,147,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,136,64,26,19,8,147,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,114,64,26,19,8,147,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,136,64,26,19,8,147,1,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,114,64,26,19,8,147,1,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,137,64,26,19,8,147,1,16,22,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,115,64,26,19,8,147,1,16,23,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,21,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,137,64,26,19,8,147,1,16,25,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,116,64,26,19,8,147,1,16,26,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,24,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,137,64,26,19,8,147,1,16,28,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,115,64,26,19,8,147,1,16,29,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,27,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,114,64,26,19,8,147,1,16,32,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,138,64,26,19,8,147,1,16,31,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,30,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,138,64,26,19,8,147,1,16,34,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,114,64,26,19,8,147,1,16,35,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,33,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,138,64,26,19,8,147,1,16,37,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,114,64,26,19,8,147,1,16,38,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,36,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,115,64,26,19,8,147,1,16,41,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,138,64,26,19,8,147,1,16,40,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,39,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,139,64,26,19,8,147,1,16,43,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,147,1,16,44,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,42,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,147,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,100,97,98,51,101,26,19,8,147,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,147,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,147,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,148,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,80,200,59,32,194,168,123,64,26,19,8,148,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,157,161,151,103,105,67,95,192,26,19,8,148,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,152,185,90,93,252,129,85,64,26,19,8,148,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,216,195,68,41,207,207,91,64,26,19,8,148,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,148,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,161,151,103,105,67,95,192,26,19,8,148,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,80,200,59,32,194,168,123,64,26,19,8,148,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,148,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,148,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,148,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,50,56,56,53,26,19,8,148,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,148,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,239,63,18,236,63,10,233,63,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,53,57,49,52,53,26,19,8,152,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,152,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,199,62,10,6,112,111,105,110,116,115,18,188,62,18,185,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,149,120,64,26,19,8,152,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,108,145,110,192,26,19,8,152,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,149,115,64,26,19,8,152,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,193,70,108,192,26,19,8,152,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,85,76,64,26,19,8,152,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,216,162,87,192,26,19,8,152,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,255,67,192,26,19,8,152,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,13,54,58,192,26,19,8,152,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,78,58,68,64,26,19,8,152,1,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,170,95,192,26,19,8,152,1,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,103,192,26,19,8,152,1,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,39,221,87,64,26,19,8,152,1,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,107,192,26,19,8,152,1,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,39,29,94,64,26,19,8,152,1,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,10,111,192,26,19,8,152,1,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,147,174,100,64,26,19,8,152,1,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,223,111,192,26,19,8,152,1,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,232,195,102,64,26,19,8,152,1,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,223,111,192,26,19,8,152,1,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,232,3,104,64,26,19,8,152,1,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,111,192,26,19,8,152,1,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,232,35,107,64,26,19,8,152,1,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,110,192,26,19,8,152,1,16,40,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,232,227,105,64,26,19,8,152,1,16,41,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,39,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,110,192,26,19,8,152,1,16,43,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,62,153,103,64,26,19,8,152,1,16,44,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,42,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,101,113,192,26,19,8,152,1,16,46,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,223,130,31,192,26,19,8,152,1,16,47,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,45,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,5,114,192,26,19,8,152,1,16,49,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,45,56,92,192,26,19,8,152,1,16,50,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,48,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,37,112,192,26,19,8,152,1,16,52,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,22,220,107,192,26,19,8,152,1,16,53,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,51,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,106,110,192,26,19,8,152,1,16,55,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,193,230,108,192,26,19,8,152,1,16,56,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,54,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,107,192,26,19,8,152,1,16,58,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,108,177,108,192,26,19,8,152,1,16,59,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,57,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,255,61,192,26,19,8,152,1,16,61,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,216,162,82,192,26,19,8,152,1,16,62,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,60,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,42,88,64,26,19,8,152,1,16,64,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,147,238,101,64,26,19,8,152,1,16,65,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,63,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,89,64,26,19,8,152,1,16,67,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,232,99,108,64,26,19,8,152,1,16,68,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,66,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,191,87,64,26,19,8,152,1,16,70,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,159,92,114,64,26,19,8,152,1,16,71,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,69,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,255,72,64,26,19,8,152,1,16,73,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,213,73,183,115,64,26,19,8,152,1,16,74,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,72,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,170,42,64,26,19,8,152,1,16,76,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,159,156,115,64,26,19,8,152,1,16,77,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,75,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,86,192,26,19,8,152,1,16,79,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,159,28,113,64,26,19,8,152,1,16,80,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,78,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,107,192,26,19,8,152,1,16,82,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,232,3,104,64,26,19,8,152,1,16,83,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,81,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,175,115,192,26,19,8,152,1,16,85,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,124,50,91,64,26,19,8,152,1,16,86,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,84,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,165,119,192,26,19,8,152,1,16,88,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,163,15,64,64,26,19,8,152,1,16,89,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,87,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,117,122,192,26,19,8,152,1,16,91,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,131,205,91,192,26,19,8,152,1,16,92,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,90,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,133,121,192,26,19,8,152,1,16,94,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,22,60,97,192,26,19,8,152,1,16,95,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,93,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,154,118,192,26,19,8,152,1,16,97,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,193,102,101,192,26,19,8,152,1,16,98,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,96,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,100,192,26,19,8,152,1,16,100,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,108,113,102,192,26,19,8,152,1,16,101,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,99,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,95,192,26,19,8,152,1,16,103,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,108,145,100,192,26,19,8,152,1,16,104,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,102,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,170,53,64,26,19,8,152,1,16,106,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,229,147,33,64,26,19,8,152,1,16,107,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,105,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,170,63,64,26,19,8,152,1,16,109,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,124,50,86,64,26,19,8,152,1,16,110,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,108,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,255,51,64,26,19,8,152,1,16,112,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,147,206,103,64,26,19,8,152,1,16,113,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,111,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,89,192,26,19,8,152,1,16,115,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,244,65,119,64,26,19,8,152,1,16,116,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,114,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,74,97,192,26,19,8,152,1,16,118,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,159,76,120,64,26,19,8,152,1,16,119,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,117,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,73,183,120,64,26,19,8,152,1,16,122,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,181,107,192,26,19,8,152,1,16,121,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,120,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,95,115,192,26,19,8,152,1,16,124,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,159,92,119,64,26,19,8,152,1,16,125,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,123,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,181,118,192,26,19,8,152,1,16,127,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,213,73,167,116,64,26,20,8,152,1,16,128,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,126,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,15,120,192,26,20,8,152,1,16,130,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,127,244,65,114,64,26,20,8,152,1,16,131,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,129,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,234,118,192,26,20,8,152,1,16,133,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,62,89,102,64,26,20,8,152,1,16,134,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,132,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,127,75,192,26,20,8,152,1,16,136,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,39,93,80,64,26,20,8,152,1,16,137,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,135,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,255,45,192,26,20,8,152,1,16,139,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,124,178,83,64,26,20,8,152,1,16,140,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,138,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,213,73,64,26,20,8,152,1,16,142,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,147,142,97,64,26,20,8,152,1,16,143,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,141,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,255,83,64,26,20,8,152,1,16,145,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,147,142,107,64,26,20,8,152,1,16,146,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,144,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,42,83,64,26,20,8,152,1,16,148,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,42,159,172,114,64,26,20,8,152,1,16,149,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,147,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,213,73,151,117,64,26,20,8,152,1,16,152,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,255,77,64,26,20,8,152,1,16,151,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,150,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,213,78,192,26,20,8,152,1,16,154,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,42,159,12,124,64,26,20,8,152,1,16,155,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,153,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,85,92,192,26,20,8,152,1,16,157,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,213,73,199,124,64,26,20,8,152,1,16,158,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,156,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,127,244,225,124,64,26,20,8,152,1,16,161,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,53,105,192,26,20,8,152,1,16,160,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,159,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,122,115,192,26,20,8,152,1,16,163,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,127,244,81,123,64,26,20,8,152,1,16,164,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,162,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,37,122,192,26,20,8,152,1,16,166,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,127,244,145,119,64,26,20,8,152,1,16,167,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,165,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,69,125,192,26,20,8,152,1,16,169,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,213,73,167,116,64,26,20,8,152,1,16,170,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,168,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,210,128,192,26,20,8,152,1,16,172,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,232,131,96,64,26,20,8,152,1,16,173,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,171,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,117,128,192,26,20,8,152,1,16,175,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,39,93,85,64,26,20,8,152,1,16,176,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,174,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,53,126,192,26,20,8,152,1,16,178,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,170,242,201,50,64,26,20,8,152,1,16,179,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,177,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,255,115,192,26,20,8,152,1,16,181,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,85,177,69,65,192,26,20,8,152,1,16,182,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,180,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,31,108,192,26,20,8,152,1,16,184,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,183,224,54,192,26,20,8,152,1,16,185,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,183,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,170,53,192,26,20,8,152,1,16,187,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,39,29,89,64,26,20,8,152,1,16,188,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,186,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,85,39,64,26,20,8,152,1,16,190,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,232,67,100,64,26,20,8,152,1,16,191,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,189,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,170,64,64,26,20,8,152,1,16,193,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,213,73,119,114,64,26,20,8,152,1,16,194,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,192,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,213,73,183,125,64,26,20,8,152,1,16,197,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,255,56,192,26,20,8,152,1,16,196,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,195,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,170,80,192,26,20,8,152,1,16,199,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,213,73,231,127,64,26,20,8,152,1,16,200,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,198,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,234,164,187,128,64,26,20,8,152,1,16,203,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,223,96,192,26,20,8,152,1,16,202,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,201,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,191,108,192,26,20,8,152,1,16,205,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,63,250,240,128,64,26,20,8,152,1,16,206,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,204,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,255,120,192,26,20,8,152,1,16,208,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,42,159,60,126,64,26,20,8,152,1,16,209,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,207,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,202,120,192,26,20,8,152,1,16,211,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,42,159,156,125,64,26,20,8,152,1,16,212,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,210,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,245,119,192,26,20,8,152,1,16,214,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,213,73,119,124,64,26,20,8,152,1,16,215,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,213,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,250,117,192,26,20,8,152,1,16,217,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,42,159,28,123,64,26,20,8,152,1,16,218,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,152,1,16,216,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,152,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,152,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,153,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,153,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,153,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,81,64,26,19,8,153,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,108,64,26,19,8,153,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,153,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,32,97,64,26,19,8,153,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,153,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,108,64,26,19,8,153,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,81,64,26,19,8,153,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,153,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,153,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,153,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,154,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,154,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,81,64,26,19,8,154,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,108,64,26,19,8,154,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,154,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,32,97,64,26,19,8,154,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,154,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,108,64,26,19,8,154,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,81,64,26,19,8,154,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,154,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,154,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,154,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,154,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,170,16,18,167,16,10,164,16,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,153,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,50,56,56,53,26,19,8,153,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,153,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,130,15,10,6,112,111,105,110,116,115,18,247,14,18,244,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,69,14,236,236,125,102,192,26,19,8,153,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,125,64,190,1,138,171,131,64,26,19,8,153,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,69,14,236,236,125,102,192,26,19,8,153,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,246,223,66,36,34,129,132,64,26,19,8,153,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,215,83,211,163,254,30,102,192,26,19,8,153,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,31,21,111,218,84,200,132,64,26,19,8,153,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,35,143,22,224,20,100,192,26,19,8,153,1,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,13,195,184,180,254,62,133,64,26,19,8,153,1,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,78,1,16,65,211,171,97,192,26,19,8,153,1,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,112,127,199,70,186,86,133,64,26,19,8,153,1,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,32,59,36,32,26,48,96,192,26,19,8,153,1,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,13,195,184,180,254,62,133,64,26,19,8,153,1,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,219,171,70,176,199,93,192,26,19,8,153,1,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,71,74,155,144,135,15,133,64,26,19,8,153,1,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,147,35,52,146,102,105,132,64,26,19,8,153,1,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,90,151,173,155,150,245,88,192,26,19,8,153,1,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,209,193,122,221,121,87,192,26,19,8,153,1,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,165,117,234,183,188,242,131,64,26,19,8,153,1,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,67,180,55,11,186,55,88,192,26,19,8,153,1,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,232,37,168,166,240,135,131,64,26,19,8,153,1,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,64,15,77,44,47,91,192,26,19,8,153,1,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,241,78,131,185,155,76,131,64,26,19,8,153,1,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,161,151,103,105,67,95,192,26,19,8,153,1,16,40,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,43,214,101,149,36,29,131,64,26,19,8,153,1,16,41,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,39,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,7,185,54,170,122,134,99,192,26,19,8,153,1,16,43,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,250,119,94,204,70,17,131,64,26,19,8,153,1,16,44,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,42,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,76,98,152,91,16,192,101,192,26,19,8,153,1,16,46,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,43,214,101,149,36,29,131,64,26,19,8,153,1,16,47,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,45,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,54,73,52,219,220,102,192,26,19,8,153,1,16,49,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,192,240,123,240,189,64,131,64,26,19,8,153,1,16,50,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,48,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,28,253,52,85,148,88,104,192,26,19,8,153,1,16,52,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,26,132,175,111,206,147,131,64,26,19,8,153,1,16,53,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,51,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,57,144,0,19,86,22,132,64,26,19,8,153,1,16,56,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,51,224,170,229,112,22,105,192,26,19,8,153,1,16,55,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,54,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,153,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,204,14,18,201,14,10,198,14,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,156,1,16,2,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,54,98,50,102,52,26,19,8,156,1,16,3,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,156,1,16,4,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,149,64,26,19,8,156,1,16,7,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,129,64,26,19,8,156,1,16,8,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,6,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,149,64,26,19,8,156,1,16,10,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,134,64,26,19,8,156,1,16,11,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,9,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,149,64,26,19,8,156,1,16,13,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,133,64,26,19,8,156,1,16,14,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,12,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,149,64,26,19,8,156,1,16,16,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,130,64,26,19,8,156,1,16,17,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,15,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,149,64,26,19,8,156,1,16,19,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,129,64,26,19,8,156,1,16,20,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,18,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,149,64,26,19,8,156,1,16,22,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,129,64,26,19,8,156,1,16,23,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,21,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,149,64,26,19,8,156,1,16,25,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,128,64,26,19,8,156,1,16,26,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,24,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,149,64,26,19,8,156,1,16,28,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,128,64,26,19,8,156,1,16,29,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,27,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,150,64,26,19,8,156,1,16,31,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,128,64,26,19,8,156,1,16,32,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,30,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,150,64,26,19,8,156,1,16,34,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,129,64,26,19,8,156,1,16,35,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,33,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,150,64,26,19,8,156,1,16,37,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,129,64,26,19,8,156,1,16,38,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,36,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,150,64,26,19,8,156,1,16,40,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,130,64,26,19,8,156,1,16,41,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,39,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,150,64,26,19,8,156,1,16,43,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,130,64,26,19,8,156,1,16,44,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,42,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,150,64,26,19,8,156,1,16,46,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,130,64,26,19,8,156,1,16,47,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,45,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,149,64,26,19,8,156,1,16,49,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,131,64,26,19,8,156,1,16,50,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,48,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,5,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,156,1,16,1,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,158,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,158,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,158,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,104,64,26,19,8,158,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,100,64,26,19,8,158,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,112,114,64,26,19,8,158,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,32,115,64,26,19,8,158,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,158,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,100,64,26,19,8,158,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,104,64,26,19,8,158,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,158,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,158,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,158,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,159,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,159,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,159,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,104,64,26,19,8,159,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,100,64,26,19,8,159,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,112,114,64,26,19,8,159,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,32,115,64,26,19,8,159,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,159,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,100,64,26,19,8,159,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,104,64,26,19,8,159,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,159,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,159,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,159,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,162,23,18,159,23,10,156,23,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,158,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,53,57,49,52,53,26,19,8,158,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,158,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,250,21,10,6,112,111,105,110,116,115,18,239,21,18,236,21,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,191,92,192,26,19,8,158,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,149,79,166,131,64,26,19,8,158,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,42,93,192,26,19,8,158,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,63,250,192,131,64,26,19,8,158,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,106,94,192,26,19,8,158,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,63,250,192,131,64,26,19,8,158,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,10,96,192,26,19,8,158,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,139,131,64,26,19,8,158,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,170,90,192,26,19,8,158,1,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,42,159,252,124,64,26,19,8,158,1,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,255,83,192,26,19,8,158,1,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,42,159,92,124,64,26,19,8,158,1,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,170,10,192,26,19,8,158,1,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,244,65,124,64,26,19,8,158,1,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,170,79,64,26,19,8,158,1,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,73,23,125,64,26,19,8,158,1,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,170,95,64,26,19,8,158,1,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,42,159,204,127,64,26,19,8,158,1,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,181,97,64,26,19,8,158,1,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,63,250,200,128,64,26,19,8,158,1,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,96,64,26,19,8,158,1,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,63,250,152,131,64,26,19,8,158,1,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,127,91,64,26,19,8,158,1,16,40,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,63,250,56,132,64,26,19,8,158,1,16,41,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,39,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,170,96,192,26,19,8,158,1,16,43,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,187,133,64,26,19,8,158,1,16,44,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,42,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,223,101,192,26,19,8,158,1,16,46,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,149,79,134,133,64,26,19,8,158,1,16,47,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,45,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,191,103,192,26,19,8,158,1,16,49,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,243,132,64,26,19,8,158,1,16,50,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,48,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,74,102,192,26,19,8,158,1,16,52,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,123,132,64,26,19,8,158,1,16,53,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,51,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,95,192,26,19,8,158,1,16,55,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,149,79,126,131,64,26,19,8,158,1,16,56,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,54,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,149,83,64,26,19,8,158,1,16,58,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,155,130,64,26,19,8,158,1,16,59,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,57,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,202,99,64,26,19,8,158,1,16,61,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,63,250,168,130,64,26,19,8,158,1,16,62,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,60,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,181,107,64,26,19,8,158,1,16,64,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,149,79,6,131,64,26,19,8,158,1,16,65,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,63,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,159,110,64,26,19,8,158,1,16,67,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,99,131,64,26,19,8,158,1,16,68,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,66,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,139,131,64,26,19,8,158,1,16,71,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,110,64,26,19,8,158,1,16,70,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,69,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,159,110,64,26,19,8,158,1,16,73,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,63,250,152,131,64,26,19,8,158,1,16,74,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,72,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,149,79,246,131,64,26,19,8,158,1,16,77,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,74,107,64,26,19,8,158,1,16,76,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,75,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,85,103,64,26,19,8,158,1,16,79,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,63,250,56,132,64,26,19,8,158,1,16,80,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,78,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,158,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,158,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,50,56,56,53,26,19,8,158,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,158,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,166,150,6,42,146,106,192,26,19,8,158,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,149,28,216,84,200,13,135,64,26,19,8,158,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,158,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,72,16,45,123,182,34,192,26,19,8,158,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,149,28,216,84,200,13,135,64,26,19,8,158,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,158,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,61,121,113,214,17,126,31,192,26,19,8,158,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,100,190,208,139,234,1,135,64,26,19,8,158,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,158,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,158,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,158,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,162,1,16,2,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,54,98,50,102,52,26,19,8,162,1,16,3,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,162,1,16,4,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,152,64,26,19,8,162,1,16,7,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,132,64,26,19,8,162,1,16,8,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,162,1,16,6,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,152,64,26,19,8,162,1,16,10,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,135,64,26,19,8,162,1,16,11,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,162,1,16,9,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,135,64,26,19,8,162,1,16,14,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,152,64,26,19,8,162,1,16,13,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,162,1,16,12,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,162,1,16,5,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,162,1,16,1,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,162,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,128,119,64,26,19,8,162,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,240,115,64,26,19,8,162,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,162,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,162,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,162,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,162,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,162,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,162,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,162,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,162,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,162,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,162,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,164,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,164,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,164,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,164,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,164,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,128,119,64,26,19,8,164,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,240,115,64,26,19,8,164,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,164,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,164,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,164,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,164,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,164,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,164,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,162,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,50,56,56,53,26,19,8,162,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,162,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,21,192,37,247,75,92,192,26,19,8,162,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,190,81,4,11,251,84,135,64,26,19,8,162,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,162,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,205,6,251,109,229,170,92,192,26,19,8,162,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,33,14,19,157,182,108,135,64,26,19,8,162,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,162,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,17,181,0,58,194,135,138,64,26,19,8,162,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,205,6,251,109,229,170,92,192,26,19,8,162,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,162,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,162,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,162,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,164,1,16,2,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,54,98,50,102,52,26,19,8,164,1,16,3,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,164,1,16,4,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,152,64,26,19,8,164,1,16,7,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,129,64,26,19,8,164,1,16,8,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,164,1,16,6,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,152,64,26,19,8,164,1,16,10,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,129,64,26,19,8,164,1,16,11,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,164,1,16,9,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,164,1,16,5,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,164,1,16,1,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,246,5,18,243,5,10,240,5,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,54,98,50,102,52,26,19,8,167,1,16,3,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,167,1,16,4,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,154,64,26,19,8,167,1,16,7,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,131,64,26,19,8,167,1,16,8,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,167,1,16,6,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,153,64,26,19,8,167,1,16,10,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,131,64,26,19,8,167,1,16,11,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,167,1,16,9,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,152,64,26,19,8,167,1,16,13,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,132,64,26,19,8,167,1,16,14,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,167,1,16,12,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,152,64,26,19,8,167,1,16,16,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,133,64,26,19,8,167,1,16,17,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,167,1,16,15,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,154,64,26,19,8,167,1,16,19,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,134,64,26,19,8,167,1,16,20,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,167,1,16,18,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,167,1,16,5,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,167,1,16,2,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,167,1,16,1,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,168,1,16,2,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,54,98,50,102,52,26,19,8,168,1,16,3,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,168,1,16,4,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,155,64,26,19,8,168,1,16,7,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,129,64,26,19,8,168,1,16,8,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,168,1,16,6,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,154,64,26,19,8,168,1,16,10,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,136,64,26,19,8,168,1,16,11,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,168,1,16,9,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,154,64,26,19,8,168,1,16,13,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,135,64,26,19,8,168,1,16,14,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,168,1,16,12,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,168,1,16,5,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,168,1,16,1,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,167,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,167,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,167,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,167,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,167,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,167,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,167,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,167,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,167,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,167,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,167,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,167,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,167,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,168,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,168,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,168,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,168,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,168,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,168,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,168,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,168,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,168,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,168,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,168,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,168,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,168,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,249,46,18,246,46,10,243,46,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,167,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,209,45,10,6,112,111,105,110,116,115,18,198,45,18,195,45,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,106,89,64,26,19,8,167,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,149,79,238,134,64,26,19,8,167,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,127,86,64,26,19,8,167,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,51,134,64,26,19,8,167,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,106,89,64,26,19,8,167,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,123,132,64,26,19,8,167,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,42,104,64,26,19,8,167,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,149,79,62,130,64,26,19,8,167,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,191,108,64,26,19,8,167,1,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,149,79,22,130,64,26,19,8,167,1,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,31,114,64,26,19,8,167,1,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,149,79,62,130,64,26,19,8,167,1,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,149,79,166,131,64,26,19,8,167,1,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,74,118,64,26,19,8,167,1,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,127,118,64,26,19,8,167,1,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,123,132,64,26,19,8,167,1,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,211,134,64,26,19,8,167,1,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,229,115,64,26,19,8,167,1,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,31,114,64,26,19,8,167,1,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,63,250,48,135,64,26,19,8,167,1,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,202,104,64,26,19,8,167,1,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,195,135,64,26,19,8,167,1,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,68,192,26,19,8,167,1,16,40,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,149,79,78,134,64,26,19,8,167,1,16,41,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,39,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,42,93,192,26,19,8,167,1,16,43,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,149,79,230,132,64,26,19,8,167,1,16,44,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,42,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,101,192,26,19,8,167,1,16,46,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,59,131,64,26,19,8,167,1,16,47,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,45,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,170,101,192,26,19,8,167,1,16,49,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,35,130,64,26,19,8,167,1,16,50,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,48,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,127,97,192,26,19,8,167,1,16,52,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,234,164,147,128,64,26,19,8,167,1,16,53,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,51,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,244,161,118,64,26,19,8,167,1,16,56,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,117,111,64,26,19,8,167,1,16,55,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,54,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,69,120,64,26,19,8,167,1,16,58,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,159,204,117,64,26,19,8,167,1,16,59,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,57,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,127,129,64,26,19,8,167,1,16,61,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,73,55,118,64,26,19,8,167,1,16,62,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,60,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,23,133,64,26,19,8,167,1,16,64,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,244,49,120,64,26,19,8,167,1,16,65,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,63,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,181,134,64,26,19,8,167,1,16,67,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,244,177,122,64,26,19,8,167,1,16,68,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,66,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,117,101,64,26,19,8,167,1,16,70,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,244,17,112,64,26,19,8,167,1,16,71,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,69,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,106,94,64,26,19,8,167,1,16,73,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,147,206,103,64,26,19,8,167,1,16,74,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,72,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,42,93,64,26,19,8,167,1,16,76,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,124,242,94,64,26,19,8,167,1,16,77,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,75,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,13,54,63,192,26,19,8,167,1,16,80,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,113,64,26,19,8,167,1,16,79,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,78,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,143,122,64,26,19,8,167,1,16,82,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,131,13,83,192,26,19,8,167,1,16,83,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,81,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,162,136,64,26,19,8,167,1,16,85,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,131,205,86,192,26,19,8,167,1,16,86,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,84,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,91,112,79,192,26,19,8,167,1,16,89,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,98,140,64,26,19,8,167,1,16,88,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,87,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,63,250,0,64,26,19,8,167,1,16,92,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,210,143,64,26,19,8,167,1,16,91,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,90,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,143,144,64,26,19,8,167,1,16,94,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,147,174,100,64,26,19,8,167,1,16,95,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,93,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,10,144,64,26,19,8,167,1,16,97,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,232,131,106,64,26,19,8,167,1,16,98,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,96,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,2,141,64,26,19,8,167,1,16,100,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,213,73,135,113,64,26,19,8,167,1,16,101,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,99,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,178,135,64,26,19,8,167,1,16,103,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,159,60,116,64,26,19,8,167,1,16,104,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,102,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,5,130,64,26,19,8,167,1,16,106,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,159,60,116,64,26,19,8,167,1,16,107,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,105,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,90,122,64,26,19,8,167,1,16,109,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,213,73,199,114,64,26,19,8,167,1,16,110,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,108,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,149,93,64,26,19,8,167,1,16,112,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,62,121,100,64,26,19,8,167,1,16,113,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,111,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,90,64,26,19,8,167,1,16,115,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,62,89,97,64,26,19,8,167,1,16,116,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,114,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,96,64,26,19,8,167,1,16,118,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,209,7,87,64,26,19,8,167,1,16,119,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,117,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,42,109,64,26,19,8,167,1,16,121,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,242,201,50,64,26,19,8,167,1,16,122,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,120,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,177,69,75,192,26,19,8,167,1,16,125,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,159,121,64,26,19,8,167,1,16,124,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,123,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,45,130,64,26,19,8,167,1,16,127,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,84,85,85,85,131,13,88,192,26,20,8,167,1,16,128,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,126,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,143,143,64,26,20,8,167,1,16,130,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,45,120,88,192,26,20,8,167,1,16,131,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,167,1,16,129,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,254,145,64,26,20,8,167,1,16,133,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,255,91,112,74,192,26,20,8,167,1,16,134,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,167,1,16,132,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,210,144,64,26,20,8,167,1,16,136,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,85,85,85,149,79,62,130,64,26,20,8,167,1,16,137,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,167,1,16,135,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,239,142,64,26,20,8,167,1,16,139,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,63,250,32,131,64,26,20,8,167,1,16,140,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,167,1,16,138,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,170,170,170,170,122,141,64,26,20,8,167,1,16,142,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,234,164,19,131,64,26,20,8,167,1,16,143,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,167,1,16,141,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,135,141,64,26,20,8,167,1,16,145,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,234,164,235,130,64,26,20,8,167,1,16,146,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,167,1,16,144,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,13,142,64,26,20,8,167,1,16,148,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,170,170,170,234,164,75,130,64,26,20,8,167,1,16,149,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,167,1,16,147,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,145,64,26,20,8,167,1,16,151,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,42,159,92,124,64,26,20,8,167,1,16,152,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,167,1,16,150,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,170,170,170,170,62,147,64,26,20,8,167,1,16,154,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,255,255,255,127,244,145,119,64,26,20,8,167,1,16,155,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,167,1,16,153,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,255,255,255,255,51,151,64,26,20,8,167,1,16,157,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,147,14,110,64,26,20,8,167,1,16,158,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,167,1,16,156,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,85,85,85,85,205,151,64,26,20,8,167,1,16,160,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,41,10,1,121,18,36,26,34,8,4,18,8,169,170,170,170,147,46,108,64,26,20,8,167,1,16,161,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,20,8,167,1,16,159,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,167,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,53,57,49,52,53,26,19,8,167,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,167,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,238,12,18,235,12,10,232,12,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,50,56,56,53,26,19,8,170,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,170,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,70,29,207,28,242,202,53,64,26,19,8,170,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,179,47,133,53,238,235,132,64,26,19,8,170,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,87,227,251,56,79,52,64,26,19,8,170,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,202,18,251,197,202,169,133,64,26,19,8,170,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,227,186,61,171,70,55,64,26,19,8,170,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,243,71,39,124,253,240,133,64,26,19,8,170,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,138,140,34,58,146,65,64,26,19,8,170,1,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,27,125,83,50,48,56,134,64,26,19,8,170,1,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,53,7,87,70,151,241,80,64,26,19,8,170,1,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,77,219,90,251,13,68,134,64,26,19,8,170,1,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,98,205,66,103,80,109,82,64,26,19,8,170,1,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,184,192,68,160,116,32,134,64,26,19,8,170,1,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,54,248,228,106,49,134,133,64,26,19,8,170,1,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,213,60,144,57,159,34,86,64,26,19,8,170,1,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,213,60,144,57,159,34,86,64,26,19,8,170,1,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,220,100,177,235,32,51,133,64,26,19,8,170,1,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,89,26,169,194,100,85,64,26,19,8,170,1,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,121,168,162,89,101,27,133,64,26,19,8,170,1,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,36,225,181,186,51,80,64,26,19,8,170,1,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,80,115,118,163,50,212,132,64,26,19,8,170,1,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,89,194,85,226,72,177,62,64,26,19,8,170,1,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,80,115,118,163,50,212,132,64,26,19,8,170,1,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,87,227,251,56,79,52,64,26,19,8,170,1,16,40,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,179,47,133,53,238,235,132,64,26,19,8,170,1,16,41,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,39,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,29,9,64,50,27,184,47,64,26,19,8,170,1,16,43,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,71,74,155,144,135,15,133,64,26,19,8,170,1,16,44,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,42,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,170,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,195,8,18,192,8,10,189,8,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,155,64,26,19,8,173,1,16,7,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,132,64,26,19,8,173,1,16,8,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,173,1,16,6,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,132,64,26,19,8,173,1,16,11,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,155,64,26,19,8,173,1,16,10,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,173,1,16,9,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,155,64,26,19,8,173,1,16,13,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,133,64,26,19,8,173,1,16,14,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,173,1,16,12,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,154,64,26,19,8,173,1,16,16,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,134,64,26,19,8,173,1,16,17,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,173,1,16,15,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,154,64,26,19,8,173,1,16,19,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,135,64,26,19,8,173,1,16,20,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,173,1,16,18,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,155,64,26,19,8,173,1,16,22,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,135,64,26,19,8,173,1,16,23,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,173,1,16,21,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,135,64,26,19,8,173,1,16,26,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,155,64,26,19,8,173,1,16,25,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,173,1,16,24,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,135,64,26,19,8,173,1,16,29,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,155,64,26,19,8,173,1,16,28,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,173,1,16,27,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,173,1,16,5,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,173,1,16,2,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,54,98,50,102,52,26,19,8,173,1,16,3,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,173,1,16,4,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,173,1,16,1,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,173,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,50,56,56,53,26,19,8,173,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,173,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,134,177,54,251,62,72,64,26,19,8,173,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,1,2,194,249,46,234,134,64,26,19,8,173,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,173,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,134,177,54,251,62,72,64,26,19,8,173,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,213,52,122,155,215,18,136,64,26,19,8,173,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,173,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,173,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,173,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,153,17,18,150,17,10,147,17,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,175,1,16,2,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,54,98,50,102,52,26,19,8,175,1,16,3,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,175,1,16,4,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,241,15,10,6,112,111,105,110,116,115,18,230,15,18,227,15,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,155,64,26,19,8,175,1,16,7,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,135,64,26,19,8,175,1,16,8,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,6,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,156,64,26,19,8,175,1,16,10,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,134,64,26,19,8,175,1,16,11,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,9,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,133,64,26,19,8,175,1,16,14,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,157,64,26,19,8,175,1,16,13,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,12,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,133,64,26,19,8,175,1,16,17,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,157,64,26,19,8,175,1,16,16,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,15,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,157,64,26,19,8,175,1,16,19,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,132,64,26,19,8,175,1,16,20,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,18,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,157,64,26,19,8,175,1,16,22,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,132,64,26,19,8,175,1,16,23,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,21,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,156,64,26,19,8,175,1,16,25,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,132,64,26,19,8,175,1,16,26,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,24,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,156,64,26,19,8,175,1,16,28,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,132,64,26,19,8,175,1,16,29,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,27,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,156,64,26,19,8,175,1,16,31,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,132,64,26,19,8,175,1,16,32,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,30,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,156,64,26,19,8,175,1,16,34,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,132,64,26,19,8,175,1,16,35,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,33,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,155,64,26,19,8,175,1,16,37,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,133,64,26,19,8,175,1,16,38,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,36,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,134,64,26,19,8,175,1,16,41,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,155,64,26,19,8,175,1,16,40,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,39,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,134,64,26,19,8,175,1,16,44,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,155,64,26,19,8,175,1,16,43,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,42,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,135,64,26,19,8,175,1,16,47,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,156,64,26,19,8,175,1,16,46,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,45,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,156,64,26,19,8,175,1,16,49,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,135,64,26,19,8,175,1,16,50,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,48,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,135,64,26,19,8,175,1,16,53,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,156,64,26,19,8,175,1,16,52,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,51,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,157,64,26,19,8,175,1,16,55,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,135,64,26,19,8,175,1,16,56,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,54,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,157,64,26,19,8,175,1,16,58,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,135,64,26,19,8,175,1,16,59,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,57,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,5,26,12,98,255,26,206,217,176,234,142,137,48,115,242,18,19,8,175,1,16,1,26,12,98,255,26,206,217,176,234,142,137,48,115,242,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,175,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,175,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,175,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,128,116,64,26,19,8,175,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,175,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,64,26,19,8,175,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,192,26,19,8,175,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,175,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,64,26,19,8,175,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,192,26,19,8,175,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,175,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,175,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,175,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,176,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,176,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,176,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,192,26,19,8,176,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,128,116,64,26,19,8,176,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,176,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,64,26,19,8,176,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,176,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,192,26,19,8,176,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,64,26,19,8,176,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,176,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,176,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,176,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,50,56,56,53,26,19,8,177,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,177,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,125,89,212,30,255,9,255,191,26,19,8,177,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,154,173,151,191,78,66,136,64,26,19,8,177,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,177,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,236,31,6,202,123,224,86,64,26,19,8,177,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,154,173,151,191,78,66,136,64,26,19,8,177,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,177,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,177,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,177,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,177,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,255,11,18,252,11,10,249,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,179,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,100,97,98,51,101,26,19,8,179,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,179,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,215,10,10,6,112,111,105,110,116,115,18,204,10,18,201,10,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,127,64,26,19,8,179,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,99,64,26,19,8,179,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,179,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,128,64,26,19,8,179,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,104,64,26,19,8,179,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,179,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,128,64,26,19,8,179,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,107,64,26,19,8,179,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,179,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,128,64,26,19,8,179,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,179,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,179,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,128,64,26,19,8,179,1,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,109,64,26,19,8,179,1,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,179,1,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,106,64,26,19,8,179,1,16,23,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,126,64,26,19,8,179,1,16,22,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,179,1,16,21,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,126,64,26,19,8,179,1,16,25,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,179,1,16,26,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,179,1,16,24,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,127,64,26,19,8,179,1,16,28,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,104,64,26,19,8,179,1,16,29,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,179,1,16,27,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,101,64,26,19,8,179,1,16,32,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,128,64,26,19,8,179,1,16,31,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,179,1,16,30,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,127,64,26,19,8,179,1,16,34,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,103,64,26,19,8,179,1,16,35,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,179,1,16,33,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,127,64,26,19,8,179,1,16,37,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,103,64,26,19,8,179,1,16,38,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,179,1,16,36,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,128,64,26,19,8,179,1,16,40,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,102,64,26,19,8,179,1,16,41,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,179,1,16,39,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,179,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,179,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,180,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,180,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,180,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,76,192,26,19,8,180,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,100,192,26,19,8,180,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,176,115,64,26,19,8,180,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,32,101,64,26,19,8,180,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,180,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,76,192,26,19,8,180,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,100,192,26,19,8,180,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,180,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,180,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,180,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,181,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,181,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,181,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,176,115,64,26,19,8,181,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,32,101,64,26,19,8,181,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,76,192,26,19,8,181,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,100,192,26,19,8,181,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,181,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,76,192,26,19,8,181,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,100,192,26,19,8,181,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,181,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,181,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,181,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,182,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,50,56,56,53,26,19,8,182,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,182,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,84,1,144,87,66,96,64,26,19,8,182,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,121,168,162,89,101,27,133,64,26,19,8,182,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,182,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,204,30,180,206,113,96,64,26,19,8,182,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,121,168,162,89,101,27,133,64,26,19,8,182,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,182,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,204,30,180,206,113,96,64,26,19,8,182,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,142,236,160,4,127,237,137,64,26,19,8,182,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,182,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,150,69,60,216,69,161,96,64,26,19,8,182,1,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,241,168,175,150,58,5,138,64,26,19,8,182,1,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,182,1,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,182,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,182,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,183,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,114,192,26,19,8,183,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,72,192,26,19,8,183,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,80,119,64,26,19,8,183,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,64,109,64,26,19,8,183,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,183,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,72,192,26,19,8,183,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,114,192,26,19,8,183,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,183,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,183,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,183,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,183,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,183,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,184,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,184,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,184,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,64,109,64,26,19,8,184,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,114,192,26,19,8,184,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,72,192,26,19,8,184,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,80,119,64,26,19,8,184,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,184,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,72,192,26,19,8,184,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,114,192,26,19,8,184,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,184,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,184,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,184,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,185,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,50,56,56,53,26,19,8,185,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,185,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,204,30,180,206,113,96,64,26,19,8,185,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,131,202,33,47,114,132,135,64,26,19,8,185,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,185,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,147,36,79,50,193,107,64,26,19,8,185,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,131,202,33,47,114,132,135,64,26,19,8,185,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,185,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,185,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,185,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,186,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,186,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,186,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,64,99,64,26,19,8,186,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,192,26,19,8,186,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,186,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,144,115,64,26,19,8,186,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,186,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,186,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,192,26,19,8,186,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,186,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,186,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,186,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,187,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,192,26,19,8,187,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,187,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,187,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,187,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,187,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,187,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,192,26,19,8,187,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,187,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,144,115,64,26,19,8,187,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,64,99,64,26,19,8,187,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,187,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,187,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,187,15,18,184,15,10,181,15,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,188,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,50,56,56,53,26,19,8,188,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,188,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,147,14,10,6,112,111,105,110,116,115,18,136,14,18,133,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,201,216,116,153,38,178,76,64,26,19,8,188,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,11,36,65,207,59,83,137,64,26,19,8,188,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,61,130,72,152,25,95,137,64,26,19,8,188,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,201,216,116,153,38,178,76,64,26,19,8,188,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,40,163,59,166,30,129,71,64,26,19,8,188,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,110,224,79,97,247,106,137,64,26,19,8,188,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,249,217,244,136,71,69,64,26,19,8,188,1,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,151,21,124,23,42,178,137,64,26,19,8,188,1,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,165,207,22,149,91,171,138,64,26,19,8,188,1,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,205,22,100,100,172,137,68,64,26,19,8,188,1,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,105,39,199,215,252,72,64,26,19,8,188,1,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,255,98,74,20,108,254,138,64,26,19,8,188,1,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,178,245,254,8,74,244,75,64,26,19,8,188,1,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,98,31,89,166,39,22,139,64,26,19,8,188,1,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,130,214,74,188,235,78,64,26,19,8,188,1,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,147,125,96,111,5,34,139,64,26,19,8,188,1,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,98,205,66,103,80,109,82,64,26,19,8,188,1,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,98,31,89,166,39,22,139,64,26,19,8,188,1,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,147,46,136,9,233,83,64,26,19,8,188,1,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,255,98,74,20,108,254,138,64,26,19,8,188,1,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,74,75,85,241,176,195,85,64,26,19,8,188,1,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,214,45,30,94,57,183,138,64,26,19,8,188,1,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,46,203,129,141,129,86,64,26,19,8,188,1,16,40,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,124,154,234,222,40,100,138,64,26,19,8,188,1,16,41,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,39,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,46,203,129,141,129,86,64,26,19,8,188,1,16,43,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,241,168,175,150,58,5,138,64,26,19,8,188,1,16,44,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,42,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,167,118,164,24,230,166,84,64,26,19,8,188,1,16,46,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,250,209,138,169,229,201,137,64,26,19,8,188,1,16,47,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,45,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,248,145,142,133,80,81,64,26,19,8,188,1,16,49,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,52,89,109,133,110,154,137,64,26,19,8,188,1,16,50,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,48,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,134,177,54,251,62,72,64,26,19,8,188,1,16,52,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,160,62,87,42,213,118,137,64,26,19,8,188,1,16,53,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,51,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,161,10,18,158,10,10,155,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,189,1,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,52,53,100,51,26,19,8,189,1,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,189,1,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,146,64,26,19,8,189,1,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,105,64,26,19,8,189,1,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,189,1,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,111,64,26,19,8,189,1,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,146,64,26,19,8,189,1,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,189,1,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,147,64,26,19,8,189,1,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,109,64,26,19,8,189,1,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,189,1,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,147,64,26,19,8,189,1,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,108,64,26,19,8,189,1,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,189,1,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,146,64,26,19,8,189,1,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,108,64,26,19,8,189,1,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,189,1,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,108,64,26,19,8,189,1,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,146,64,26,19,8,189,1,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,189,1,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,146,64,26,19,8,189,1,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,109,64,26,19,8,189,1,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,189,1,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,110,64,26,19,8,189,1,16,29,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,147,64,26,19,8,189,1,16,28,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,189,1,16,27,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,109,64,26,19,8,189,1,16,32,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,147,64,26,19,8,189,1,16,31,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,189,1,16,30,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,146,64,26,19,8,189,1,16,34,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,106,64,26,19,8,189,1,16,35,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,189,1,16,33,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,189,1,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,189,1,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,189,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,100,97,98,51,101,26,19,8,189,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,189,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,125,64,26,19,8,189,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,110,64,26,19,8,189,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,189,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,125,64,26,19,8,189,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,110,64,26,19,8,189,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,189,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,124,64,26,19,8,189,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,111,64,26,19,8,189,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,189,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,124,64,26,19,8,189,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,110,64,26,19,8,189,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,189,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,189,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,189,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,135,5,18,132,5,10,129,5,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,100,97,98,51,101,26,19,8,191,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,191,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,125,64,26,19,8,191,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,110,64,26,19,8,191,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,191,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,125,64,26,19,8,191,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,111,64,26,19,8,191,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,191,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,125,64,26,19,8,191,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,110,64,26,19,8,191,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,191,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,125,64,26,19,8,191,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,110,64,26,19,8,191,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,191,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,191,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,191,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,191,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,192,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,192,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,192,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,192,26,19,8,192,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,192,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,144,115,64,26,19,8,192,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,64,99,64,26,19,8,192,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,192,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,192,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,192,26,19,8,192,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,192,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,192,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,192,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,193,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,193,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,193,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,144,115,64,26,19,8,193,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,64,99,64,26,19,8,193,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,192,26,19,8,193,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,193,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,193,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,193,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,192,26,19,8,193,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,193,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,193,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,193,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,194,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,194,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,194,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,192,26,19,8,194,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,194,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,144,115,64,26,19,8,194,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,64,99,64,26,19,8,194,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,194,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,194,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,192,26,19,8,194,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,194,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,194,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,194,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,153,17,18,150,17,10,147,17,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,195,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,98,99,57,53,26,19,8,195,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,195,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,241,15,10,6,112,111,105,110,116,115,18,230,15,18,227,15,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,195,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,133,64,26,19,8,195,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,195,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,139,64,26,19,8,195,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,137,64,26,19,8,195,1,16,14,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,108,64,26,19,8,195,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,109,64,26,19,8,195,1,16,16,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,137,64,26,19,8,195,1,16,17,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,15,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,110,64,26,19,8,195,1,16,19,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,136,64,26,19,8,195,1,16,20,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,18,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,136,64,26,19,8,195,1,16,23,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,112,64,26,19,8,195,1,16,22,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,21,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,113,64,26,19,8,195,1,16,25,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,136,64,26,19,8,195,1,16,26,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,24,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,136,64,26,19,8,195,1,16,29,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,113,64,26,19,8,195,1,16,28,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,27,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,136,64,26,19,8,195,1,16,32,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,64,26,19,8,195,1,16,31,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,30,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,114,64,26,19,8,195,1,16,34,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,136,64,26,19,8,195,1,16,35,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,33,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,114,64,26,19,8,195,1,16,37,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,137,64,26,19,8,195,1,16,38,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,36,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,114,64,26,19,8,195,1,16,40,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,137,64,26,19,8,195,1,16,41,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,39,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,114,64,26,19,8,195,1,16,43,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,138,64,26,19,8,195,1,16,44,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,42,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,114,64,26,19,8,195,1,16,46,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,138,64,26,19,8,195,1,16,47,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,45,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,138,64,26,19,8,195,1,16,50,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,113,64,26,19,8,195,1,16,49,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,48,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,138,64,26,19,8,195,1,16,53,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,110,64,26,19,8,195,1,16,52,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,51,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,108,64,26,19,8,195,1,16,55,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,138,64,26,19,8,195,1,16,56,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,54,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,107,64,26,19,8,195,1,16,58,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,138,64,26,19,8,195,1,16,59,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,57,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,195,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,161,10,18,158,10,10,155,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,196,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,100,97,98,51,101,26,19,8,196,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,196,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,110,64,26,19,8,196,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,128,64,26,19,8,196,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,196,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,128,64,26,19,8,196,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,110,64,26,19,8,196,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,196,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,128,64,26,19,8,196,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,110,64,26,19,8,196,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,196,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,110,64,26,19,8,196,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,128,64,26,19,8,196,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,196,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,128,64,26,19,8,196,1,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,110,64,26,19,8,196,1,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,196,1,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,128,64,26,19,8,196,1,16,22,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,111,64,26,19,8,196,1,16,23,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,196,1,16,21,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,128,64,26,19,8,196,1,16,25,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,110,64,26,19,8,196,1,16,26,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,196,1,16,24,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,128,64,26,19,8,196,1,16,28,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,111,64,26,19,8,196,1,16,29,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,196,1,16,27,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,111,64,26,19,8,196,1,16,32,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,129,64,26,19,8,196,1,16,31,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,196,1,16,30,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,129,64,26,19,8,196,1,16,34,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,112,64,26,19,8,196,1,16,35,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,196,1,16,33,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,196,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,196,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,145,86,18,142,86,10,139,86,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,197,1,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,54,101,97,98,54,26,19,8,197,1,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,197,1,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,233,84,10,6,112,111,105,110,116,115,18,222,84,18,219,84,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,127,64,26,19,8,197,1,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,110,64,26,19,8,197,1,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,128,64,26,19,8,197,1,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,109,64,26,19,8,197,1,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,129,64,26,19,8,197,1,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,108,64,26,19,8,197,1,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,132,64,26,19,8,197,1,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,108,64,26,19,8,197,1,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,133,64,26,19,8,197,1,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,110,64,26,19,8,197,1,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,134,64,26,19,8,197,1,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,113,64,26,19,8,197,1,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,131,64,26,19,8,197,1,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,119,64,26,19,8,197,1,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,125,64,26,19,8,197,1,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,121,64,26,19,8,197,1,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,124,64,26,19,8,197,1,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,121,64,26,19,8,197,1,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,122,64,26,19,8,197,1,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,120,64,26,19,8,197,1,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,120,64,26,19,8,197,1,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,117,64,26,19,8,197,1,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,120,64,26,19,8,197,1,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,116,64,26,19,8,197,1,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,113,64,26,19,8,197,1,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,120,64,26,19,8,197,1,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,110,64,26,19,8,197,1,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,122,64,26,19,8,197,1,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,125,64,26,19,8,197,1,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,106,64,26,19,8,197,1,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,127,64,26,19,8,197,1,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,105,64,26,19,8,197,1,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,129,64,26,19,8,197,1,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,106,64,26,19,8,197,1,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,130,64,26,19,8,197,1,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,109,64,26,19,8,197,1,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,130,64,26,19,8,197,1,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,111,64,26,19,8,197,1,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,130,64,26,19,8,197,1,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,114,64,26,19,8,197,1,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,129,64,26,19,8,197,1,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,116,64,26,19,8,197,1,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,127,64,26,19,8,197,1,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,119,64,26,19,8,197,1,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,125,64,26,19,8,197,1,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,118,64,26,19,8,197,1,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,124,64,26,19,8,197,1,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,117,64,26,19,8,197,1,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,123,64,26,19,8,197,1,16,79,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,64,26,19,8,197,1,16,80,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,78,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,197,1,16,82,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,197,1,16,83,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,81,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,124,64,26,19,8,197,1,16,85,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,100,64,26,19,8,197,1,16,86,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,84,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,125,64,26,19,8,197,1,16,88,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,98,64,26,19,8,197,1,16,89,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,87,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,128,64,26,19,8,197,1,16,91,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,94,64,26,19,8,197,1,16,92,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,90,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,128,64,26,19,8,197,1,16,94,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,94,64,26,19,8,197,1,16,95,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,93,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,94,64,26,19,8,197,1,16,98,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,129,64,26,19,8,197,1,16,97,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,96,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,131,64,26,19,8,197,1,16,100,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,96,64,26,19,8,197,1,16,101,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,99,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,132,64,26,19,8,197,1,16,103,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,97,64,26,19,8,197,1,16,104,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,102,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,132,64,26,19,8,197,1,16,106,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,101,64,26,19,8,197,1,16,107,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,105,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,133,64,26,19,8,197,1,16,109,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,105,64,26,19,8,197,1,16,110,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,108,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,133,64,26,19,8,197,1,16,112,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,111,64,26,19,8,197,1,16,113,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,111,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,133,64,26,19,8,197,1,16,115,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,114,64,26,19,8,197,1,16,116,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,114,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,132,64,26,19,8,197,1,16,118,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,117,64,26,19,8,197,1,16,119,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,117,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,130,64,26,19,8,197,1,16,121,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,120,64,26,19,8,197,1,16,122,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,120,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,127,64,26,19,8,197,1,16,124,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,122,64,26,19,8,197,1,16,125,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,123,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,110,18,108,10,106,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,122,64,26,20,8,197,1,16,128,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,122,64,26,19,8,197,1,16,127,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,126,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,118,64,26,20,8,197,1,16,130,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,122,64,26,20,8,197,1,16,131,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,129,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,116,64,26,20,8,197,1,16,133,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,121,64,26,20,8,197,1,16,134,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,132,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,114,64,26,20,8,197,1,16,136,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,119,64,26,20,8,197,1,16,137,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,135,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,114,64,26,20,8,197,1,16,140,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,114,64,26,20,8,197,1,16,139,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,138,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,116,64,26,20,8,197,1,16,142,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,108,64,26,20,8,197,1,16,143,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,141,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,119,64,26,20,8,197,1,16,145,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,102,64,26,20,8,197,1,16,146,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,144,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,125,64,26,20,8,197,1,16,148,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,96,64,26,20,8,197,1,16,149,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,147,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,128,64,26,20,8,197,1,16,151,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,90,64,26,20,8,197,1,16,152,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,150,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,132,64,26,20,8,197,1,16,154,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,87,64,26,20,8,197,1,16,155,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,153,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,133,64,26,20,8,197,1,16,157,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,88,64,26,20,8,197,1,16,158,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,156,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,135,64,26,20,8,197,1,16,160,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,92,64,26,20,8,197,1,16,161,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,159,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,136,64,26,20,8,197,1,16,163,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,97,64,26,20,8,197,1,16,164,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,162,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,137,64,26,20,8,197,1,16,166,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,102,64,26,20,8,197,1,16,167,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,165,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,108,64,26,20,8,197,1,16,170,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,137,64,26,20,8,197,1,16,169,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,168,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,135,64,26,20,8,197,1,16,172,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,114,64,26,20,8,197,1,16,173,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,171,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,133,64,26,20,8,197,1,16,175,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,118,64,26,20,8,197,1,16,176,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,174,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,128,64,26,20,8,197,1,16,178,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,125,64,26,20,8,197,1,16,179,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,177,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,126,64,26,20,8,197,1,16,182,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,120,64,26,20,8,197,1,16,181,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,180,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,116,64,26,20,8,197,1,16,184,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,125,64,26,20,8,197,1,16,185,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,183,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,115,64,26,20,8,197,1,16,187,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,123,64,26,20,8,197,1,16,188,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,186,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,115,64,26,20,8,197,1,16,190,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,118,64,26,20,8,197,1,16,191,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,189,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,119,64,26,20,8,197,1,16,193,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,113,64,26,20,8,197,1,16,194,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,192,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,108,64,26,20,8,197,1,16,197,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,123,64,26,20,8,197,1,16,196,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,195,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,128,64,26,20,8,197,1,16,199,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,105,64,26,20,8,197,1,16,200,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,198,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,131,64,26,20,8,197,1,16,202,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,104,64,26,20,8,197,1,16,203,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,201,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,105,64,26,20,8,197,1,16,206,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,132,64,26,20,8,197,1,16,205,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,204,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,133,64,26,20,8,197,1,16,208,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,107,64,26,20,8,197,1,16,209,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,207,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,133,64,26,20,8,197,1,16,211,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,112,64,26,20,8,197,1,16,212,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,210,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,132,64,26,20,8,197,1,16,214,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,115,64,26,20,8,197,1,16,215,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,213,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,127,64,26,20,8,197,1,16,217,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,122,64,26,20,8,197,1,16,218,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,216,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,121,64,26,20,8,197,1,16,220,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,124,64,26,20,8,197,1,16,221,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,219,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,116,64,26,20,8,197,1,16,223,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,124,64,26,20,8,197,1,16,224,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,222,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,112,64,26,20,8,197,1,16,226,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,120,64,26,20,8,197,1,16,227,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,225,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,112,64,26,20,8,197,1,16,229,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,116,64,26,20,8,197,1,16,230,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,228,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,102,64,26,20,8,197,1,16,233,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,116,64,26,20,8,197,1,16,232,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,231,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,125,64,26,20,8,197,1,16,235,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,82,64,26,20,8,197,1,16,236,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,234,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,131,64,26,20,8,197,1,16,238,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,72,64,26,20,8,197,1,16,239,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,237,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,134,64,26,20,8,197,1,16,241,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,87,64,26,20,8,197,1,16,242,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,240,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,134,64,26,20,8,197,1,16,244,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,107,64,26,20,8,197,1,16,245,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,243,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,131,64,26,20,8,197,1,16,247,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,119,64,26,20,8,197,1,16,248,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,246,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,126,64,26,20,8,197,1,16,250,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,126,64,26,20,8,197,1,16,251,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,249,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,115,64,26,20,8,197,1,16,253,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,128,64,26,20,8,197,1,16,254,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,252,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,107,64,26,20,8,197,1,16,128,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,121,64,26,20,8,197,1,16,129,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,255,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,112,64,26,20,8,197,1,16,131,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,103,64,26,20,8,197,1,16,132,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,130,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,124,64,26,20,8,197,1,16,134,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,48,64,26,20,8,197,1,16,135,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,133,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,70,64,26,20,8,197,1,16,138,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,134,64,26,20,8,197,1,16,137,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,136,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,137,64,26,20,8,197,1,16,140,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,110,64,26,20,8,197,1,16,141,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,139,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,134,64,26,20,8,197,1,16,143,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,121,64,26,20,8,197,1,16,144,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,142,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,124,64,26,20,8,197,1,16,146,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,127,64,26,20,8,197,1,16,147,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,145,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,114,64,26,20,8,197,1,16,149,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,122,64,26,20,8,197,1,16,150,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,148,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,114,64,26,20,8,197,1,16,152,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,105,64,26,20,8,197,1,16,153,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,151,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,82,64,26,20,8,197,1,16,156,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,127,64,26,20,8,197,1,16,155,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,154,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,131,64,26,20,8,197,1,16,158,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,88,64,26,20,8,197,1,16,159,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,157,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,131,64,26,20,8,197,1,16,161,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,103,64,26,20,8,197,1,16,162,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,160,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,126,64,26,20,8,197,1,16,164,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,117,64,26,20,8,197,1,16,165,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,197,1,16,163,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,197,1,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,247,18,18,244,18,10,241,18,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,198,1,16,4,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,207,17,10,6,112,111,105,110,116,115,18,196,17,18,193,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,117,64,26,19,8,198,1,16,7,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,132,64,26,19,8,198,1,16,8,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,6,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,117,64,26,19,8,198,1,16,10,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,139,64,26,19,8,198,1,16,11,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,9,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,117,64,26,19,8,198,1,16,13,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,138,64,26,19,8,198,1,16,14,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,12,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,117,64,26,19,8,198,1,16,16,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,137,64,26,19,8,198,1,16,17,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,15,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,118,64,26,19,8,198,1,16,19,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,136,64,26,19,8,198,1,16,20,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,18,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,198,1,16,22,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,136,64,26,19,8,198,1,16,23,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,21,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,120,64,26,19,8,198,1,16,25,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,136,64,26,19,8,198,1,16,26,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,24,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,121,64,26,19,8,198,1,16,28,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,136,64,26,19,8,198,1,16,29,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,27,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,122,64,26,19,8,198,1,16,31,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,136,64,26,19,8,198,1,16,32,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,30,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,136,64,26,19,8,198,1,16,35,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,123,64,26,19,8,198,1,16,34,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,33,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,123,64,26,19,8,198,1,16,37,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,136,64,26,19,8,198,1,16,38,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,36,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,123,64,26,19,8,198,1,16,40,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,137,64,26,19,8,198,1,16,41,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,39,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,123,64,26,19,8,198,1,16,43,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,137,64,26,19,8,198,1,16,44,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,42,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,122,64,26,19,8,198,1,16,46,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,138,64,26,19,8,198,1,16,47,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,45,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,121,64,26,19,8,198,1,16,49,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,138,64,26,19,8,198,1,16,50,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,48,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,120,64,26,19,8,198,1,16,52,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,138,64,26,19,8,198,1,16,53,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,51,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,119,64,26,19,8,198,1,16,55,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,138,64,26,19,8,198,1,16,56,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,54,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,118,64,26,19,8,198,1,16,58,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,138,64,26,19,8,198,1,16,59,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,57,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,118,64,26,19,8,198,1,16,61,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,138,64,26,19,8,198,1,16,62,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,60,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,117,64,26,19,8,198,1,16,64,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,138,64,26,19,8,198,1,16,65,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,63,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,5,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,198,1,16,2,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,54,102,51,50,98,99,26,19,8,198,1,16,3,26,12,98,255,26,186,217,176,234,142,137,48,109,147,18,19,8,198,1,16,1,26,12,98,255,26,186,217,176,234,142,137,48,109,147,10,235,47,18,232,47,10,229,47,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,198,1,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,54,101,97,98,54,26,19,8,198,1,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,198,1,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,195,46,10,6,112,111,105,110,116,115,18,184,46,18,181,46,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,128,64,26,19,8,198,1,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,115,64,26,19,8,198,1,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,128,64,26,19,8,198,1,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,116,64,26,19,8,198,1,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,128,64,26,19,8,198,1,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,116,64,26,19,8,198,1,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,127,64,26,19,8,198,1,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,116,64,26,19,8,198,1,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,127,64,26,19,8,198,1,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,117,64,26,19,8,198,1,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,125,64,26,19,8,198,1,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,117,64,26,19,8,198,1,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,125,64,26,19,8,198,1,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,116,64,26,19,8,198,1,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,124,64,26,19,8,198,1,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,114,64,26,19,8,198,1,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,124,64,26,19,8,198,1,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,198,1,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,125,64,26,19,8,198,1,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,198,1,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,129,64,26,19,8,198,1,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,92,64,26,19,8,198,1,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,131,64,26,19,8,198,1,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,91,64,26,19,8,198,1,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,133,64,26,19,8,198,1,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,91,64,26,19,8,198,1,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,134,64,26,19,8,198,1,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,94,64,26,19,8,198,1,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,135,64,26,19,8,198,1,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,97,64,26,19,8,198,1,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,104,64,26,19,8,198,1,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,137,64,26,19,8,198,1,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,106,64,26,19,8,198,1,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,137,64,26,19,8,198,1,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,137,64,26,19,8,198,1,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,109,64,26,19,8,198,1,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,137,64,26,19,8,198,1,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,111,64,26,19,8,198,1,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,137,64,26,19,8,198,1,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,113,64,26,19,8,198,1,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,134,64,26,19,8,198,1,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,118,64,26,19,8,198,1,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,130,64,26,19,8,198,1,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,122,64,26,19,8,198,1,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,123,64,26,19,8,198,1,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,124,64,26,19,8,198,1,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,121,64,26,19,8,198,1,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,124,64,26,19,8,198,1,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,115,64,26,19,8,198,1,16,79,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,121,64,26,19,8,198,1,16,80,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,78,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,117,64,26,19,8,198,1,16,82,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,118,64,26,19,8,198,1,16,83,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,81,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,119,64,26,19,8,198,1,16,85,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,116,64,26,19,8,198,1,16,86,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,84,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,121,64,26,19,8,198,1,16,88,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,113,64,26,19,8,198,1,16,89,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,87,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,128,64,26,19,8,198,1,16,91,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,108,64,26,19,8,198,1,16,92,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,90,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,128,64,26,19,8,198,1,16,94,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,107,64,26,19,8,198,1,16,95,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,93,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,130,64,26,19,8,198,1,16,97,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,106,64,26,19,8,198,1,16,98,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,96,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,132,64,26,19,8,198,1,16,100,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,198,1,16,101,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,99,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,198,1,16,104,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,133,64,26,19,8,198,1,16,103,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,102,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,134,64,26,19,8,198,1,16,106,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,106,64,26,19,8,198,1,16,107,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,105,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,134,64,26,19,8,198,1,16,109,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,107,64,26,19,8,198,1,16,110,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,108,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,135,64,26,19,8,198,1,16,112,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,111,64,26,19,8,198,1,16,113,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,111,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,135,64,26,19,8,198,1,16,115,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,112,64,26,19,8,198,1,16,116,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,114,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,134,64,26,19,8,198,1,16,118,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,115,64,26,19,8,198,1,16,119,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,117,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,198,1,16,121,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,94,64,26,19,8,198,1,16,122,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,120,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,119,64,26,19,8,198,1,16,124,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,121,64,26,19,8,198,1,16,125,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,123,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,116,64,26,19,8,198,1,16,127,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,122,64,26,20,8,198,1,16,128,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,126,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,114,64,26,20,8,198,1,16,130,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,122,64,26,20,8,198,1,16,131,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,198,1,16,129,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,110,64,26,20,8,198,1,16,133,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,119,64,26,20,8,198,1,16,134,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,198,1,16,132,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,109,64,26,20,8,198,1,16,136,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,117,64,26,20,8,198,1,16,137,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,198,1,16,135,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,112,64,26,20,8,198,1,16,139,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,112,64,26,20,8,198,1,16,140,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,198,1,16,138,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,116,64,26,20,8,198,1,16,142,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,101,64,26,20,8,198,1,16,143,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,198,1,16,141,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,122,64,26,20,8,198,1,16,145,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,86,64,26,20,8,198,1,16,146,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,198,1,16,144,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,128,64,26,20,8,198,1,16,148,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,68,64,26,20,8,198,1,16,149,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,198,1,16,147,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,119,64,26,20,8,198,1,16,151,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,117,64,26,20,8,198,1,16,152,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,198,1,16,150,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,118,64,26,20,8,198,1,16,154,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,112,64,26,20,8,198,1,16,155,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,198,1,16,153,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,99,64,26,20,8,198,1,16,158,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,120,64,26,20,8,198,1,16,157,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,198,1,16,156,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,126,64,26,20,8,198,1,16,160,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,83,64,26,20,8,198,1,16,161,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,198,1,16,159,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,136,64,26,20,8,198,1,16,163,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,114,64,26,20,8,198,1,16,164,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,198,1,16,162,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,198,1,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,233,39,18,230,39,10,227,39,10,193,38,10,6,112,111,105,110,116,115,18,182,38,18,179,38,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,196,38,24,99,68,73,65,192,26,19,8,200,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,39,250,156,132,183,139,67,64,26,19,8,200,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,55,143,116,93,240,52,55,192,26,19,8,200,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,74,59,236,250,233,228,77,192,26,19,8,200,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,46,112,57,96,160,101,83,192,26,19,8,200,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,106,27,167,63,190,38,83,192,26,19,8,200,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,68,234,56,107,130,84,192,26,19,8,200,1,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,173,37,145,11,145,116,89,192,26,19,8,200,1,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,68,234,56,107,130,84,192,26,19,8,200,1,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,190,16,219,15,169,16,96,192,26,19,8,200,1,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,97,116,168,142,196,83,192,26,19,8,200,1,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,96,229,139,232,115,45,97,192,26,19,8,200,1,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,140,155,136,135,213,72,82,192,26,19,8,200,1,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,177,79,228,84,217,187,97,192,26,19,8,200,1,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,211,227,97,30,46,110,80,192,26,19,8,200,1,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,177,79,228,84,217,187,97,192,26,19,8,200,1,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,74,59,236,250,233,228,77,192,26,19,8,200,1,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,38,94,169,12,235,92,97,192,26,19,8,200,1,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,146,34,61,119,5,246,71,192,26,19,8,200,1,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,171,134,25,38,206,136,93,192,26,19,8,200,1,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,208,121,20,218,130,67,192,26,19,8,200,1,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,59,182,67,57,66,191,85,192,26,19,8,200,1,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,208,121,20,218,130,67,192,26,19,8,200,1,16,40,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,7,59,41,107,187,160,79,192,26,19,8,200,1,16,41,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,39,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,208,121,20,218,130,67,192,26,19,8,200,1,16,43,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,61,85,187,30,5,171,81,192,26,19,8,200,1,16,44,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,42,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,219,9,142,243,32,7,66,192,26,19,8,200,1,16,46,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,106,27,167,63,190,38,83,192,26,19,8,200,1,16,47,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,45,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,11,81,224,50,198,87,88,192,26,19,8,200,1,16,50,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,86,213,231,110,237,173,37,192,26,19,8,200,1,16,49,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,48,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,75,10,233,223,226,32,64,26,19,8,200,1,16,52,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,80,250,65,228,91,145,90,192,26,19,8,200,1,16,53,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,51,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,43,252,105,193,143,53,61,64,26,19,8,200,1,16,55,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,219,235,124,44,74,240,90,192,26,19,8,200,1,16,56,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,54,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,89,194,85,226,72,177,62,64,26,19,8,200,1,16,58,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,34,52,86,195,162,21,89,192,26,19,8,200,1,16,59,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,57,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,240,144,174,54,201,41,64,26,19,8,200,1,16,61,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,83,56,49,175,225,104,82,192,26,19,8,200,1,16,62,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,60,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,206,71,19,207,72,160,19,192,26,19,8,200,1,16,64,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,194,145,199,185,37,103,77,192,26,19,8,200,1,16,65,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,63,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,143,250,124,77,189,51,192,26,19,8,200,1,16,67,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,125,232,101,8,144,45,75,192,26,19,8,200,1,16,68,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,66,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,213,231,110,237,173,37,192,26,19,8,200,1,16,70,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,217,116,61,74,2,37,78,192,26,19,8,200,1,16,71,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,69,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,100,185,108,196,209,38,64,26,19,8,200,1,16,73,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,177,99,128,214,22,76,81,192,26,19,8,200,1,16,74,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,72,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,111,146,127,29,62,58,64,26,19,8,200,1,16,76,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,200,70,246,102,243,9,82,192,26,19,8,200,1,16,77,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,75,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,205,22,100,100,172,137,68,64,26,19,8,200,1,16,79,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,200,70,246,102,243,9,82,192,26,19,8,200,1,16,80,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,78,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,17,192,197,21,66,195,70,64,26,19,8,200,1,16,82,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,7,59,41,107,187,160,79,192,26,19,8,200,1,16,83,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,81,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,51,238,211,207,203,67,64,26,19,8,200,1,16,85,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,125,232,101,8,144,45,75,192,26,19,8,200,1,16,86,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,84,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,111,146,127,29,62,58,64,26,19,8,200,1,16,88,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,10,121,24,54,65,120,71,192,26,19,8,200,1,16,89,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,87,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,152,9,203,99,242,194,67,192,26,19,8,200,1,16,92,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,45,94,200,150,200,98,11,192,26,19,8,200,1,16,91,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,90,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,45,94,200,150,200,98,11,192,26,19,8,200,1,16,94,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,175,236,64,244,206,128,68,192,26,19,8,200,1,16,95,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,93,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,175,236,64,244,206,128,68,192,26,19,8,200,1,16,98,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,86,105,39,199,215,252,72,64,26,19,8,200,1,16,97,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,96,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,178,245,254,8,74,244,75,64,26,19,8,200,1,16,100,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,60,125,243,33,128,203,64,192,26,19,8,200,1,16,101,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,99,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,201,216,116,153,38,178,76,64,26,19,8,200,1,16,103,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,29,110,15,2,142,159,62,192,26,19,8,200,1,16,104,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,102,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,134,177,54,251,62,72,64,26,19,8,200,1,16,106,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,55,143,116,93,240,52,55,192,26,19,8,200,1,16,107,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,105,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,240,144,174,54,201,41,64,26,19,8,200,1,16,109,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,218,162,125,40,106,191,32,192,26,19,8,200,1,16,110,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,108,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,109,2,179,22,80,66,64,26,19,8,200,1,16,112,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,165,96,179,113,165,148,47,192,26,19,8,200,1,16,113,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,111,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,248,145,142,133,80,81,64,26,19,8,200,1,16,115,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,165,96,179,113,165,148,47,192,26,19,8,200,1,16,116,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,114,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,215,219,7,31,98,14,82,64,26,19,8,200,1,16,118,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,146,187,44,172,78,174,38,192,26,19,8,200,1,16,119,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,117,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,248,145,142,133,80,81,64,26,19,8,200,1,16,121,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,174,197,125,132,132,134,3,192,26,19,8,200,1,16,122,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,120,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,18,137,120,109,54,75,64,26,19,8,200,1,16,124,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,114,241,156,237,240,217,34,64,26,19,8,200,1,16,125,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,123,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,136,109,2,179,22,80,66,64,26,19,8,200,1,16,127,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,41,10,1,121,18,36,26,34,8,4,18,8,250,227,64,93,8,207,51,64,26,20,8,200,1,16,128,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,126,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,253,152,14,142,36,242,15,64,26,20,8,200,1,16,130,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,41,10,1,121,18,36,26,34,8,4,18,8,59,79,179,67,24,49,62,64,26,20,8,200,1,16,131,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,20,8,200,1,16,129,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,144,201,14,92,148,65,50,192,26,20,8,200,1,16,133,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,41,10,1,121,18,36,26,34,8,4,18,8,203,109,197,66,69,148,64,64,26,20,8,200,1,16,134,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,20,8,200,1,16,132,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,5,179,7,226,179,72,192,26,20,8,200,1,16,136,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,41,10,1,121,18,36,26,34,8,4,18,8,203,109,197,66,69,148,64,64,26,20,8,200,1,16,137,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,20,8,200,1,16,135,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,200,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,50,56,56,53,26,19,8,200,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,200,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,200,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,139,6,18,136,6,10,133,6,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,201,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,43,154,64,26,19,8,201,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,131,13,83,192,26,19,8,201,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,201,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,232,195,97,64,26,19,8,201,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,77,149,64,26,19,8,201,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,201,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,229,147,64,26,19,8,201,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,147,206,103,64,26,19,8,201,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,201,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,23,143,64,26,19,8,201,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,244,209,115,64,26,19,8,201,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,201,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,95,141,64,26,19,8,201,1,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,73,151,117,64,26,19,8,201,1,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,201,1,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,201,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,201,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,53,57,49,52,53,26,19,8,201,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,201,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,34,19,8,202,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,123,16,1,26,12,98,255,26,207,217,176,234,142,137,48,116,127,34,19,8,203,1,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,131,245,7,10,6,115,104,97,112,101,115,18,247,244,7,18,243,244,7,10,179,22,18,176,22,10,173,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,208,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,208,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,208,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,139,21,10,6,112,111,105,110,116,115,18,128,21,18,253,20,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,111,64,26,19,8,208,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,107,64,26,19,8,208,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,109,64,26,19,8,208,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,110,64,26,19,8,208,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,112,64,26,19,8,208,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,208,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,113,64,26,19,8,208,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,107,64,26,19,8,208,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,115,64,26,19,8,208,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,107,64,26,19,8,208,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,208,2,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,208,2,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,121,64,26,19,8,208,2,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,109,64,26,19,8,208,2,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,122,64,26,19,8,208,2,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,111,64,26,19,8,208,2,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,124,64,26,19,8,208,2,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,114,64,26,19,8,208,2,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,124,64,26,19,8,208,2,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,115,64,26,19,8,208,2,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,124,64,26,19,8,208,2,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,116,64,26,19,8,208,2,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,124,64,26,19,8,208,2,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,119,64,26,19,8,208,2,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,123,64,26,19,8,208,2,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,122,64,26,19,8,208,2,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,122,64,26,19,8,208,2,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,123,64,26,19,8,208,2,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,125,64,26,19,8,208,2,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,124,64,26,19,8,208,2,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,126,64,26,19,8,208,2,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,124,64,26,19,8,208,2,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,127,64,26,19,8,208,2,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,124,64,26,19,8,208,2,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,131,64,26,19,8,208,2,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,123,64,26,19,8,208,2,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,132,64,26,19,8,208,2,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,208,2,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,134,64,26,19,8,208,2,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,121,64,26,19,8,208,2,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,118,64,26,19,8,208,2,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,135,64,26,19,8,208,2,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,136,64,26,19,8,208,2,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,117,64,26,19,8,208,2,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,136,64,26,19,8,208,2,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,116,64,26,19,8,208,2,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,136,64,26,19,8,208,2,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,116,64,26,19,8,208,2,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,208,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,239,25,18,236,25,10,233,25,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,209,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,209,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,209,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,199,24,10,6,112,111,105,110,116,115,18,188,24,18,185,24,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,116,64,26,19,8,209,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,130,64,26,19,8,209,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,117,64,26,19,8,209,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,130,64,26,19,8,209,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,120,64,26,19,8,209,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,129,64,26,19,8,209,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,125,64,26,19,8,209,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,128,64,26,19,8,209,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,126,64,26,19,8,209,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,128,64,26,19,8,209,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,128,64,26,19,8,209,2,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,128,64,26,19,8,209,2,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,130,64,26,19,8,209,2,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,129,64,26,19,8,209,2,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,130,64,26,19,8,209,2,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,129,64,26,19,8,209,2,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,131,64,26,19,8,209,2,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,130,64,26,19,8,209,2,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,131,64,26,19,8,209,2,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,131,64,26,19,8,209,2,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,132,64,26,19,8,209,2,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,131,64,26,19,8,209,2,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,132,64,26,19,8,209,2,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,132,64,26,19,8,209,2,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,132,64,26,19,8,209,2,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,132,64,26,19,8,209,2,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,133,64,26,19,8,209,2,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,132,64,26,19,8,209,2,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,135,64,26,19,8,209,2,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,133,64,26,19,8,209,2,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,136,64,26,19,8,209,2,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,133,64,26,19,8,209,2,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,138,64,26,19,8,209,2,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,132,64,26,19,8,209,2,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,140,64,26,19,8,209,2,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,131,64,26,19,8,209,2,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,141,64,26,19,8,209,2,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,130,64,26,19,8,209,2,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,142,64,26,19,8,209,2,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,128,64,26,19,8,209,2,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,143,64,26,19,8,209,2,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,126,64,26,19,8,209,2,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,143,64,26,19,8,209,2,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,125,64,26,19,8,209,2,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,143,64,26,19,8,209,2,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,124,64,26,19,8,209,2,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,143,64,26,19,8,209,2,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,121,64,26,19,8,209,2,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,143,64,26,19,8,209,2,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,119,64,26,19,8,209,2,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,117,64,26,19,8,209,2,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,142,64,26,19,8,209,2,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,142,64,26,19,8,209,2,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,116,64,26,19,8,209,2,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,141,64,26,19,8,209,2,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,114,64,26,19,8,209,2,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,209,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,171,29,18,168,29,10,165,29,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,210,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,131,28,10,6,112,111,105,110,116,115,18,248,27,18,245,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,210,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,124,64,26,19,8,210,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,210,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,124,64,26,19,8,210,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,48,64,26,19,8,210,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,123,64,26,19,8,210,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,67,64,26,19,8,210,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,122,64,26,19,8,210,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,90,64,26,19,8,210,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,120,64,26,19,8,210,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,95,64,26,19,8,210,2,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,120,64,26,19,8,210,2,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,210,2,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,120,64,26,19,8,210,2,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,109,64,26,19,8,210,2,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,120,64,26,19,8,210,2,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,112,64,26,19,8,210,2,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,121,64,26,19,8,210,2,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,113,64,26,19,8,210,2,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,121,64,26,19,8,210,2,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,113,64,26,19,8,210,2,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,124,64,26,19,8,210,2,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,113,64,26,19,8,210,2,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,125,64,26,19,8,210,2,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,112,64,26,19,8,210,2,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,127,64,26,19,8,210,2,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,106,64,26,19,8,210,2,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,128,64,26,19,8,210,2,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,129,64,26,19,8,210,2,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,104,64,26,19,8,210,2,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,101,64,26,19,8,210,2,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,129,64,26,19,8,210,2,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,85,64,26,19,8,210,2,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,130,64,26,19,8,210,2,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,192,26,19,8,210,2,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,131,64,26,19,8,210,2,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,51,192,26,19,8,210,2,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,131,64,26,19,8,210,2,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,63,192,26,19,8,210,2,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,131,64,26,19,8,210,2,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,64,192,26,19,8,210,2,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,132,64,26,19,8,210,2,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,61,192,26,19,8,210,2,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,132,64,26,19,8,210,2,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,192,26,19,8,210,2,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,132,64,26,19,8,210,2,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,44,64,26,19,8,210,2,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,132,64,26,19,8,210,2,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,77,64,26,19,8,210,2,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,132,64,26,19,8,210,2,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,96,64,26,19,8,210,2,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,131,64,26,19,8,210,2,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,97,64,26,19,8,210,2,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,130,64,26,19,8,210,2,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,98,64,26,19,8,210,2,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,129,64,26,19,8,210,2,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,96,64,26,19,8,210,2,16,91,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,129,64,26,19,8,210,2,16,92,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,90,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,94,64,26,19,8,210,2,16,94,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,129,64,26,19,8,210,2,16,95,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,93,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,79,64,26,19,8,210,2,16,97,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,128,64,26,19,8,210,2,16,98,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,96,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,70,64,26,19,8,210,2,16,100,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,128,64,26,19,8,210,2,16,101,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,99,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,210,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,210,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,210,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,179,22,18,176,22,10,173,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,211,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,211,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,211,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,139,21,10,6,112,111,105,110,116,115,18,128,21,18,253,20,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,134,64,26,19,8,211,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,114,64,26,19,8,211,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,134,64,26,19,8,211,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,114,64,26,19,8,211,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,134,64,26,19,8,211,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,113,64,26,19,8,211,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,112,64,26,19,8,211,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,134,64,26,19,8,211,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,135,64,26,19,8,211,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,112,64,26,19,8,211,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,136,64,26,19,8,211,2,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,109,64,26,19,8,211,2,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,137,64,26,19,8,211,2,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,107,64,26,19,8,211,2,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,138,64,26,19,8,211,2,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,106,64,26,19,8,211,2,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,141,64,26,19,8,211,2,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,103,64,26,19,8,211,2,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,142,64,26,19,8,211,2,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,103,64,26,19,8,211,2,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,143,64,26,19,8,211,2,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,211,2,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,106,64,26,19,8,211,2,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,144,64,26,19,8,211,2,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,146,64,26,19,8,211,2,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,108,64,26,19,8,211,2,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,146,64,26,19,8,211,2,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,112,64,26,19,8,211,2,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,112,64,26,19,8,211,2,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,147,64,26,19,8,211,2,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,147,64,26,19,8,211,2,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,116,64,26,19,8,211,2,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,147,64,26,19,8,211,2,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,119,64,26,19,8,211,2,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,147,64,26,19,8,211,2,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,121,64,26,19,8,211,2,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,146,64,26,19,8,211,2,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,124,64,26,19,8,211,2,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,146,64,26,19,8,211,2,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,125,64,26,19,8,211,2,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,125,64,26,19,8,211,2,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,146,64,26,19,8,211,2,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,146,64,26,19,8,211,2,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,126,64,26,19,8,211,2,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,127,64,26,19,8,211,2,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,147,64,26,19,8,211,2,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,147,64,26,19,8,211,2,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,128,64,26,19,8,211,2,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,211,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,163,36,18,160,36,10,157,36,10,251,34,10,6,112,111,105,110,116,115,18,240,34,18,237,34,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,145,64,26,19,8,212,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,131,64,26,19,8,212,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,132,64,26,19,8,212,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,145,64,26,19,8,212,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,145,64,26,19,8,212,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,132,64,26,19,8,212,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,133,64,26,19,8,212,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,146,64,26,19,8,212,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,146,64,26,19,8,212,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,134,64,26,19,8,212,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,146,64,26,19,8,212,2,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,135,64,26,19,8,212,2,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,148,64,26,19,8,212,2,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,135,64,26,19,8,212,2,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,149,64,26,19,8,212,2,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,135,64,26,19,8,212,2,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,133,64,26,19,8,212,2,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,150,64,26,19,8,212,2,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,150,64,26,19,8,212,2,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,133,64,26,19,8,212,2,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,151,64,26,19,8,212,2,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,130,64,26,19,8,212,2,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,151,64,26,19,8,212,2,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,128,64,26,19,8,212,2,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,150,64,26,19,8,212,2,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,124,64,26,19,8,212,2,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,150,64,26,19,8,212,2,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,122,64,26,19,8,212,2,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,150,64,26,19,8,212,2,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,120,64,26,19,8,212,2,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,149,64,26,19,8,212,2,16,52,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,117,64,26,19,8,212,2,16,53,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,51,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,149,64,26,19,8,212,2,16,55,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,116,64,26,19,8,212,2,16,56,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,54,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,149,64,26,19,8,212,2,16,58,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,116,64,26,19,8,212,2,16,59,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,57,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,149,64,26,19,8,212,2,16,61,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,114,64,26,19,8,212,2,16,62,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,60,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,149,64,26,19,8,212,2,16,64,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,112,64,26,19,8,212,2,16,65,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,63,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,149,64,26,19,8,212,2,16,67,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,111,64,26,19,8,212,2,16,68,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,66,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,149,64,26,19,8,212,2,16,70,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,110,64,26,19,8,212,2,16,71,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,69,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,149,64,26,19,8,212,2,16,73,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,108,64,26,19,8,212,2,16,74,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,72,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,148,64,26,19,8,212,2,16,76,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,212,2,16,77,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,75,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,148,64,26,19,8,212,2,16,79,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,103,64,26,19,8,212,2,16,80,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,78,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,148,64,26,19,8,212,2,16,82,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,100,64,26,19,8,212,2,16,83,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,81,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,147,64,26,19,8,212,2,16,85,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,99,64,26,19,8,212,2,16,86,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,84,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,147,64,26,19,8,212,2,16,88,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,99,64,26,19,8,212,2,16,89,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,87,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,146,64,26,19,8,212,2,16,91,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,98,64,26,19,8,212,2,16,92,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,90,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,146,64,26,19,8,212,2,16,94,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,97,64,26,19,8,212,2,16,95,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,93,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,145,64,26,19,8,212,2,16,97,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,64,26,19,8,212,2,16,98,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,96,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,145,64,26,19,8,212,2,16,100,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,90,64,26,19,8,212,2,16,101,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,99,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,145,64,26,19,8,212,2,16,103,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,89,64,26,19,8,212,2,16,104,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,102,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,145,64,26,19,8,212,2,16,106,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,88,64,26,19,8,212,2,16,107,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,105,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,144,64,26,19,8,212,2,16,109,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,84,64,26,19,8,212,2,16,110,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,108,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,143,64,26,19,8,212,2,16,112,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,84,64,26,19,8,212,2,16,113,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,111,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,141,64,26,19,8,212,2,16,115,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,86,64,26,19,8,212,2,16,116,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,114,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,138,64,26,19,8,212,2,16,118,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,87,64,26,19,8,212,2,16,119,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,117,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,136,64,26,19,8,212,2,16,121,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,89,64,26,19,8,212,2,16,122,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,120,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,133,64,26,19,8,212,2,16,124,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,91,64,26,19,8,212,2,16,125,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,123,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,212,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,212,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,212,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,212,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,204,14,18,201,14,10,198,14,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,213,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,213,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,213,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,95,64,26,19,8,213,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,130,64,26,19,8,213,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,129,64,26,19,8,213,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,92,64,26,19,8,213,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,127,64,26,19,8,213,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,89,64,26,19,8,213,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,121,64,26,19,8,213,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,82,64,26,19,8,213,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,112,64,26,19,8,213,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,79,64,26,19,8,213,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,79,64,26,19,8,213,2,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,107,64,26,19,8,213,2,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,99,64,26,19,8,213,2,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,81,64,26,19,8,213,2,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,90,64,26,19,8,213,2,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,84,64,26,19,8,213,2,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,84,64,26,19,8,213,2,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,81,64,26,19,8,213,2,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,82,192,26,19,8,213,2,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,92,64,26,19,8,213,2,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,88,192,26,19,8,213,2,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,96,64,26,19,8,213,2,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,89,192,26,19,8,213,2,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,98,64,26,19,8,213,2,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,90,192,26,19,8,213,2,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,104,64,26,19,8,213,2,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,89,192,26,19,8,213,2,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,108,64,26,19,8,213,2,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,87,192,26,19,8,213,2,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,111,64,26,19,8,213,2,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,213,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,214,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,214,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,214,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,63,26,19,8,214,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,214,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,62,192,26,19,8,214,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,114,64,26,19,8,214,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,81,192,26,19,8,214,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,117,64,26,19,8,214,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,118,64,26,19,8,214,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,70,192,26,19,8,214,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,58,192,26,19,8,214,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,119,64,26,19,8,214,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,64,192,26,19,8,214,2,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,214,2,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,2,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,214,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,215,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,101,192,26,19,8,215,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,125,64,26,19,8,215,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,96,192,26,19,8,215,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,125,64,26,19,8,215,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,95,192,26,19,8,215,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,125,64,26,19,8,215,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,215,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,215,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,215,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,216,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,216,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,216,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,189,219,143,38,94,166,64,26,19,8,216,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,169,229,67,238,41,136,190,192,26,19,8,216,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,216,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,91,88,191,44,132,129,190,192,26,19,8,216,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,253,189,219,143,38,94,166,64,26,19,8,216,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,216,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,18,97,23,26,226,117,190,192,26,19,8,216,2,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,221,57,176,118,16,124,166,64,26,19,8,216,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,216,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,244,239,11,33,217,166,64,26,19,8,216,2,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,123,220,234,69,154,99,190,192,26,19,8,216,2,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,216,2,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,253,72,180,176,253,166,64,26,19,8,216,2,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,212,149,40,101,71,96,190,192,26,19,8,216,2,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,216,2,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,212,149,40,101,71,96,190,192,26,19,8,216,2,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,97,130,118,67,42,64,167,64,26,19,8,216,2,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,216,2,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,130,118,67,42,64,167,64,26,19,8,216,2,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,39,185,137,213,240,97,190,192,26,19,8,216,2,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,216,2,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,216,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,216,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,204,14,18,201,14,10,198,14,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,217,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,217,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,217,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,97,192,26,19,8,217,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,128,64,26,19,8,217,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,96,192,26,19,8,217,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,127,64,26,19,8,217,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,92,192,26,19,8,217,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,127,64,26,19,8,217,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,87,192,26,19,8,217,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,128,64,26,19,8,217,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,128,64,26,19,8,217,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,85,192,26,19,8,217,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,128,64,26,19,8,217,2,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,82,192,26,19,8,217,2,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,82,192,26,19,8,217,2,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,129,64,26,19,8,217,2,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,83,192,26,19,8,217,2,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,129,64,26,19,8,217,2,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,85,192,26,19,8,217,2,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,129,64,26,19,8,217,2,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,91,192,26,19,8,217,2,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,129,64,26,19,8,217,2,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,88,192,26,19,8,217,2,16,37,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,129,64,26,19,8,217,2,16,38,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,36,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,83,192,26,19,8,217,2,16,40,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,130,64,26,19,8,217,2,16,41,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,39,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,130,64,26,19,8,217,2,16,44,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,93,192,26,19,8,217,2,16,43,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,42,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,93,192,26,19,8,217,2,16,46,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,131,64,26,19,8,217,2,16,47,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,45,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,131,64,26,19,8,217,2,16,50,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,91,192,26,19,8,217,2,16,49,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,48,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,217,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,204,14,18,201,14,10,198,14,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,50,55,52,57,101,26,19,8,217,2,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,217,2,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,163,64,26,19,8,217,2,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,89,192,26,19,8,217,2,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,87,192,26,19,8,217,2,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,163,64,26,19,8,217,2,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,163,64,26,19,8,217,2,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,80,192,26,19,8,217,2,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,163,64,26,19,8,217,2,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,73,192,26,19,8,217,2,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,26,163,64,26,19,8,217,2,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,32,64,26,19,8,217,2,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,163,64,26,19,8,217,2,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,56,64,26,19,8,217,2,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,42,163,64,26,19,8,217,2,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,67,64,26,19,8,217,2,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,78,163,64,26,19,8,217,2,16,28,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,76,64,26,19,8,217,2,16,29,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,27,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,83,64,26,19,8,217,2,16,32,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,102,163,64,26,19,8,217,2,16,31,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,30,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,102,163,64,26,19,8,217,2,16,34,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,88,64,26,19,8,217,2,16,35,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,33,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,163,64,26,19,8,217,2,16,37,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,91,64,26,19,8,217,2,16,38,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,36,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,50,163,64,26,19,8,217,2,16,40,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,97,64,26,19,8,217,2,16,41,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,39,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,163,64,26,19,8,217,2,16,43,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,100,64,26,19,8,217,2,16,44,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,42,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,38,163,64,26,19,8,217,2,16,46,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,102,64,26,19,8,217,2,16,47,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,45,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,163,64,26,19,8,217,2,16,49,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,106,64,26,19,8,217,2,16,50,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,48,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,217,2,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,217,2,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,136,18,18,133,18,10,130,18,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,219,2,16,2,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,51,53,52,56,51,26,19,8,219,2,16,3,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,219,2,16,4,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,224,16,10,6,112,111,105,110,116,115,18,213,16,18,210,16,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,121,64,26,19,8,219,2,16,7,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,138,64,26,19,8,219,2,16,8,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,6,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,125,64,26,19,8,219,2,16,10,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,137,64,26,19,8,219,2,16,11,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,9,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,128,64,26,19,8,219,2,16,13,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,136,64,26,19,8,219,2,16,14,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,12,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,129,64,26,19,8,219,2,16,16,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,136,64,26,19,8,219,2,16,17,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,15,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,130,64,26,19,8,219,2,16,19,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,135,64,26,19,8,219,2,16,20,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,18,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,131,64,26,19,8,219,2,16,22,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,135,64,26,19,8,219,2,16,23,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,21,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,131,64,26,19,8,219,2,16,25,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,136,64,26,19,8,219,2,16,26,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,24,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,132,64,26,19,8,219,2,16,28,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,136,64,26,19,8,219,2,16,29,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,27,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,134,64,26,19,8,219,2,16,31,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,138,64,26,19,8,219,2,16,32,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,30,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,137,64,26,19,8,219,2,16,34,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,140,64,26,19,8,219,2,16,35,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,33,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,138,64,26,19,8,219,2,16,37,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,140,64,26,19,8,219,2,16,38,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,36,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,141,64,26,19,8,219,2,16,41,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,139,64,26,19,8,219,2,16,40,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,39,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,139,64,26,19,8,219,2,16,43,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,141,64,26,19,8,219,2,16,44,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,42,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,140,64,26,19,8,219,2,16,46,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,141,64,26,19,8,219,2,16,47,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,45,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,141,64,26,19,8,219,2,16,49,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,141,64,26,19,8,219,2,16,50,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,48,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,143,64,26,19,8,219,2,16,52,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,140,64,26,19,8,219,2,16,53,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,51,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,144,64,26,19,8,219,2,16,55,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,139,64,26,19,8,219,2,16,56,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,54,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,145,64,26,19,8,219,2,16,58,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,137,64,26,19,8,219,2,16,59,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,57,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,146,64,26,19,8,219,2,16,61,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,136,64,26,19,8,219,2,16,62,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,60,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,5,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,219,2,16,1,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,161,10,18,158,10,10,155,10,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,64,192,26,19,8,220,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,134,64,26,19,8,220,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,53,192,26,19,8,220,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,133,64,26,19,8,220,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,46,64,26,19,8,220,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,133,64,26,19,8,220,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,68,64,26,19,8,220,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,134,64,26,19,8,220,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,71,64,26,19,8,220,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,134,64,26,19,8,220,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,66,64,26,19,8,220,2,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,134,64,26,19,8,220,2,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,2,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,68,64,26,19,8,220,2,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,134,64,26,19,8,220,2,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,2,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,88,64,26,19,8,220,2,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,135,64,26,19,8,220,2,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,2,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,91,64,26,19,8,220,2,16,31,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,135,64,26,19,8,220,2,16,32,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,2,16,30,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,94,64,26,19,8,220,2,16,34,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,135,64,26,19,8,220,2,16,35,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,2,16,33,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,220,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,220,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,220,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,220,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,188,28,18,185,28,10,182,28,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,221,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,221,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,221,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,148,27,10,6,112,111,105,110,116,115,18,137,27,18,134,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,120,241,47,13,234,40,167,64,26,19,8,221,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,73,222,209,255,100,11,191,192,26,19,8,221,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,130,118,67,42,64,167,64,26,19,8,221,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,179,96,183,80,183,14,191,192,26,19,8,221,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,178,100,149,152,130,167,64,26,19,8,221,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,6,116,227,215,73,41,191,192,26,19,8,221,2,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,120,100,191,235,226,167,64,26,19,8,221,2,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,120,217,200,189,197,92,191,192,26,19,8,221,2,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,164,67,47,139,227,73,168,64,26,19,8,221,2,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,201,9,183,15,52,159,191,192,26,19,8,221,2,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,145,101,6,178,102,197,191,192,26,19,8,221,2,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,75,106,135,153,8,127,168,64,26,19,8,221,2,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,32,111,82,59,173,133,168,64,26,19,8,221,2,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,92,164,147,137,189,195,191,192,26,19,8,221,2,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,0,153,113,237,156,168,64,26,19,8,221,2,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,158,14,130,177,216,165,191,192,26,19,8,221,2,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,43,188,33,183,216,168,64,26,19,8,221,2,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,194,38,183,122,10,111,191,192,26,19,8,221,2,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,96,117,21,202,33,169,64,26,19,8,221,2,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,133,130,68,189,55,61,191,192,26,19,8,221,2,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,115,161,156,92,60,169,64,26,19,8,221,2,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,17,58,33,162,151,49,191,192,26,19,8,221,2,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,246,134,237,174,63,169,64,26,19,8,221,2,16,40,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,17,58,33,162,151,49,191,192,26,19,8,221,2,16,41,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,39,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,231,4,232,210,156,83,169,64,26,19,8,221,2,16,43,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,34,227,94,1,15,106,191,192,26,19,8,221,2,16,44,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,42,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,78,164,143,238,202,126,169,64,26,19,8,221,2,16,46,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,211,207,244,217,129,167,191,192,26,19,8,221,2,16,47,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,45,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,55,53,214,36,11,150,169,64,26,19,8,221,2,16,49,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,82,222,85,191,111,187,191,192,26,19,8,221,2,16,50,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,48,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,12,58,161,198,175,156,169,64,26,19,8,221,2,16,52,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,29,29,227,150,198,185,191,192,26,19,8,221,2,16,53,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,51,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,77,205,77,66,183,169,64,26,19,8,221,2,16,55,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,201,9,183,15,52,159,191,192,26,19,8,221,2,16,56,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,54,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,222,19,132,130,206,169,64,26,19,8,221,2,16,58,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,181,125,59,123,152,142,191,192,26,19,8,221,2,16,59,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,57,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,130,134,65,85,0,170,64,26,19,8,221,2,16,61,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,194,38,183,122,10,111,191,192,26,19,8,221,2,16,62,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,60,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,29,99,187,222,36,170,64,26,19,8,221,2,16,64,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,120,217,200,189,197,92,191,192,26,19,8,221,2,16,65,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,63,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,217,149,112,68,202,87,191,192,26,19,8,221,2,16,68,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,85,193,213,120,177,86,170,64,26,19,8,221,2,16,67,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,66,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,202,107,188,250,99,170,64,26,19,8,221,2,16,70,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,120,217,200,189,197,92,191,192,26,19,8,221,2,16,71,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,69,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,236,248,40,123,146,170,64,26,19,8,221,2,16,73,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,54,111,218,149,170,122,191,192,26,19,8,221,2,16,74,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,72,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,206,9,187,243,86,186,170,64,26,19,8,221,2,16,76,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,181,125,59,123,152,142,191,192,26,19,8,221,2,16,77,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,75,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,120,19,81,55,160,199,170,64,26,19,8,221,2,16,79,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,84,193,147,244,147,147,191,192,26,19,8,221,2,16,80,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,78,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,33,29,231,122,233,212,170,64,26,19,8,221,2,16,82,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,138,130,6,29,61,149,191,192,26,19,8,221,2,16,83,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,81,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,164,151,109,224,222,170,64,26,19,8,221,2,16,85,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,138,130,6,29,61,149,191,192,26,19,8,221,2,16,86,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,84,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,160,43,72,96,215,232,170,64,26,19,8,221,2,16,88,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,234,62,174,163,65,144,191,192,26,19,8,221,2,16,89,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,87,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,58,169,69,197,252,170,64,26,19,8,221,2,16,91,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,161,241,191,230,252,125,191,192,26,19,8,221,2,16,92,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,90,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,97,106,15,244,5,116,191,192,26,19,8,221,2,16,95,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,8,203,239,123,5,20,171,64,26,19,8,221,2,16,94,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,93,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,106,151,151,51,63,171,64,26,19,8,221,2,16,97,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,44,169,156,203,92,114,191,192,26,19,8,221,2,16,98,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,96,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,221,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,230,19,18,227,19,10,224,19,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,222,2,16,2,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,51,53,52,56,51,26,19,8,222,2,16,3,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,222,2,16,4,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,190,18,10,6,112,111,105,110,116,115,18,179,18,18,176,18,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,124,64,26,19,8,222,2,16,7,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,141,64,26,19,8,222,2,16,8,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,6,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,131,64,26,19,8,222,2,16,10,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,141,64,26,19,8,222,2,16,11,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,9,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,131,64,26,19,8,222,2,16,13,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,142,64,26,19,8,222,2,16,14,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,12,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,132,64,26,19,8,222,2,16,16,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,156,144,64,26,19,8,222,2,16,17,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,15,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,134,64,26,19,8,222,2,16,19,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,156,144,64,26,19,8,222,2,16,20,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,18,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,138,64,26,19,8,222,2,16,22,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,144,64,26,19,8,222,2,16,23,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,21,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,142,64,26,19,8,222,2,16,25,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,144,64,26,19,8,222,2,16,26,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,24,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,143,64,26,19,8,222,2,16,28,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,4,144,64,26,19,8,222,2,16,29,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,27,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,143,64,26,19,8,222,2,16,32,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,145,64,26,19,8,222,2,16,31,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,30,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,146,64,26,19,8,222,2,16,34,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,140,64,26,19,8,222,2,16,35,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,33,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,147,64,26,19,8,222,2,16,37,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,140,64,26,19,8,222,2,16,38,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,36,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,140,64,26,19,8,222,2,16,41,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,147,64,26,19,8,222,2,16,40,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,39,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,147,64,26,19,8,222,2,16,43,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,139,64,26,19,8,222,2,16,44,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,42,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,147,64,26,19,8,222,2,16,46,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,138,64,26,19,8,222,2,16,47,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,45,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,147,64,26,19,8,222,2,16,49,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,138,64,26,19,8,222,2,16,50,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,48,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,147,64,26,19,8,222,2,16,52,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,138,64,26,19,8,222,2,16,53,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,51,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,146,64,26,19,8,222,2,16,55,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,137,64,26,19,8,222,2,16,56,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,54,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,146,64,26,19,8,222,2,16,58,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,137,64,26,19,8,222,2,16,59,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,57,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,144,64,26,19,8,222,2,16,61,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,137,64,26,19,8,222,2,16,62,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,60,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,136,64,26,19,8,222,2,16,65,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,143,64,26,19,8,222,2,16,64,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,63,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,142,64,26,19,8,222,2,16,67,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,136,64,26,19,8,222,2,16,68,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,66,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,5,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,222,2,16,1,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,187,15,18,184,15,10,181,15,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,223,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,223,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,223,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,147,14,10,6,112,111,105,110,116,115,18,136,14,18,133,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,6,29,91,60,201,196,168,64,26,19,8,223,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,17,0,219,172,218,137,190,192,26,19,8,223,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,179,96,249,212,212,209,169,64,26,19,8,223,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,71,193,77,213,131,139,190,192,26,19,8,223,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,200,236,116,105,112,226,169,64,26,19,8,223,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,220,62,104,132,49,136,190,192,26,19,8,223,2,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,4,145,231,38,67,20,170,64,26,19,8,223,2,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,147,241,121,199,236,117,190,192,26,19,8,223,2,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,214,178,116,147,195,66,170,64,26,19,8,223,2,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,63,222,77,64,90,91,190,192,26,19,8,223,2,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,0,37,176,13,173,170,64,26,19,8,223,2,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,246,144,95,131,21,73,190,192,26,19,8,223,2,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,246,144,95,131,21,73,190,192,26,19,8,223,2,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,33,29,231,122,233,212,170,64,26,19,8,223,2,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,203,239,123,5,20,171,64,26,19,8,223,2,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,150,212,183,252,16,78,190,192,26,19,8,223,2,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,5,232,177,70,225,59,171,64,26,19,8,223,2,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,160,154,245,198,94,86,190,192,26,19,8,223,2,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,175,241,71,138,42,73,171,64,26,19,8,223,2,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,117,159,192,104,3,93,190,192,26,19,8,223,2,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,175,241,71,138,42,73,171,64,26,19,8,223,2,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,30,169,86,172,76,106,190,192,26,19,8,223,2,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,89,251,221,205,115,86,171,64,26,19,8,223,2,16,40,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,200,178,236,239,149,119,190,192,26,19,8,223,2,16,41,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,39,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,20,174,177,112,52,156,171,64,26,19,8,223,2,16,43,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,200,178,236,239,149,119,190,192,26,19,8,223,2,16,44,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,42,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,146,188,18,86,34,176,171,64,26,19,8,223,2,16,46,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,94,48,7,159,67,116,190,192,26,19,8,223,2,16,47,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,45,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,230,207,62,221,180,202,171,64,26,19,8,223,2,16,49,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,180,38,113,91,250,102,190,192,26,19,8,223,2,16,50,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,48,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,217,212,32,254,215,171,64,26,19,8,223,2,16,52,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,127,101,254,50,81,101,190,192,26,19,8,223,2,16,53,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,51,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,223,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,224,2,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,50,55,52,57,101,26,19,8,224,2,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,224,2,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,77,192,26,19,8,224,2,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,161,64,26,19,8,224,2,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,224,2,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,162,64,26,19,8,224,2,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,78,192,26,19,8,224,2,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,224,2,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,224,2,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,224,2,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,162,23,18,159,23,10,156,23,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,225,2,16,2,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,51,53,52,56,51,26,19,8,225,2,16,3,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,225,2,16,4,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,250,21,10,6,112,111,105,110,116,115,18,239,21,18,236,21,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,136,64,26,19,8,225,2,16,8,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,147,64,26,19,8,225,2,16,7,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,6,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,149,64,26,19,8,225,2,16,10,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,136,64,26,19,8,225,2,16,11,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,9,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,150,64,26,19,8,225,2,16,13,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,136,64,26,19,8,225,2,16,14,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,12,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,150,64,26,19,8,225,2,16,16,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,138,64,26,19,8,225,2,16,17,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,15,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,150,64,26,19,8,225,2,16,19,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,139,64,26,19,8,225,2,16,20,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,18,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,150,64,26,19,8,225,2,16,22,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,141,64,26,19,8,225,2,16,23,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,21,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,150,64,26,19,8,225,2,16,25,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,141,64,26,19,8,225,2,16,26,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,24,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,149,64,26,19,8,225,2,16,28,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,141,64,26,19,8,225,2,16,29,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,27,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,149,64,26,19,8,225,2,16,31,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,140,64,26,19,8,225,2,16,32,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,30,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,148,64,26,19,8,225,2,16,34,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,140,64,26,19,8,225,2,16,35,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,33,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,148,64,26,19,8,225,2,16,37,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,142,64,26,19,8,225,2,16,38,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,36,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,148,64,26,19,8,225,2,16,40,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,92,144,64,26,19,8,225,2,16,41,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,39,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,148,64,26,19,8,225,2,16,43,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,144,64,26,19,8,225,2,16,44,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,42,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,144,64,26,19,8,225,2,16,47,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,148,64,26,19,8,225,2,16,46,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,45,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,68,144,64,26,19,8,225,2,16,50,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,148,64,26,19,8,225,2,16,49,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,48,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,149,64,26,19,8,225,2,16,52,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,143,64,26,19,8,225,2,16,53,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,51,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,149,64,26,19,8,225,2,16,55,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,143,64,26,19,8,225,2,16,56,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,54,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,148,64,26,19,8,225,2,16,58,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,142,64,26,19,8,225,2,16,59,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,57,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,142,64,26,19,8,225,2,16,62,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,147,64,26,19,8,225,2,16,61,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,60,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,147,64,26,19,8,225,2,16,64,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,142,64,26,19,8,225,2,16,65,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,63,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,147,64,26,19,8,225,2,16,67,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,141,64,26,19,8,225,2,16,68,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,66,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,147,64,26,19,8,225,2,16,70,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,141,64,26,19,8,225,2,16,71,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,69,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,140,64,26,19,8,225,2,16,74,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,147,64,26,19,8,225,2,16,73,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,72,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,148,64,26,19,8,225,2,16,76,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,139,64,26,19,8,225,2,16,77,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,75,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,149,64,26,19,8,225,2,16,79,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,138,64,26,19,8,225,2,16,80,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,78,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,5,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,225,2,16,1,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,248,31,18,245,31,10,242,31,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,226,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,226,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,226,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,208,30,10,6,112,111,105,110,116,115,18,197,30,18,194,30,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,135,221,33,26,23,172,64,26,19,8,226,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,174,96,245,240,177,182,190,192,26,19,8,226,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,135,221,33,26,23,172,64,26,19,8,226,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,121,159,130,200,8,181,190,192,26,19,8,226,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,72,169,106,142,154,69,172,64,26,19,8,226,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,218,91,42,79,13,176,190,192,26,19,8,226,2,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,23,232,185,197,246,155,172,64,26,19,8,226,2,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,164,154,183,38,100,174,190,192,26,19,8,226,2,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,147,19,221,117,192,215,172,64,26,19,8,226,2,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,215,120,236,25,233,215,190,192,26,19,8,226,2,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,18,34,62,91,174,235,172,64,26,19,8,226,2,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,22,0,157,12,224,225,190,192,26,19,8,226,2,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,53,106,226,64,6,173,64,26,19,8,226,2,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,22,0,157,12,224,225,190,192,26,19,8,226,2,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,205,212,17,254,110,49,173,64,26,19,8,226,2,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,215,120,236,25,233,215,190,192,26,19,8,226,2,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,217,220,159,19,56,173,64,26,19,8,226,2,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,55,53,148,160,237,210,190,192,26,19,8,226,2,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,88,106,139,52,251,195,190,192,26,19,8,226,2,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,179,130,26,255,138,112,173,64,26,19,8,226,2,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,159,220,201,102,152,173,64,26,19,8,226,2,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,121,159,130,200,8,181,190,192,26,19,8,226,2,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,240,38,141,188,93,162,173,64,26,19,8,226,2,16,40,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,58,24,210,213,17,171,190,192,26,19,8,226,2,16,41,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,39,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,53,238,161,75,182,173,64,26,19,8,226,2,16,43,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,251,144,33,227,26,161,190,192,26,19,8,226,2,16,44,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,42,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,63,132,229,148,195,173,64,26,19,8,226,2,16,46,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,144,14,60,146,200,157,190,192,26,19,8,226,2,16,47,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,45,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,188,34,84,77,112,174,64,26,19,8,226,2,16,49,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,91,77,201,105,31,156,190,192,26,19,8,226,2,16,50,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,48,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,164,154,183,38,100,174,190,192,26,19,8,226,2,16,53,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,109,169,122,140,197,5,175,64,26,19,8,226,2,16,52,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,51,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,215,43,96,221,23,9,175,64,26,19,8,226,2,16,55,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,58,24,210,213,17,171,190,192,26,19,8,226,2,16,56,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,54,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,37,121,16,250,97,115,175,64,26,19,8,226,2,16,58,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,61,251,15,11,54,131,190,192,26,19,8,226,2,16,59,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,57,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,159,104,8,135,168,175,64,26,19,8,226,2,16,61,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,94,48,7,159,67,116,190,192,26,19,8,226,2,16,62,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,60,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,68,219,197,89,218,175,64,26,19,8,226,2,16,64,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,137,43,60,253,158,109,190,192,26,19,8,226,2,16,65,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,63,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,113,193,240,195,2,176,64,26,19,8,226,2,16,67,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,137,43,60,253,158,109,190,192,26,19,8,226,2,16,68,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,66,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,151,60,202,92,182,17,176,64,26,19,8,226,2,16,70,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,40,111,148,118,154,114,190,192,26,19,8,226,2,16,71,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,69,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,7,211,200,168,32,176,64,26,19,8,226,2,16,73,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,51,53,210,64,232,122,190,192,26,19,8,226,2,16,74,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,72,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,245,21,52,174,150,52,176,64,26,19,8,226,2,16,76,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,17,0,219,172,218,137,190,192,26,19,8,226,2,16,77,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,75,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,42,215,166,214,63,54,176,64,26,19,8,226,2,16,79,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,124,130,192,253,44,141,190,192,26,19,8,226,2,16,80,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,78,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,39,244,104,161,27,94,176,64,26,19,8,226,2,16,82,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,240,202,227,24,205,152,190,192,26,19,8,226,2,16,83,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,81,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,196,84,131,229,242,138,176,64,26,19,8,226,2,16,85,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,197,207,174,186,113,159,190,192,26,19,8,226,2,16,86,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,84,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,216,224,254,121,142,155,176,64,26,19,8,226,2,16,88,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,101,19,7,52,109,164,190,192,26,19,8,226,2,16,89,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,87,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,166,60,68,220,163,176,64,26,19,8,226,2,16,91,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,164,154,183,38,100,174,190,192,26,19,8,226,2,16,92,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,90,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,237,108,122,14,42,172,176,64,26,19,8,226,2,16,94,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,195,236,112,133,77,199,190,192,26,19,8,226,2,16,95,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,93,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,193,113,69,176,206,178,176,64,26,19,8,226,2,16,97,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,151,241,59,39,242,205,190,192,26,19,8,226,2,16,98,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,96,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,74,70,228,95,10,207,176,64,26,19,8,226,2,16,100,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,118,188,68,147,228,220,190,192,26,19,8,226,2,16,101,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,99,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,221,224,192,217,147,243,176,64,26,19,8,226,2,16,103,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,235,4,104,174,132,232,190,192,26,19,8,226,2,16,104,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,102,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,113,7,16,212,10,177,64,26,19,8,226,2,16,106,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,85,135,77,255,214,235,190,192,26,19,8,226,2,16,107,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,105,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,79,70,166,191,15,39,177,64,26,19,8,226,2,16,109,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,85,135,77,255,214,235,190,192,26,19,8,226,2,16,110,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,108,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,226,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,227,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,227,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,227,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,112,64,26,19,8,227,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,134,64,26,19,8,227,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,117,64,26,19,8,227,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,133,64,26,19,8,227,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,121,64,26,19,8,227,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,133,64,26,19,8,227,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,125,64,26,19,8,227,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,134,64,26,19,8,227,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,227,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,228,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,228,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,228,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,129,64,26,19,8,228,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,134,64,26,19,8,228,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,133,64,26,19,8,228,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,134,64,26,19,8,228,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,135,64,26,19,8,228,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,134,64,26,19,8,228,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,228,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,195,8,18,192,8,10,189,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,229,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,229,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,229,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,137,64,26,19,8,229,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,134,64,26,19,8,229,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,229,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,134,64,26,19,8,229,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,140,64,26,19,8,229,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,229,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,141,64,26,19,8,229,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,134,64,26,19,8,229,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,229,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,142,64,26,19,8,229,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,134,64,26,19,8,229,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,229,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,134,64,26,19,8,229,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,142,64,26,19,8,229,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,229,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,142,64,26,19,8,229,2,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,133,64,26,19,8,229,2,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,229,2,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,144,64,26,19,8,229,2,16,25,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,132,64,26,19,8,229,2,16,26,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,229,2,16,24,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,144,64,26,19,8,229,2,16,28,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,132,64,26,19,8,229,2,16,29,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,229,2,16,27,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,229,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,229,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,246,5,18,243,5,10,240,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,230,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,144,64,26,19,8,230,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,129,64,26,19,8,230,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,230,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,129,64,26,19,8,230,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,144,64,26,19,8,230,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,230,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,145,64,26,19,8,230,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,129,64,26,19,8,230,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,230,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,145,64,26,19,8,230,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,129,64,26,19,8,230,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,230,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,145,64,26,19,8,230,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,130,64,26,19,8,230,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,230,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,230,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,230,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,230,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,230,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,230,2,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,50,55,52,57,101,26,19,8,230,2,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,230,2,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,161,64,26,19,8,230,2,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,49,64,26,19,8,230,2,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,2,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,161,64,26,19,8,230,2,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,40,64,26,19,8,230,2,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,2,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,40,64,26,19,8,230,2,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,161,64,26,19,8,230,2,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,2,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,161,64,26,19,8,230,2,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,50,64,26,19,8,230,2,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,2,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,161,64,26,19,8,230,2,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,74,64,26,19,8,230,2,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,2,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,161,64,26,19,8,230,2,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,74,64,26,19,8,230,2,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,2,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,110,161,64,26,19,8,230,2,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,51,64,26,19,8,230,2,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,2,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,2,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,230,2,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,232,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,232,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,232,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,146,64,26,19,8,232,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,129,64,26,19,8,232,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,232,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,146,64,26,19,8,232,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,129,64,26,19,8,232,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,232,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,146,64,26,19,8,232,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,129,64,26,19,8,232,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,232,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,147,64,26,19,8,232,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,129,64,26,19,8,232,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,232,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,147,64,26,19,8,232,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,129,64,26,19,8,232,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,232,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,130,64,26,19,8,232,2,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,147,64,26,19,8,232,2,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,232,2,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,232,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,232,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,233,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,233,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,233,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,148,64,26,19,8,233,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,129,64,26,19,8,233,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,233,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,148,64,26,19,8,233,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,129,64,26,19,8,233,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,233,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,149,64,26,19,8,233,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,128,64,26,19,8,233,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,233,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,149,64,26,19,8,233,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,130,64,26,19,8,233,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,233,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,233,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,233,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,234,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,234,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,234,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,148,64,26,19,8,234,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,123,64,26,19,8,234,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,234,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,148,64,26,19,8,234,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,123,64,26,19,8,234,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,234,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,148,64,26,19,8,234,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,125,64,26,19,8,234,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,234,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,234,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,234,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,235,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,235,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,235,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,42,64,26,19,8,235,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,96,64,26,19,8,235,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,235,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,73,64,26,19,8,235,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,97,64,26,19,8,235,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,235,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,69,64,26,19,8,235,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,97,64,26,19,8,235,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,235,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,58,64,26,19,8,235,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,99,64,26,19,8,235,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,235,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,54,64,26,19,8,235,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,99,64,26,19,8,235,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,235,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,56,64,26,19,8,235,2,16,22,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,99,64,26,19,8,235,2,16,23,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,235,2,16,21,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,235,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,235,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,236,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,236,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,236,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,53,192,26,19,8,236,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,99,64,26,19,8,236,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,236,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,64,64,26,19,8,236,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,99,64,26,19,8,236,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,236,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,236,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,236,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,237,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,237,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,237,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,64,64,26,19,8,237,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,99,64,26,19,8,237,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,237,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,60,64,26,19,8,237,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,102,64,26,19,8,237,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,237,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,237,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,237,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,238,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,238,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,238,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,32,64,26,19,8,238,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,100,64,26,19,8,238,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,238,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,56,192,26,19,8,238,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,238,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,238,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,238,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,238,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,239,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,239,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,239,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,192,26,19,8,239,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,102,64,26,19,8,239,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,239,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,68,64,26,19,8,239,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,107,64,26,19,8,239,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,239,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,239,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,239,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,240,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,240,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,240,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,96,64,26,19,8,240,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,96,64,26,19,8,240,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,240,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,96,64,26,19,8,240,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,97,64,26,19,8,240,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,240,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,101,64,26,19,8,240,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,95,64,26,19,8,240,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,240,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,104,64,26,19,8,240,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,95,64,26,19,8,240,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,240,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,104,64,26,19,8,240,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,98,64,26,19,8,240,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,240,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,240,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,240,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,241,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,241,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,241,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,99,64,26,19,8,241,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,98,64,26,19,8,241,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,241,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,101,64,26,19,8,241,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,98,64,26,19,8,241,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,241,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,241,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,98,64,26,19,8,241,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,241,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,241,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,241,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,135,5,18,132,5,10,129,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,242,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,106,64,26,19,8,242,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,98,64,26,19,8,242,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,242,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,98,64,26,19,8,242,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,105,64,26,19,8,242,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,242,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,104,64,26,19,8,242,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,102,64,26,19,8,242,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,242,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,103,64,26,19,8,242,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,242,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,242,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,242,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,242,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,242,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,242,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,243,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,243,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,243,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,101,64,26,19,8,243,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,243,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,243,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,99,64,26,19,8,243,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,102,64,26,19,8,243,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,243,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,98,64,26,19,8,243,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,103,64,26,19,8,243,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,243,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,243,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,243,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,244,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,244,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,244,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,100,64,26,19,8,244,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,102,64,26,19,8,244,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,244,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,101,64,26,19,8,244,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,102,64,26,19,8,244,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,244,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,106,64,26,19,8,244,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,104,64,26,19,8,244,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,244,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,244,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,244,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,246,5,18,243,5,10,240,5,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,245,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,245,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,115,64,26,19,8,245,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,93,64,26,19,8,245,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,245,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,116,64,26,19,8,245,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,92,64,26,19,8,245,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,245,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,120,64,26,19,8,245,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,93,64,26,19,8,245,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,245,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,120,64,26,19,8,245,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,94,64,26,19,8,245,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,245,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,120,64,26,19,8,245,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,98,64,26,19,8,245,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,245,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,245,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,245,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,245,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,178,9,18,175,9,10,172,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,246,2,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,246,2,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,246,2,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,11,143,83,130,20,147,64,26,19,8,246,2,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,249,34,211,98,245,199,73,192,26,19,8,246,2,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,246,2,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,11,143,83,130,20,147,64,26,19,8,246,2,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,166,237,223,45,94,245,83,64,26,19,8,246,2,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,246,2,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,53,195,224,174,160,30,148,64,26,19,8,246,2,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,231,112,242,162,235,138,83,64,26,19,8,246,2,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,246,2,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,224,82,225,50,102,47,149,64,26,19,8,246,2,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,40,1,79,236,174,118,81,64,26,19,8,246,2,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,246,2,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,224,82,225,50,102,47,149,64,26,19,8,246,2,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,122,41,248,76,16,243,72,192,26,19,8,246,2,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,246,2,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,61,85,12,24,25,220,147,64,26,19,8,246,2,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,249,34,211,98,245,199,73,192,26,19,8,246,2,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,246,2,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,125,216,30,141,166,113,147,64,26,19,8,246,2,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,122,41,248,76,16,243,72,192,26,19,8,246,2,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,246,2,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,81,66,249,30,198,53,147,64,26,19,8,246,2,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,123,54,66,33,70,73,71,192,26,19,8,246,2,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,246,2,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,11,143,83,130,20,147,64,26,19,8,246,2,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,251,47,29,55,43,30,72,192,26,19,8,246,2,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,246,2,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,246,2,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,246,2,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,247,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,247,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,247,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,116,64,26,19,8,247,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,98,64,26,19,8,247,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,247,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,118,64,26,19,8,247,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,98,64,26,19,8,247,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,247,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,121,64,26,19,8,247,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,98,64,26,19,8,247,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,247,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,247,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,247,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,248,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,248,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,248,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,120,64,26,19,8,248,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,98,64,26,19,8,248,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,248,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,248,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,64,26,19,8,248,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,248,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,248,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,103,64,26,19,8,248,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,248,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,248,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,248,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,249,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,249,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,249,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,118,64,26,19,8,249,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,100,64,26,19,8,249,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,249,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,116,64,26,19,8,249,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,103,64,26,19,8,249,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,249,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,249,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,249,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,250,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,250,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,250,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,117,64,26,19,8,250,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,102,64,26,19,8,250,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,250,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,118,64,26,19,8,250,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,102,64,26,19,8,250,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,250,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,121,64,26,19,8,250,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,105,64,26,19,8,250,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,250,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,250,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,250,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,195,8,18,192,8,10,189,8,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,22,55,126,106,69,177,150,64,26,19,8,251,2,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,17,18,145,39,82,159,101,192,26,19,8,251,2,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,251,2,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,22,55,126,106,69,177,150,64,26,19,8,251,2,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,119,93,65,96,35,139,83,192,26,19,8,251,2,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,251,2,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,88,170,87,131,127,151,64,26,19,8,251,2,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,119,93,65,96,35,139,83,192,26,19,8,251,2,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,251,2,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,54,218,46,235,149,245,83,192,26,19,8,251,2,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,45,224,182,209,120,147,151,64,26,19,8,251,2,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,251,2,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,45,224,182,209,120,147,151,64,26,19,8,251,2,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,114,221,81,65,193,42,100,192,26,19,8,251,2,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,251,2,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,165,82,1,205,243,150,64,26,19,8,251,2,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,17,18,145,39,82,159,101,192,26,19,8,251,2,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,251,2,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,243,50,132,101,221,50,150,64,26,19,8,251,2,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,208,142,126,178,196,9,102,192,26,19,8,251,2,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,251,2,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,243,50,132,101,221,50,150,64,26,19,8,251,2,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,48,77,245,247,253,62,102,192,26,19,8,251,2,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,251,2,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,251,2,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,251,2,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,251,2,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,251,2,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,251,2,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,252,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,252,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,252,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,128,64,26,19,8,252,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,99,64,26,19,8,252,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,252,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,129,64,26,19,8,252,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,100,64,26,19,8,252,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,252,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,129,64,26,19,8,252,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,252,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,252,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,129,64,26,19,8,252,2,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,101,64,26,19,8,252,2,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,252,2,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,129,64,26,19,8,252,2,16,19,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,105,64,26,19,8,252,2,16,20,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,252,2,16,18,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,252,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,252,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,253,2,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,253,2,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,253,2,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,42,52,150,15,91,152,64,26,19,8,253,2,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,104,130,75,115,72,207,111,192,26,19,8,253,2,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,253,2,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,42,52,150,15,91,152,64,26,19,8,253,2,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,18,31,219,251,135,245,99,192,26,19,8,253,2,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,253,2,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,148,35,15,172,244,47,153,64,26,19,8,253,2,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,241,214,44,87,166,255,100,192,26,19,8,253,2,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,253,2,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,251,189,212,155,54,153,64,26,19,8,253,2,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,81,149,163,156,223,52,101,192,26,19,8,253,2,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,253,2,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,251,189,212,155,54,153,64,26,19,8,253,2,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,137,202,249,23,42,197,110,192,26,19,8,253,2,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,253,2,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,77,27,27,162,36,51,152,64,26,19,8,253,2,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,83,252,9,10,80,135,112,192,26,19,8,253,2,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,253,2,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,253,2,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,253,2,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,254,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,254,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,254,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,128,64,26,19,8,254,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,104,64,26,19,8,254,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,254,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,104,64,26,19,8,254,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,129,64,26,19,8,254,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,254,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,130,64,26,19,8,254,2,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,105,64,26,19,8,254,2,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,254,2,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,254,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,254,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,129,64,26,19,8,255,2,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,105,64,26,19,8,255,2,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,2,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,129,64,26,19,8,255,2,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,108,64,26,19,8,255,2,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,2,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,2,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,255,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,255,2,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,255,2,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,255,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,135,5,18,132,5,10,129,5,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,128,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,128,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,128,64,26,19,8,128,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,108,64,26,19,8,128,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,128,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,128,64,26,19,8,128,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,107,64,26,19,8,128,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,128,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,127,64,26,19,8,128,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,109,64,26,19,8,128,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,128,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,124,64,26,19,8,128,3,16,16,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,112,64,26,19,8,128,3,16,17,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,128,3,16,15,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,128,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,128,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,128,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,129,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,97,99,50,57,100,26,19,8,129,3,16,3,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,129,3,16,4,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,126,64,26,19,8,129,3,16,7,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,110,64,26,19,8,129,3,16,8,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,129,3,16,6,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,113,64,26,19,8,129,3,16,11,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,129,64,26,19,8,129,3,16,10,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,129,3,16,9,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,129,3,16,13,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,114,64,26,19,8,129,3,16,14,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,129,3,16,12,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,129,3,16,5,26,12,98,255,29,105,217,176,234,142,137,48,231,211,18,19,8,129,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,144,11,18,141,11,10,138,11,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,130,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,130,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,10,220,188,204,16,21,151,64,26,19,8,130,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,233,248,77,144,30,160,10,192,26,19,8,130,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,130,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,30,166,72,30,54,27,93,64,26,19,8,130,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,10,220,188,204,16,21,151,64,26,19,8,130,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,130,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,94,41,91,147,195,176,92,64,26,19,8,130,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,145,103,195,75,110,167,151,64,26,19,8,130,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,130,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,225,1,227,190,182,97,152,64,26,19,8,130,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,96,54,165,103,249,6,91,64,26,19,8,130,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,130,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,152,236,164,224,176,14,153,64,26,19,8,130,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,225,60,202,81,20,50,90,64,26,19,8,130,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,130,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,196,83,9,88,21,153,64,26,19,8,130,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,97,67,239,59,47,93,89,64,26,19,8,130,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,130,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,196,83,9,88,21,153,64,26,19,8,130,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,49,48,87,170,196,162,32,192,26,19,8,130,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,130,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,212,166,33,33,130,197,152,64,26,19,8,130,3,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,43,252,46,89,237,73,39,192,26,19,8,130,3,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,130,3,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,189,253,232,185,78,227,151,64,26,19,8,130,3,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,43,252,46,89,237,73,39,192,26,19,8,130,3,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,130,3,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,206,33,64,140,63,94,151,64,26,19,8,130,3,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,46,22,195,1,89,246,35,192,26,19,8,130,3,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,130,3,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,214,179,107,245,183,27,151,64,26,19,8,130,3,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,105,148,214,165,96,158,26,192,26,19,8,130,3,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,130,3,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,130,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,130,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,130,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,229,6,18,226,6,10,223,6,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,131,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,94,64,26,19,8,131,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,114,64,26,19,8,131,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,131,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,99,64,26,19,8,131,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,113,64,26,19,8,131,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,131,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,101,64,26,19,8,131,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,113,64,26,19,8,131,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,131,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,113,64,26,19,8,131,3,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,101,64,26,19,8,131,3,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,131,3,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,102,64,26,19,8,131,3,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,115,64,26,19,8,131,3,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,131,3,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,101,64,26,19,8,131,3,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,117,64,26,19,8,131,3,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,131,3,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,131,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,131,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,131,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,131,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,132,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,132,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,132,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,96,64,26,19,8,132,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,116,64,26,19,8,132,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,132,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,99,64,26,19,8,132,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,115,64,26,19,8,132,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,132,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,101,64,26,19,8,132,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,115,64,26,19,8,132,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,132,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,132,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,132,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,161,10,18,158,10,10,155,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,133,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,133,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,133,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,135,11,141,255,114,179,103,64,26,19,8,133,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,234,160,88,252,100,117,150,64,26,19,8,133,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,133,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,160,88,252,100,117,150,64,26,19,8,133,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,91,121,147,64,61,159,117,64,26,19,8,133,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,133,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,251,186,28,251,3,106,117,64,26,19,8,133,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,162,139,26,30,95,34,151,64,26,19,8,133,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,133,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,233,147,14,40,47,31,152,64,26,19,8,133,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,220,127,184,42,88,202,116,64,26,19,8,133,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,133,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,172,32,253,135,187,175,116,64,26,19,8,133,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,181,107,189,80,214,37,152,64,26,19,8,133,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,133,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,181,107,189,80,214,37,152,64,26,19,8,133,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,205,104,171,44,157,165,115,64,26,19,8,133,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,133,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,33,25,238,104,98,37,110,64,26,19,8,133,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,237,92,164,92,235,253,151,64,26,19,8,133,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,133,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,237,92,164,92,235,253,151,64,26,19,8,133,3,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,133,254,66,43,61,93,105,64,26,19,8,133,3,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,133,3,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,150,48,89,128,42,134,151,64,26,19,8,133,3,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,198,129,85,160,202,242,104,64,26,19,8,133,3,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,133,3,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,241,250,170,22,104,150,64,26,19,8,133,3,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,133,254,66,43,61,93,105,64,26,19,8,133,3,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,133,3,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,133,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,133,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,229,6,18,226,6,10,223,6,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,113,64,26,19,8,133,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,105,64,26,19,8,133,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,133,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,105,64,26,19,8,133,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,113,64,26,19,8,133,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,133,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,109,64,26,19,8,133,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,112,64,26,19,8,133,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,133,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,112,64,26,19,8,133,3,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,112,64,26,19,8,133,3,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,133,3,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,114,64,26,19,8,133,3,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,112,64,26,19,8,133,3,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,133,3,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,111,64,26,19,8,133,3,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,117,64,26,19,8,133,3,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,133,3,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,133,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,133,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,133,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,133,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,133,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,135,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,135,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,135,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,135,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,115,64,26,19,8,135,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,135,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,109,64,26,19,8,135,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,115,64,26,19,8,135,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,135,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,113,64,26,19,8,135,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,114,64,26,19,8,135,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,135,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,135,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,135,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,161,10,18,158,10,10,155,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,136,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,136,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,136,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,115,177,90,166,34,153,64,26,19,8,136,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,139,50,107,124,20,182,98,64,26,19,8,136,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,136,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,115,177,90,166,34,153,64,26,19,8,136,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,71,136,122,138,229,29,104,64,26,19,8,136,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,136,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,80,215,102,2,171,187,153,64,26,19,8,136,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,71,136,122,138,229,29,104,64,26,19,8,136,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,136,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,123,109,140,112,139,247,153,64,26,19,8,136,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,39,77,22,186,57,126,103,64,26,19,8,136,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,136,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,29,234,193,217,4,154,64,26,19,8,136,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,232,214,77,25,226,62,102,64,26,19,8,136,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,136,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,29,234,193,217,4,154,64,26,19,8,136,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,108,247,6,172,104,22,98,64,26,19,8,136,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,136,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,71,69,59,153,50,254,153,64,26,19,8,136,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,12,57,144,102,47,225,97,64,26,19,8,136,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,136,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,134,196,83,249,200,153,64,26,19,8,136,3,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,76,188,162,219,188,118,97,64,26,19,8,136,3,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,136,3,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,20,246,183,9,8,153,64,26,19,8,136,3,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,76,188,162,219,188,118,97,64,26,19,8,136,3,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,136,3,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,141,233,61,20,244,152,64,26,19,8,136,3,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,172,122,25,33,246,171,97,64,26,19,8,136,3,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,136,3,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,136,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,136,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,229,6,18,226,6,10,223,6,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,137,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,137,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,115,64,26,19,8,137,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,112,64,26,19,8,137,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,137,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,118,64,26,19,8,137,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,111,64,26,19,8,137,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,137,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,111,64,26,19,8,137,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,119,64,26,19,8,137,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,137,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,112,64,26,19,8,137,3,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,119,64,26,19,8,137,3,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,137,3,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,112,64,26,19,8,137,3,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,119,64,26,19,8,137,3,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,137,3,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,117,64,26,19,8,137,3,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,117,64,26,19,8,137,3,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,137,3,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,137,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,137,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,137,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,138,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,138,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,138,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,114,64,26,19,8,138,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,138,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,118,64,26,19,8,138,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,114,64,26,19,8,138,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,138,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,138,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,138,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,138,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,139,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,139,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,139,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,113,208,7,109,139,212,101,192,26,19,8,139,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,223,244,152,234,128,11,154,64,26,19,8,139,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,139,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,223,244,152,234,128,11,154,64,26,19,8,139,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,116,67,173,183,183,222,86,192,26,19,8,139,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,139,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,11,166,232,59,48,155,64,26,19,8,139,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,116,67,173,183,183,222,86,192,26,19,8,139,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,139,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,134,187,3,58,138,61,155,64,26,19,8,139,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,173,133,77,7,56,197,94,192,26,19,8,139,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,139,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,227,84,17,227,54,155,64,26,19,8,139,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,240,201,226,130,112,169,102,192,26,19,8,139,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,139,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,11,166,232,59,48,155,64,26,19,8,139,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,80,136,89,200,169,222,102,192,26,19,8,139,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,139,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,227,189,46,31,61,234,153,64,26,19,8,139,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,240,201,226,130,112,169,102,192,26,19,8,139,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,139,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,139,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,139,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,140,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,140,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,140,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,91,64,26,19,8,140,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,119,64,26,19,8,140,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,140,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,101,64,26,19,8,140,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,119,64,26,19,8,140,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,140,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,116,64,26,19,8,140,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,118,64,26,19,8,140,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,140,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,140,3,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,118,64,26,19,8,140,3,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,140,3,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,121,64,26,19,8,140,3,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,117,64,26,19,8,140,3,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,140,3,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,140,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,140,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,144,11,18,141,11,10,138,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,141,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,141,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,141,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,208,221,139,236,197,230,152,64,26,19,8,141,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,187,55,10,134,118,212,117,64,26,19,8,141,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,141,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,208,221,139,236,197,230,152,64,26,19,8,141,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,1,194,182,255,189,68,128,64,26,19,8,141,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,141,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,52,101,152,102,187,250,152,64,26,19,8,141,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,48,33,114,162,90,95,128,64,26,19,8,141,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,141,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,175,149,221,71,228,240,153,64,26,19,8,141,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,48,33,114,162,90,95,128,64,26,19,8,141,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,141,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,194,182,255,189,68,128,64,26,19,8,141,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,71,69,59,153,50,254,153,64,26,19,8,141,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,141,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,204,71,19,40,18,154,64,26,19,8,141,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,242,108,96,1,193,100,127,64,26,19,8,141,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,141,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,67,124,165,100,118,31,154,64,26,19,8,141,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,197,39,57,7,144,246,123,64,26,19,8,141,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,141,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,119,164,246,59,207,24,154,64,26,19,8,141,3,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,184,29,118,221,10,40,121,64,26,19,8,141,3,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,141,3,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,123,109,140,112,139,247,153,64,26,19,8,141,3,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,19,179,179,133,89,118,64,26,19,8,141,3,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,141,3,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,90,121,119,56,81,153,64,26,19,8,141,3,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,218,114,110,86,34,116,118,64,26,19,8,141,3,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,141,3,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,56,46,46,155,119,217,152,64,26,19,8,141,3,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,106,144,160,62,248,195,118,64,26,19,8,141,3,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,141,3,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,141,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,141,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,204,14,18,201,14,10,198,14,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,142,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,161,64,26,19,8,142,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,94,110,64,26,19,8,142,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,230,161,64,26,19,8,142,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,254,110,64,26,19,8,142,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,161,64,26,19,8,142,3,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,254,110,64,26,19,8,142,3,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,161,64,26,19,8,142,3,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,254,109,64,26,19,8,142,3,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,161,64,26,19,8,142,3,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,30,109,64,26,19,8,142,3,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,161,64,26,19,8,142,3,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,94,107,64,26,19,8,142,3,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,126,106,64,26,19,8,142,3,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,174,161,64,26,19,8,142,3,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,198,161,64,26,19,8,142,3,16,28,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,158,105,64,26,19,8,142,3,16,29,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,27,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,94,105,64,26,19,8,142,3,16,32,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,161,64,26,19,8,142,3,16,31,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,30,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,246,161,64,26,19,8,142,3,16,34,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,126,105,64,26,19,8,142,3,16,35,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,33,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,162,64,26,19,8,142,3,16,37,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,94,106,64,26,19,8,142,3,16,38,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,36,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,14,162,64,26,19,8,142,3,16,40,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,30,107,64,26,19,8,142,3,16,41,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,39,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,10,162,64,26,19,8,142,3,16,43,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,254,109,64,26,19,8,142,3,16,44,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,42,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,254,110,64,26,19,8,142,3,16,47,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,254,161,64,26,19,8,142,3,16,46,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,45,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,238,161,64,26,19,8,142,3,16,49,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,90,62,111,64,26,19,8,142,3,16,50,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,48,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,142,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,142,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,142,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,212,7,18,209,7,10,206,7,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,113,134,117,243,117,154,64,26,19,8,143,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,228,175,111,156,64,60,107,64,26,19,8,143,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,143,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,190,81,158,46,226,128,114,64,26,19,8,143,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,159,113,134,117,243,117,154,64,26,19,8,143,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,143,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,11,166,232,59,48,155,64,26,19,8,143,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,190,81,158,46,226,128,114,64,26,19,8,143,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,143,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,134,187,3,58,138,61,155,64,26,19,8,143,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,2,222,137,152,182,133,109,64,26,19,8,143,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,143,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,34,52,247,191,148,41,155,64,26,19,8,143,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,163,44,93,39,179,166,107,64,26,19,8,143,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,143,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,242,212,59,29,248,14,155,64,26,19,8,143,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,68,110,230,225,121,113,107,64,26,19,8,143,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,143,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,179,15,48,186,64,154,64,26,19,8,143,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,68,110,230,225,121,113,107,64,26,19,8,143,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,143,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,143,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,143,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,143,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,143,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,143,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,178,9,18,175,9,10,172,9,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,211,153,215,76,76,111,154,64,26,19,8,144,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,168,125,35,198,195,155,42,64,26,19,8,144,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,144,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,211,153,215,76,76,111,154,64,26,19,8,144,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,87,54,198,41,53,70,76,64,26,19,8,144,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,144,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,37,222,203,169,1,155,64,26,19,8,144,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,87,54,198,41,53,70,76,64,26,19,8,144,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,144,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,178,81,41,168,106,121,155,64,26,19,8,144,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,85,41,124,85,255,239,77,64,26,19,8,144,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,144,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,126,41,216,208,17,128,155,64,26,19,8,144,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,209,164,125,58,118,161,48,64,26,19,8,144,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,144,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,130,242,109,5,206,94,155,64,26,19,8,144,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,110,255,15,34,188,243,19,64,26,19,8,144,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,144,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,11,166,232,59,48,155,64,26,19,8,144,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,231,157,129,17,171,149,250,63,26,19,8,144,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,144,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,73,53,158,154,124,154,64,26,19,8,144,3,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,231,157,129,17,171,149,250,63,26,19,8,144,3,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,144,3,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,15,84,84,141,29,38,154,64,26,19,8,144,3,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,104,203,231,208,228,154,26,64,26,19,8,144,3,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,144,3,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,144,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,144,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,144,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,144,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,144,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,144,11,18,141,11,10,138,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,145,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,145,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,145,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,39,242,27,163,146,145,64,26,19,8,145,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,34,144,4,147,125,22,114,192,26,19,8,145,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,145,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,39,242,27,163,146,145,64,26,19,8,145,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,241,214,44,87,166,255,100,192,26,19,8,145,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,145,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,50,90,63,204,51,149,100,192,26,19,8,145,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,23,149,198,178,42,213,145,64,26,19,8,145,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,145,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,172,211,176,229,249,146,64,26,19,8,145,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,178,96,100,182,78,192,99,192,26,19,8,145,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,145,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,185,146,155,205,119,40,147,64,26,19,8,145,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,144,11,108,61,55,116,102,192,26,19,8,145,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,145,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,233,241,86,112,20,67,147,64,26,19,8,145,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,14,248,252,126,230,242,104,192,26,19,8,145,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,145,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,137,51,224,42,219,13,147,64,26,19,8,145,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,83,252,9,10,80,135,112,192,26,19,8,145,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,145,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,172,211,176,229,249,146,64,26,19,8,145,3,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,227,25,60,242,37,215,112,192,26,19,8,145,3,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,145,3,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,146,197,11,148,83,203,146,64,26,19,8,145,3,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,19,121,247,148,194,241,112,192,26,19,8,145,3,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,145,3,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,135,119,148,202,84,133,145,64,26,19,8,145,3,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,19,121,247,148,194,241,112,192,26,19,8,145,3,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,145,3,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,239,199,54,121,6,120,145,64,26,19,8,145,3,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,67,216,178,55,95,12,113,192,26,19,8,145,3,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,145,3,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,145,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,145,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,135,5,18,132,5,10,129,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,146,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,89,6,29,129,90,148,64,26,19,8,146,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,65,203,104,99,41,182,114,192,26,19,8,146,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,146,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,89,6,29,129,90,148,64,26,19,8,146,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,178,96,100,182,78,192,99,192,26,19,8,146,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,146,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,148,129,87,244,217,83,148,64,26,19,8,146,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,53,116,211,116,159,65,97,192,26,19,8,146,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,146,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,53,116,211,116,159,65,97,192,26,19,8,146,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,200,169,168,203,50,77,148,64,26,19,8,146,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,146,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,146,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,146,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,146,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,146,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,147,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,147,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,147,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,148,129,87,244,217,83,148,64,26,19,8,147,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,80,136,89,200,169,222,102,192,26,19,8,147,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,147,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,89,6,29,129,90,148,64,26,19,8,147,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,176,70,208,13,227,19,103,192,26,19,8,147,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,147,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,218,237,172,91,67,149,64,26,19,8,147,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,176,70,208,13,227,19,103,192,26,19,8,147,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,147,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,147,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,147,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,152,4,18,149,4,10,146,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,148,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,148,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,11,143,83,130,20,147,64,26,19,8,148,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,177,83,26,226,24,106,101,192,26,19,8,148,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,148,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,11,143,83,130,20,147,64,26,19,8,148,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,181,122,248,94,186,108,96,192,26,19,8,148,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,148,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,17,88,120,159,100,149,64,26,19,8,148,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,181,122,248,94,186,108,96,192,26,19,8,148,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,148,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,148,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,148,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,148,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,178,9,18,175,9,10,172,9,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,149,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,149,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,72,119,216,38,176,141,64,26,19,8,149,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,84,175,55,69,75,225,97,192,26,19,8,149,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,149,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,4,226,30,185,112,154,63,192,26,19,8,149,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,234,72,119,216,38,176,141,64,26,19,8,149,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,149,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,250,163,73,42,143,143,64,26,19,8,149,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,5,239,104,141,166,240,61,192,26,19,8,149,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,149,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,225,169,1,155,120,156,143,64,26,19,8,149,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,252,60,103,11,97,116,70,192,26,19,8,149,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,149,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,74,70,248,219,129,143,64,26,19,8,149,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,119,93,65,96,35,139,83,192,26,19,8,149,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,149,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,137,125,182,190,183,36,143,64,26,19,8,149,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,174,146,151,219,109,27,93,192,26,19,8,149,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,149,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,44,127,40,29,29,154,95,192,26,19,8,149,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,193,110,157,202,204,252,142,64,26,19,8,149,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,149,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,191,63,121,126,239,142,64,26,19,8,149,3,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,246,253,10,212,71,2,96,192,26,19,8,149,3,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,149,3,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,130,248,212,41,117,189,141,64,26,19,8,149,3,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,246,253,10,212,71,2,96,192,26,19,8,149,3,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,149,3,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,149,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,149,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,149,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,150,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,150,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,150,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,235,138,85,63,103,143,64,26,19,8,150,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,20,44,37,208,189,75,98,192,26,19,8,150,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,150,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,25,155,232,166,141,116,143,64,26,19,8,150,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,180,109,174,138,132,22,98,192,26,19,8,150,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,150,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,74,70,248,219,129,143,64,26,19,8,150,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,177,172,43,132,217,199,89,192,26,19,8,150,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,150,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,121,89,95,236,198,169,143,64,26,19,8,150,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,57,244,194,147,1,162,80,192,26,19,8,150,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,150,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,121,89,95,236,198,169,143,64,26,19,8,150,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,123,54,66,33,70,73,71,192,26,19,8,150,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,150,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,225,169,1,155,120,156,143,64,26,19,8,150,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,123,54,66,33,70,73,71,192,26,19,8,150,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,150,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,150,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,150,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,116,245,207,251,56,154,79,192,26,19,8,151,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,169,184,26,143,99,196,143,64,26,19,8,151,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,151,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,140,210,168,90,216,144,64,26,19,8,151,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,116,245,207,251,56,154,79,192,26,19,8,151,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,151,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,151,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,151,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,151,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,151,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,151,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,229,6,18,226,6,10,223,6,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,152,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,152,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,66,85,228,195,16,144,64,26,19,8,152,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,251,47,29,55,43,30,72,192,26,19,8,152,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,152,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,66,85,228,195,16,144,64,26,19,8,152,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,14,61,37,135,233,245,51,192,26,19,8,152,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,152,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,76,202,97,94,185,36,144,64,26,19,8,152,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,200,86,193,64,51,156,58,64,26,19,8,152,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,152,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,162,16,135,96,43,144,64,26,19,8,152,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,199,73,119,108,253,69,60,64,26,19,8,152,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,152,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,216,30,254,17,211,149,144,64,26,19,8,152,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,203,112,85,233,158,72,55,64,26,19,8,152,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,152,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,139,64,42,255,16,100,145,64,26,19,8,152,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,3,5,72,118,167,222,91,191,26,19,8,152,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,152,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,152,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,152,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,152,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,187,15,18,184,15,10,181,15,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,153,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,153,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,153,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,147,14,10,6,112,111,105,110,116,115,18,136,14,18,133,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,184,26,143,99,196,143,64,26,19,8,153,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,35,205,38,155,215,29,88,64,26,19,8,153,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,72,1,204,41,253,69,144,64,26,19,8,153,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,35,205,38,155,215,29,88,64,26,19,8,153,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,224,176,41,123,75,83,144,64,26,19,8,153,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,226,73,20,38,74,136,88,64,26,19,8,153,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,16,16,229,29,232,109,144,64,26,19,8,153,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,220,21,236,212,114,47,95,64,26,19,8,153,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,231,147,70,143,116,144,64,26,19,8,153,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,204,181,125,241,161,75,98,64,26,19,8,153,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,124,41,29,1,86,63,144,64,26,19,8,153,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,138,37,33,168,222,95,100,64,26,19,8,153,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,25,155,232,166,141,116,143,64,26,19,8,153,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,8,18,178,233,141,222,102,64,26,19,8,153,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,168,83,59,164,84,169,102,64,26,19,8,153,3,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,25,155,232,166,141,116,143,64,26,19,8,153,3,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,119,145,212,156,249,143,64,26,19,8,153,3,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,41,90,96,142,111,212,101,64,26,19,8,153,3,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,203,195,60,116,158,249,144,64,26,19,8,153,3,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,202,168,51,29,108,245,99,64,26,19,8,153,3,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,41,90,96,142,111,212,101,64,26,19,8,153,3,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,255,235,141,75,247,242,144,64,26,19,8,153,3,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,108,5,198,46,101,196,144,64,26,19,8,153,3,16,40,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,102,195,222,90,145,189,104,64,26,19,8,153,3,16,41,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,39,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,12,71,79,233,43,143,144,64,26,19,8,153,3,16,43,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,132,241,248,86,7,7,107,64,26,19,8,153,3,16,44,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,42,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,120,96,135,204,153,96,144,64,26,19,8,153,3,16,46,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,3,235,211,108,236,219,107,64,26,19,8,153,3,16,47,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,45,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,3,235,211,108,236,219,107,64,26,19,8,153,3,16,50,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,243,144,204,173,194,86,145,64,26,19,8,153,3,16,49,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,48,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,195,103,193,247,94,70,108,64,26,19,8,153,3,16,53,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,31,39,242,27,163,146,145,64,26,19,8,153,3,16,52,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,51,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,153,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,154,3,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,49,101,99,102,99,26,19,8,154,3,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,154,3,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,250,155,1,194,237,224,139,64,26,19,8,154,3,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,246,13,130,56,226,37,69,64,26,19,8,154,3,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,154,3,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,249,190,110,144,199,102,64,26,19,8,154,3,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,250,155,1,194,237,224,139,64,26,19,8,154,3,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,154,3,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,249,190,110,144,199,102,64,26,19,8,154,3,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,145,203,111,163,65,238,139,64,26,19,8,154,3,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,154,3,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,249,190,110,144,199,102,64,26,19,8,154,3,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,250,155,1,194,237,224,139,64,26,19,8,154,3,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,154,3,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,154,3,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,154,3,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,213,20,18,210,20,10,207,20,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,155,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,155,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,155,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,173,19,10,6,112,111,105,110,116,115,18,162,19,18,159,19,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,106,234,188,215,50,192,99,64,26,19,8,155,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,162,233,98,102,68,70,146,64,26,19,8,155,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,182,242,159,104,163,146,64,26,19,8,155,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,106,234,188,215,50,192,99,64,26,19,8,155,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,46,62,255,25,94,183,146,64,26,19,8,155,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,42,103,170,98,165,42,100,64,26,19,8,155,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,94,157,186,188,250,209,146,64,26,19,8,155,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,39,77,22,186,57,126,103,64,26,19,8,155,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,94,157,186,188,250,209,146,64,26,19,8,155,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,6,5,104,21,88,136,104,64,26,19,8,155,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,146,197,11,148,83,203,146,64,26,19,8,155,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,38,64,204,229,3,40,105,64,26,19,8,155,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,98,102,80,241,182,176,146,64,26,19,8,155,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,69,123,48,182,175,199,105,64,26,19,8,155,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,226,162,37,200,10,230,108,64,26,19,8,155,3,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,170,123,142,207,188,3,146,64,26,19,8,155,3,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,18,204,48,126,110,246,145,64,26,19,8,155,3,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,226,162,37,200,10,230,108,64,26,19,8,155,3,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,99,169,74,178,37,17,108,64,26,19,8,155,3,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,14,3,155,73,178,23,146,64,26,19,8,155,3,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,102,47,230,37,115,143,146,64,26,19,8,155,3,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,101,182,148,134,91,103,106,64,26,19,8,155,3,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,237,186,236,164,208,33,147,64,26,19,8,155,3,16,40,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,133,254,66,43,61,93,105,64,26,19,8,155,3,16,41,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,39,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,242,131,130,217,140,0,147,64,26,19,8,155,3,16,43,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,68,110,230,225,121,113,107,64,26,19,8,155,3,16,44,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,42,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,102,47,230,37,115,143,146,64,26,19,8,155,3,16,46,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,207,130,63,213,8,82,112,64,26,19,8,155,3,16,47,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,45,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,233,98,102,68,70,146,64,26,19,8,155,3,16,49,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,110,183,126,187,153,198,113,64,26,19,8,155,3,16,50,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,48,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,166,178,248,154,0,37,146,64,26,19,8,155,3,16,52,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,206,117,245,0,211,251,113,64,26,19,8,155,3,16,53,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,51,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,14,249,7,118,96,145,113,64,26,19,8,155,3,16,56,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,166,178,248,154,0,37,146,64,26,19,8,155,3,16,55,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,54,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,233,98,102,68,70,146,64,26,19,8,155,3,16,58,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,95,160,113,189,222,161,112,64,26,19,8,155,3,16,59,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,57,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,106,248,123,90,47,110,146,64,26,19,8,155,3,16,61,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,160,35,132,50,108,55,112,64,26,19,8,155,3,16,62,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,60,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,50,7,149,78,26,150,146,64,26,19,8,155,3,16,64,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,64,101,13,237,50,2,112,64,26,19,8,155,3,16,65,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,63,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,212,36,136,62,243,146,64,26,19,8,155,3,16,67,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,64,101,13,237,50,2,112,64,26,19,8,155,3,16,68,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,66,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,161,180,193,98,80,147,64,26,19,8,155,3,16,70,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,47,65,182,26,66,135,112,64,26,19,8,155,3,16,71,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,69,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,155,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,238,12,18,235,12,10,232,12,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,156,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,156,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,156,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,196,224,18,151,118,110,148,64,26,19,8,156,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,172,122,25,33,246,171,97,64,26,19,8,156,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,254,68,127,76,190,148,64,26,19,8,156,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,172,122,25,33,246,171,97,64,26,19,8,156,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,63,206,57,19,137,148,64,26,19,8,156,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,108,247,6,172,104,22,98,64,26,19,8,156,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,184,193,191,29,117,148,64,26,19,8,156,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,74,162,14,51,81,202,100,64,26,19,8,156,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,89,6,29,129,90,148,64,26,19,8,156,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,75,175,88,7,135,32,99,64,26,19,8,156,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,109,180,199,186,181,246,147,64,26,19,8,156,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,169,96,133,120,138,255,100,64,26,19,8,156,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,152,74,237,40,150,50,148,64,26,19,8,156,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,139,50,107,124,20,182,98,64,26,19,8,156,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,200,169,168,203,50,77,148,64,26,19,8,156,3,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,204,181,125,241,161,75,98,64,26,19,8,156,3,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,138,37,33,168,222,95,100,64,26,19,8,156,3,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,209,59,212,52,171,10,148,64,26,19,8,156,3,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,89,6,29,129,90,148,64,26,19,8,156,3,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,204,181,125,241,161,75,98,64,26,19,8,156,3,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,196,224,18,151,118,110,148,64,26,19,8,156,3,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,44,116,244,54,219,128,98,64,26,19,8,156,3,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,63,206,57,19,137,148,64,26,19,8,156,3,16,40,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,171,109,207,76,192,85,99,64,26,19,8,156,3,16,41,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,39,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,196,224,18,151,118,110,148,64,26,19,8,156,3,16,43,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,76,188,162,219,188,118,97,64,26,19,8,156,3,16,44,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,42,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,156,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,157,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,157,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,157,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,249,65,64,26,19,8,157,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,202,161,64,26,19,8,157,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,157,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,161,64,26,19,8,157,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,121,64,64,26,19,8,157,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,157,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,162,64,26,19,8,157,3,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,121,66,64,26,19,8,157,3,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,157,3,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,162,64,26,19,8,157,3,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,249,73,64,26,19,8,157,3,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,157,3,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,162,64,26,19,8,157,3,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,180,60,81,64,26,19,8,157,3,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,157,3,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,157,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,157,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,136,18,18,133,18,10,130,18,10,224,16,10,6,112,111,105,110,116,115,18,213,16,18,210,16,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,229,99,168,206,181,52,85,64,26,19,8,158,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,24,68,200,62,123,7,149,64,26,19,8,158,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,211,247,31,149,49,147,149,64,26,19,8,158,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,165,224,149,89,40,159,85,64,26,19,8,158,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,46,138,96,117,180,149,64,26,19,8,158,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,36,218,112,111,13,116,86,64,26,19,8,158,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,51,182,150,218,106,200,149,64,26,19,8,158,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,35,205,38,155,215,29,88,64,26,19,8,158,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,141,69,3,18,207,149,64,26,19,8,158,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,225,60,202,81,20,50,90,64,26,19,8,158,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,220,21,236,212,114,47,95,64,26,19,8,158,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,51,182,150,218,106,200,149,64,26,19,8,158,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,211,247,31,149,49,147,149,64,26,19,8,158,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,12,57,144,102,47,225,97,64,26,19,8,158,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,72,163,131,225,23,34,149,64,26,19,8,158,3,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,234,227,151,237,23,149,100,64,26,19,8,158,3,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,27,119,103,34,14,149,64,26,19,8,158,3,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,105,221,114,3,253,105,101,64,26,19,8,158,3,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,176,243,37,144,201,20,149,64,26,19,8,158,3,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,35,38,56,61,152,123,108,64,26,19,8,158,3,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,27,119,103,34,14,149,64,26,19,8,158,3,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,125,206,139,185,84,235,114,64,26,19,8,158,3,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,125,206,139,185,84,235,114,64,26,19,8,158,3,16,41,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,219,137,75,254,169,80,149,64,26,19,8,158,3,16,40,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,39,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,233,6,161,70,107,149,64,26,19,8,158,3,16,43,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,142,242,226,139,69,102,114,64,26,19,8,158,3,16,44,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,42,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,59,72,194,67,227,133,149,64,26,19,8,158,3,16,46,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,191,94,232,2,24,215,112,64,26,19,8,158,3,16,47,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,45,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,7,32,113,108,138,140,149,64,26,19,8,158,3,16,49,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,225,149,219,243,212,143,110,64,26,19,8,158,3,16,50,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,48,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,163,152,100,242,148,120,149,64,26,19,8,158,3,16,52,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,162,31,19,83,125,80,109,64,26,19,8,158,3,16,53,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,51,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,176,243,37,144,201,20,149,64,26,19,8,158,3,16,55,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,98,156,0,222,239,186,109,64,26,19,8,158,3,16,56,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,54,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,128,148,106,237,44,250,148,64,26,19,8,158,3,16,58,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,225,149,219,243,212,143,110,64,26,19,8,158,3,16,59,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,57,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,132,93,0,34,233,216,148,64,26,19,8,158,3,16,61,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,160,35,132,50,108,55,112,64,26,19,8,158,3,16,62,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,60,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,158,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,100,55,49,55,53,26,19,8,158,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,158,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,158,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,135,5,18,132,5,10,129,5,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,158,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,158,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,66,162,64,26,19,8,158,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,121,70,64,26,19,8,158,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,158,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,70,162,64,26,19,8,158,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,249,72,64,26,19,8,158,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,158,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,70,162,64,26,19,8,158,3,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,180,124,80,64,26,19,8,158,3,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,158,3,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,30,162,64,26,19,8,158,3,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,180,252,80,64,26,19,8,158,3,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,158,3,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,158,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,158,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,158,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,195,8,18,192,8,10,189,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,160,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,160,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,160,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,66,137,64,26,19,8,160,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,181,107,64,26,19,8,160,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,160,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,137,64,26,19,8,160,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,63,117,64,26,19,8,160,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,160,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,93,137,64,26,19,8,160,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,63,117,64,26,19,8,160,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,160,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,141,139,64,26,19,8,160,3,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,133,116,64,26,19,8,160,3,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,160,3,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,5,140,64,26,19,8,160,3,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,26,116,64,26,19,8,160,3,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,160,3,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,154,139,64,26,19,8,160,3,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,31,108,64,26,19,8,160,3,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,160,3,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,127,139,64,26,19,8,160,3,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,223,106,64,26,19,8,160,3,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,160,3,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,223,106,64,26,19,8,160,3,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,101,139,64,26,19,8,160,3,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,160,3,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,160,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,160,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,212,7,18,209,7,10,206,7,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,161,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,161,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,161,64,26,19,8,161,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,180,124,91,64,26,19,8,161,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,161,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,230,161,64,26,19,8,161,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,180,124,91,64,26,19,8,161,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,161,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,206,161,64,26,19,8,161,3,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,180,188,89,64,26,19,8,161,3,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,161,3,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,161,64,26,19,8,161,3,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,180,124,85,64,26,19,8,161,3,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,161,3,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,161,64,26,19,8,161,3,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,180,124,80,64,26,19,8,161,3,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,161,3,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,161,64,26,19,8,161,3,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,121,74,64,26,19,8,161,3,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,161,3,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,174,161,64,26,19,8,161,3,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,249,71,64,26,19,8,161,3,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,161,3,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,161,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,161,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,161,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,161,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,161,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,161,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,103,138,64,26,19,8,161,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,21,107,64,26,19,8,161,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,161,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,117,138,64,26,19,8,161,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,218,114,64,26,19,8,161,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,161,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,161,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,161,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,163,3,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,49,101,99,102,99,26,19,8,163,3,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,163,3,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,142,20,159,33,164,80,68,64,26,19,8,163,3,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,99,108,147,224,153,211,139,64,26,19,8,163,3,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,163,3,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,183,119,244,223,252,102,64,26,19,8,163,3,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,250,155,1,194,237,224,139,64,26,19,8,163,3,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,163,3,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,163,3,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,163,3,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,163,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,163,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,163,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,170,161,64,26,19,8,163,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,121,73,64,26,19,8,163,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,163,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,150,161,64,26,19,8,163,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,121,78,64,26,19,8,163,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,163,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,163,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,163,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,163,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,163,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,163,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,117,138,64,26,19,8,163,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,42,115,64,26,19,8,163,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,163,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,42,115,64,26,19,8,163,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,117,138,64,26,19,8,163,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,163,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,163,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,163,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,249,72,64,26,19,8,166,3,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,174,161,64,26,19,8,166,3,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,166,3,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,206,161,64,26,19,8,166,3,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,104,249,78,64,26,19,8,166,3,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,166,3,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,166,3,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,166,3,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,52,55,101,101,50,26,19,8,166,3,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,166,3,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,166,3,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,152,4,18,149,4,10,146,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,167,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,106,137,64,26,19,8,167,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,207,113,64,26,19,8,167,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,167,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,205,140,64,26,19,8,167,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,223,112,64,26,19,8,167,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,167,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,55,141,64,26,19,8,167,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,223,112,64,26,19,8,167,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,167,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,167,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,167,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,167,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,167,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,152,4,18,149,4,10,146,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,168,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,50,138,64,26,19,8,168,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,197,117,64,26,19,8,168,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,168,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,138,64,26,19,8,168,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,197,117,64,26,19,8,168,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,168,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,223,122,64,26,19,8,168,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,138,64,26,19,8,168,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,168,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,168,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,168,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,168,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,168,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,169,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,169,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,169,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,47,139,64,26,19,8,169,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,223,117,64,26,19,8,169,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,169,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,47,139,64,26,19,8,169,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,21,123,64,26,19,8,169,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,169,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,169,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,169,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,170,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,170,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,170,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,125,135,64,26,19,8,170,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,74,123,64,26,19,8,170,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,170,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,74,123,64,26,19,8,170,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,199,137,64,26,19,8,170,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,170,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,109,141,64,26,19,8,170,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,10,122,64,26,19,8,170,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,170,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,170,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,170,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,136,18,18,133,18,10,130,18,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,171,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,171,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,224,16,10,6,112,111,105,110,116,115,18,213,16,18,210,16,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,197,138,64,26,19,8,171,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,122,125,64,26,19,8,171,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,5,140,64,26,19,8,171,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,122,125,64,26,19,8,171,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,140,64,26,19,8,171,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,202,125,64,26,19,8,171,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,55,141,64,26,19,8,171,3,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,26,126,64,26,19,8,171,3,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,95,141,64,26,19,8,171,3,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,133,126,64,26,19,8,171,3,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,122,141,64,26,19,8,171,3,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,197,127,64,26,19,8,171,3,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,69,141,64,26,19,8,171,3,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,103,128,64,26,19,8,171,3,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,210,128,64,26,19,8,171,3,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,205,140,64,26,19,8,171,3,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,111,140,64,26,19,8,171,3,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,7,129,64,26,19,8,171,3,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,154,139,64,26,19,8,171,3,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,87,129,64,26,19,8,171,3,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,127,129,64,26,19,8,171,3,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,90,138,64,26,19,8,171,3,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,138,64,26,19,8,171,3,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,114,129,64,26,19,8,171,3,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,197,128,64,26,19,8,171,3,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,10,138,64,26,19,8,171,3,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,10,138,64,26,19,8,171,3,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,77,128,64,26,19,8,171,3,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,138,64,26,19,8,171,3,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,37,127,64,26,19,8,171,3,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,183,138,64,26,19,8,171,3,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,95,125,64,26,19,8,171,3,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,223,138,64,26,19,8,171,3,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,15,125,64,26,19,8,171,3,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,194,139,64,26,19,8,171,3,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,15,125,64,26,19,8,171,3,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,207,139,64,26,19,8,171,3,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,245,124,64,26,19,8,171,3,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,171,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,171,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,135,5,18,132,5,10,129,5,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,49,101,99,102,99,26,19,8,172,3,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,172,3,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,99,108,147,224,153,211,139,64,26,19,8,172,3,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,38,27,188,10,102,123,67,64,26,19,8,172,3,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,172,3,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,80,157,222,240,186,50,98,64,26,19,8,172,3,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,99,108,147,224,153,211,139,64,26,19,8,172,3,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,172,3,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,4,26,80,252,89,157,98,64,26,19,8,172,3,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,250,155,1,194,237,224,139,64,26,19,8,172,3,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,172,3,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,42,111,19,145,109,7,104,64,26,19,8,172,3,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,145,203,111,163,65,238,139,64,26,19,8,172,3,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,172,3,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,172,3,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,172,3,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,172,3,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,178,9,18,175,9,10,172,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,173,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,173,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,173,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,17,144,64,26,19,8,173,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,109,64,26,19,8,173,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,173,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,17,144,64,26,19,8,173,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,58,119,64,26,19,8,173,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,173,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,150,144,64,26,19,8,173,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,58,119,64,26,19,8,173,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,173,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,134,145,64,26,19,8,173,3,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,127,118,64,26,19,8,173,3,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,173,3,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,145,64,26,19,8,173,3,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,250,117,64,26,19,8,173,3,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,173,3,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,145,64,26,19,8,173,3,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,10,117,64,26,19,8,173,3,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,173,3,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,207,145,64,26,19,8,173,3,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,26,116,64,26,19,8,173,3,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,173,3,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,134,145,64,26,19,8,173,3,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,10,112,64,26,19,8,173,3,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,173,3,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,101,145,64,26,19,8,173,3,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,202,109,64,26,19,8,173,3,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,173,3,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,173,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,173,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,174,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,174,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,174,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,237,143,64,26,19,8,174,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,191,114,64,26,19,8,174,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,174,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,27,145,64,26,19,8,174,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,31,114,64,26,19,8,174,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,174,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,201,145,64,26,19,8,174,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,5,114,64,26,19,8,174,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,174,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,174,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,174,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,161,10,18,158,10,10,155,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,175,3,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,49,101,99,102,99,26,19,8,175,3,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,175,3,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,0,72,102,94,208,70,64,26,19,8,175,3,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,39,251,221,132,149,251,139,64,26,19,8,175,3,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,175,3,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,0,72,102,94,208,70,64,26,19,8,175,3,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,68,113,50,167,114,59,141,64,26,19,8,175,3,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,175,3,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,115,43,95,129,53,72,144,64,26,19,8,175,3,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,214,216,117,188,163,103,80,64,26,19,8,175,3,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,175,3,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,15,197,30,1,94,231,82,64,26,19,8,175,3,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,84,7,173,79,124,205,144,64,26,19,8,175,3,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,175,3,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,119,190,1,24,156,188,83,64,26,19,8,175,3,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,84,7,173,79,124,205,144,64,26,19,8,175,3,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,175,3,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,25,164,141,115,148,17,87,64,26,19,8,175,3,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,92,144,25,156,42,172,144,64,26,19,8,175,3,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,175,3,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,91,151,118,10,104,98,64,26,19,8,175,3,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,160,138,59,68,221,98,144,64,26,19,8,175,3,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,175,3,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,183,119,244,223,252,102,64,26,19,8,175,3,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,220,251,240,159,225,58,144,64,26,19,8,175,3,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,175,3,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,91,188,213,39,135,106,64,26,19,8,175,3,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,122,180,203,205,227,38,144,64,26,19,8,175,3,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,175,3,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,91,188,213,39,135,106,64,26,19,8,175,3,16,34,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,175,156,20,221,57,32,144,64,26,19,8,175,3,16,35,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,175,3,16,33,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,175,3,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,175,3,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,135,5,18,132,5,10,129,5,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,177,144,64,26,19,8,176,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,170,111,64,26,19,8,176,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,176,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,177,144,64,26,19,8,176,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,101,118,64,26,19,8,176,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,176,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,234,118,64,26,19,8,176,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,190,144,64,26,19,8,176,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,176,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,190,144,64,26,19,8,176,3,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,85,119,64,26,19,8,176,3,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,176,3,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,176,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,176,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,176,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,176,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,176,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,177,3,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,49,101,99,102,99,26,19,8,177,3,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,177,3,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,138,85,231,199,66,210,80,64,26,19,8,177,3,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,202,183,24,232,251,109,142,64,26,19,8,177,3,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,177,3,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,202,183,24,232,251,109,142,64,26,19,8,177,3,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,32,144,164,30,55,221,99,64,26,19,8,177,3,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,177,3,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,177,3,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,177,3,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,178,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,178,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,178,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,163,144,64,26,19,8,178,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,37,122,64,26,19,8,178,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,178,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,163,144,64,26,19,8,178,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,165,124,64,26,19,8,178,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,178,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,183,144,64,26,19,8,178,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,239,126,64,26,19,8,178,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,178,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,178,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,178,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,246,5,18,243,5,10,240,5,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,30,72,181,56,184,182,145,64,26,19,8,179,3,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,85,40,246,220,233,208,65,64,26,19,8,179,3,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,179,3,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,242,78,202,222,128,167,81,64,26,19,8,179,3,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,30,72,181,56,184,182,145,64,26,19,8,179,3,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,179,3,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,25,164,141,115,148,17,87,64,26,19,8,179,3,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,135,24,71,87,100,169,145,64,26,19,8,179,3,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,179,3,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,173,209,34,204,219,205,112,64,26,19,8,179,3,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,84,7,173,79,124,205,144,64,26,19,8,179,3,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,179,3,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,75,91,243,8,28,173,119,64,26,19,8,179,3,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,212,114,132,83,51,92,144,64,26,19,8,179,3,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,179,3,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,179,3,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,179,3,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,49,101,99,102,99,26,19,8,179,3,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,179,3,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,179,3,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,152,4,18,149,4,10,146,4,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,81,145,64,26,19,8,179,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,213,121,64,26,19,8,179,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,179,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,81,145,64,26,19,8,179,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,101,123,64,26,19,8,179,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,179,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,101,145,64,26,19,8,179,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,37,127,64,26,19,8,179,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,179,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,179,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,179,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,179,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,179,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,179,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,211,155,213,75,197,62,145,64,26,19,8,181,3,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,114,150,230,102,22,39,107,64,26,19,8,181,3,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,181,3,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,114,150,230,102,22,39,107,64,26,19,8,181,3,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,29,113,6,49,74,153,146,64,26,19,8,181,3,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,181,3,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,181,3,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,181,3,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,49,101,99,102,99,26,19,8,181,3,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,181,3,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,181,3,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,137,31,18,134,31,10,131,31,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,181,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,181,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,181,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,225,29,10,6,112,111,105,110,116,115,18,214,29,18,211,29,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,30,162,76,213,186,147,64,26,19,8,181,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,13,236,189,161,42,59,115,64,26,19,8,181,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,30,162,76,213,186,147,64,26,19,8,181,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,205,104,171,44,157,165,115,64,26,19,8,181,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,229,40,193,59,88,100,147,64,26,19,8,181,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,154,239,91,225,148,222,118,64,26,19,8,181,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,213,4,106,105,103,233,147,64,26,19,8,181,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,19,179,179,133,89,118,64,26,19,8,181,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,19,179,179,133,89,118,64,26,19,8,181,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,252,209,249,162,139,70,148,64,26,19,8,181,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,200,169,168,203,50,77,148,64,26,19,8,181,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,122,180,247,16,233,62,118,64,26,19,8,181,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,199,218,179,8,157,148,64,26,19,8,181,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,41,13,142,201,106,46,119,64,26,19,8,181,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,228,12,156,222,236,148,64,26,19,8,181,3,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,89,108,73,108,7,73,119,64,26,19,8,181,3,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,68,200,62,123,7,149,64,26,19,8,181,3,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,41,13,142,201,106,46,119,64,26,19,8,181,3,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,224,82,225,50,102,47,149,64,26,19,8,181,3,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,19,179,179,133,89,118,64,26,19,8,181,3,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,120,2,63,132,180,60,149,64,26,19,8,181,3,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,235,150,197,40,19,239,117,64,26,19,8,181,3,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,120,2,63,132,180,60,149,64,26,19,8,181,3,16,40,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,11,223,115,205,244,228,116,64,26,19,8,181,3,16,41,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,39,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,124,203,212,184,112,27,149,64,26,19,8,181,3,16,43,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,76,98,134,66,130,122,116,64,26,19,8,181,3,16,44,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,42,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,28,13,94,115,55,230,148,64,26,19,8,181,3,16,46,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,28,3,203,159,229,95,116,64,26,19,8,181,3,16,47,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,45,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,124,203,212,184,112,27,149,64,26,19,8,181,3,16,49,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,188,68,84,90,172,42,116,64,26,19,8,181,3,16,50,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,48,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,57,169,79,248,93,149,64,26,19,8,181,3,16,52,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,109,170,52,231,99,112,115,64,26,19,8,181,3,16,53,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,51,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,215,192,181,201,237,113,149,64,26,19,8,181,3,16,55,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,142,242,226,139,69,102,114,64,26,19,8,181,3,16,56,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,54,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,233,6,161,70,107,149,64,26,19,8,181,3,16,58,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,158,22,58,94,54,225,113,64,26,19,8,181,3,16,59,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,57,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,57,169,79,248,93,149,64,26,19,8,181,3,16,61,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,222,153,76,211,195,118,113,64,26,19,8,181,3,16,62,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,60,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,72,163,131,225,23,34,149,64,26,19,8,181,3,16,64,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,191,94,232,2,24,215,112,64,26,19,8,181,3,16,65,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,63,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,133,81,249,65,210,148,64,26,19,8,181,3,16,67,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,143,255,44,96,123,188,112,64,26,19,8,181,3,16,68,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,66,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,159,137,220,175,163,148,64,26,19,8,181,3,16,70,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,239,189,163,165,180,241,112,64,26,19,8,181,3,16,71,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,69,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,159,137,220,175,163,148,64,26,19,8,181,3,16,73,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,79,124,26,235,237,38,113,64,26,19,8,181,3,16,74,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,72,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,63,206,57,19,137,148,64,26,19,8,181,3,16,76,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,47,65,182,26,66,135,112,64,26,19,8,181,3,16,77,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,75,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,65,84,82,57,14,197,110,64,26,19,8,181,3,16,80,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,53,195,224,174,160,30,148,64,26,19,8,181,3,16,79,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,78,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,13,246,80,117,124,193,147,64,26,19,8,181,3,16,82,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,33,25,238,104,98,37,110,64,26,19,8,181,3,16,83,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,81,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,125,216,30,141,166,113,147,64,26,19,8,181,3,16,85,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,129,215,100,174,155,90,110,64,26,19,8,181,3,16,86,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,84,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,0,112,100,255,106,147,64,26,19,8,181,3,16,88,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,96,143,182,9,186,100,111,64,26,19,8,181,3,16,89,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,87,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,47,65,182,26,66,135,112,64,26,19,8,181,3,16,92,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,173,55,218,47,67,140,147,64,26,19,8,181,3,16,91,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,90,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,29,26,168,71,109,60,147,64,26,19,8,181,3,16,94,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,62,88,195,24,253,171,113,64,26,19,8,181,3,16,95,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,93,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,29,26,168,71,109,60,147,64,26,19,8,181,3,16,97,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,46,52,108,70,12,49,114,64,26,19,8,181,3,16,98,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,96,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,176,205,181,77,120,147,64,26,19,8,181,3,16,100,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,109,170,52,231,99,112,115,64,26,19,8,181,3,16,101,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,99,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,69,231,55,129,145,153,147,64,26,19,8,181,3,16,103,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,252,199,102,207,57,192,115,64,26,19,8,181,3,16,104,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,102,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,109,180,199,186,181,246,147,64,26,19,8,181,3,16,106,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,44,39,34,114,214,218,115,64,26,19,8,181,3,16,107,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,105,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,181,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,181,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,181,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,181,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,159,142,64,26,19,8,181,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,50,128,64,26,19,8,181,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,181,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,223,144,64,26,19,8,181,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,50,128,64,26,19,8,181,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,181,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,91,146,64,26,19,8,181,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,90,127,64,26,19,8,181,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,181,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,213,126,64,26,19,8,181,3,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,231,146,64,26,19,8,181,3,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,181,3,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,53,126,64,26,19,8,181,3,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,75,147,64,26,19,8,181,3,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,181,3,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,181,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,181,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,178,9,18,175,9,10,172,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,184,3,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,49,101,99,102,99,26,19,8,184,3,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,184,3,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,112,137,190,104,105,216,113,64,26,19,8,184,3,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,219,119,79,144,52,102,140,64,26,19,8,184,3,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,184,3,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,112,137,190,104,105,216,113,64,26,19,8,184,3,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,127,11,57,251,8,246,141,64,26,19,8,184,3,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,184,3,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,71,119,238,184,13,114,64,26,19,8,184,3,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,202,183,24,232,251,109,142,64,26,19,8,184,3,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,184,3,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,5,226,125,66,79,200,114,64,26,19,8,184,3,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,95,16,216,193,225,93,143,64,26,19,8,184,3,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,184,3,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,95,16,216,193,225,93,143,64,26,19,8,184,3,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,231,189,203,16,150,77,115,64,26,19,8,184,3,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,184,3,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,79,183,174,39,212,34,116,64,26,19,8,184,3,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,156,129,141,29,230,53,143,64,26,19,8,184,3,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,184,3,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,77,9,81,24,248,231,117,64,26,19,8,184,3,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,216,242,66,121,234,13,143,64,26,19,8,184,3,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,184,3,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,81,218,218,135,252,124,64,26,19,8,184,3,16,28,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,81,213,173,48,243,189,142,64,26,19,8,184,3,16,29,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,184,3,16,27,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,176,182,157,47,23,125,64,26,19,8,184,3,16,31,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,186,165,63,79,159,176,142,64,26,19,8,184,3,16,32,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,184,3,16,30,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,184,3,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,184,3,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,221,13,18,218,13,10,215,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,184,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,184,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,161,145,64,26,19,8,184,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,151,130,64,26,19,8,184,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,121,145,64,26,19,8,184,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,151,130,64,26,19,8,184,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,87,145,64,26,19,8,184,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,125,130,64,26,19,8,184,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,47,145,64,26,19,8,184,3,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,58,130,64,26,19,8,184,3,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,27,145,64,26,19,8,184,3,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,221,129,64,26,19,8,184,3,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,27,145,64,26,19,8,184,3,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,87,129,64,26,19,8,184,3,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,54,145,64,26,19,8,184,3,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,47,129,64,26,19,8,184,3,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,141,145,64,26,19,8,184,3,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,237,128,64,26,19,8,184,3,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,194,145,64,26,19,8,184,3,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,223,128,64,26,19,8,184,3,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,98,146,64,26,19,8,184,3,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,237,128,64,26,19,8,184,3,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,125,146,64,26,19,8,184,3,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,61,129,64,26,19,8,184,3,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,98,146,64,26,19,8,184,3,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,194,129,64,26,19,8,184,3,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,221,145,64,26,19,8,184,3,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,111,130,64,26,19,8,184,3,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,154,145,64,26,19,8,184,3,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,125,130,64,26,19,8,184,3,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,184,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,184,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,212,7,18,209,7,10,206,7,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,186,3,16,4,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,172,74,189,241,197,209,125,64,26,19,8,186,3,16,7,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,205,60,37,255,69,198,139,64,26,19,8,186,3,16,8,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,186,3,16,6,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,172,74,189,241,197,209,125,64,26,19,8,186,3,16,10,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,68,113,50,167,114,59,141,64,26,19,8,186,3,16,11,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,186,3,16,9,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,37,45,40,169,206,129,125,64,26,19,8,186,3,16,13,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,202,183,24,232,251,109,142,64,26,19,8,186,3,16,14,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,186,3,16,12,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,158,15,147,96,215,49,125,64,26,19,8,186,3,16,16,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,5,82,31,60,146,40,143,64,26,19,8,186,3,16,17,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,186,3,16,15,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,87,247,195,73,39,124,64,26,19,8,186,3,16,19,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,45,90,142,209,20,116,145,64,26,19,8,186,3,16,20,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,186,3,16,18,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,123,169,245,2,162,123,64,26,19,8,186,3,16,22,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,121,18,35,26,33,8,4,18,8,218,77,147,144,5,0,146,64,26,19,8,186,3,16,23,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,186,3,16,21,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,218,77,147,144,5,0,146,64,26,19,8,186,3,16,26,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,40,10,1,120,18,35,26,33,8,4,18,8,205,28,205,50,91,135,123,64,26,19,8,186,3,16,25,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,186,3,16,24,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,186,3,16,5,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,186,3,16,2,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,49,101,99,102,99,26,19,8,186,3,16,3,26,12,98,255,29,181,217,176,234,142,137,48,248,67,18,19,8,186,3,16,1,26,12,98,255,29,181,217,176,234,142,137,48,248,67,10,221,48,18,218,48,10,215,48,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,186,3,16,2,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,48,57,49,48,26,19,8,186,3,16,3,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,186,3,16,4,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,181,47,10,6,112,111,105,110,116,115,18,170,47,18,167,47,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,159,39,220,57,178,132,64,26,19,8,186,3,16,7,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,124,193,65,229,30,149,116,64,26,19,8,186,3,16,8,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,6,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,217,211,102,194,202,38,134,64,26,19,8,186,3,16,10,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,172,32,253,135,187,175,116,64,26,19,8,186,3,16,11,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,9,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,74,47,99,34,102,135,64,26,19,8,186,3,16,13,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,107,157,234,18,46,26,117,64,26,19,8,186,3,16,14,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,12,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,110,134,53,19,225,134,64,26,19,8,186,3,16,16,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,251,186,28,251,3,106,117,64,26,19,8,186,3,16,17,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,15,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,75,195,126,174,42,45,132,64,26,19,8,186,3,16,19,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,73,72,242,153,22,206,119,64,26,19,8,186,3,16,20,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,18,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,56,36,155,199,37,83,120,64,26,19,8,186,3,16,23,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,115,144,14,232,78,138,132,64,26,19,8,186,3,16,22,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,21,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,188,89,196,15,2,133,64,26,19,8,186,3,16,25,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,23,220,236,34,68,93,121,64,26,19,8,186,3,16,26,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,24,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,146,203,114,184,250,41,133,64,26,19,8,186,3,16,28,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,151,213,199,56,41,50,122,64,26,19,8,186,3,16,29,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,27,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,42,123,208,9,73,55,133,64,26,19,8,186,3,16,31,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,166,236,212,54,228,86,123,64,26,19,8,186,3,16,32,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,30,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,42,123,208,9,73,55,133,64,26,19,8,186,3,16,34,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,52,253,188,74,132,80,125,64,26,19,8,186,3,16,35,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,33,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,115,115,133,235,219,143,126,64,26,19,8,186,3,16,38,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,154,93,158,33,115,231,132,64,26,19,8,186,3,16,37,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,36,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,219,224,176,150,0,125,132,64,26,19,8,186,3,16,40,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,34,204,27,164,93,127,127,64,26,19,8,186,3,16,41,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,39,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,195,55,120,47,205,154,131,64,26,19,8,186,3,16,43,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,57,179,157,11,211,28,128,64,26,19,8,186,3,16,44,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,42,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,212,91,207,1,190,21,131,64,26,19,8,186,3,16,46,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,57,179,157,11,211,28,128,64,26,19,8,186,3,16,47,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,45,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,180,32,107,49,18,118,130,64,26,19,8,186,3,16,49,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,226,72,9,47,208,233,127,64,26,19,8,186,3,16,50,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,48,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,189,178,150,154,138,51,130,64,26,19,8,186,3,16,52,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,242,108,96,1,193,100,127,64,26,19,8,186,3,16,53,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,51,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,37,3,57,73,60,38,130,64,26,19,8,186,3,16,55,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,98,79,46,25,235,20,127,64,26,19,8,186,3,16,56,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,54,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,237,17,82,61,39,78,130,64,26,19,8,186,3,16,58,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,82,43,215,70,250,153,127,64,26,19,8,186,3,16,59,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,57,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,193,175,142,117,91,130,64,26,19,8,186,3,16,61,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,161,3,64,186,132,15,128,64,26,19,8,186,3,16,62,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,60,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,237,17,82,61,39,78,130,64,26,19,8,186,3,16,64,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,248,47,139,150,69,135,128,64,26,19,8,186,3,16,65,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,63,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,93,244,31,85,81,254,129,64,26,19,8,186,3,16,67,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,192,62,164,138,48,175,128,64,26,19,8,186,3,16,68,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,66,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,213,104,25,214,243,107,129,64,26,19,8,186,3,16,70,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,192,62,164,138,48,175,128,64,26,19,8,186,3,16,71,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,69,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,126,87,180,249,190,128,64,26,19,8,186,3,16,73,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,248,47,139,150,69,135,128,64,26,19,8,186,3,16,74,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,72,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,222,74,130,247,239,158,127,64,26,19,8,186,3,16,76,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,226,72,9,47,208,233,127,64,26,19,8,186,3,16,77,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,75,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,146,48,156,209,148,126,64,26,19,8,186,3,16,79,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,98,79,46,25,235,20,127,64,26,19,8,186,3,16,80,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,78,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,15,183,135,110,194,15,126,64,26,19,8,186,3,16,82,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,227,85,83,3,6,64,126,64,26,19,8,186,3,16,83,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,81,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,133,164,38,146,2,97,124,64,26,19,8,186,3,16,86,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,79,58,154,227,79,165,125,64,26,19,8,186,3,16,85,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,84,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,223,87,204,203,37,245,125,64,26,19,8,186,3,16,88,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,22,207,162,78,14,7,123,64,26,19,8,186,3,16,89,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,87,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,46,242,235,62,110,175,126,64,26,19,8,186,3,16,91,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,247,147,62,126,98,103,122,64,26,19,8,186,3,16,92,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,90,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,215,88,218,173,182,199,121,64,26,19,8,186,3,16,95,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,175,248,16,41,137,218,125,64,26,19,8,186,3,16,94,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,93,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,240,123,35,158,22,112,125,64,26,19,8,186,3,16,97,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,232,124,49,128,167,66,121,64,26,19,8,186,3,16,98,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,96,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,160,122,112,7,235,124,64,26,19,8,186,3,16,100,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,8,197,223,36,137,56,120,64,26,19,8,186,3,16,101,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,99,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,219,222,64,179,138,125,64,26,19,8,186,3,16,103,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,41,13,142,201,106,46,119,64,26,19,8,186,3,16,104,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,102,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,78,45,80,15,26,79,127,64,26,19,8,186,3,16,106,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,170,19,179,179,133,89,118,64,26,19,8,186,3,16,107,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,105,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,94,81,167,225,10,202,126,64,26,19,8,186,3,16,109,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,205,104,171,44,157,165,115,64,26,19,8,186,3,16,110,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,108,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,46,242,235,62,110,175,126,64,26,19,8,186,3,16,112,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,94,147,39,233,168,75,114,64,26,19,8,186,3,16,113,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,111,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,239,189,163,165,180,241,112,64,26,19,8,186,3,16,116,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,94,81,167,225,10,202,126,64,26,19,8,186,3,16,115,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,114,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,78,45,80,15,26,79,127,64,26,19,8,186,3,16,118,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,96,143,182,9,186,100,111,64,26,19,8,186,3,16,119,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,117,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,246,176,199,122,213,97,128,64,26,19,8,186,3,16,121,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,121,18,35,26,33,8,4,18,8,226,162,37,200,10,230,108,64,26,19,8,186,3,16,122,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,120,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,130,228,174,130,209,176,108,64,26,19,8,186,3,16,125,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,40,10,1,120,18,35,26,33,8,4,18,8,70,75,231,237,29,28,129,64,26,19,8,186,3,16,124,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,123,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,101,134,75,190,201,187,129,64,26,19,8,186,3,16,127,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,160,18,201,126,71,250,110,64,26,20,8,186,3,16,128,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,126,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,37,3,57,73,60,38,130,64,26,20,8,186,3,16,130,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,127,219,213,141,138,65,113,64,26,20,8,186,3,16,131,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,186,3,16,129,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,141,83,219,247,237,24,130,64,26,20,8,186,3,16,133,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,35,38,56,61,152,123,108,64,26,20,8,186,3,16,134,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,186,3,16,132,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,28,113,13,224,195,104,130,64,26,20,8,186,3,16,136,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,68,110,230,225,121,113,107,64,26,20,8,186,3,16,137,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,186,3,16,135,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,124,47,132,37,253,157,130,64,26,20,8,186,3,16,139,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,228,175,111,156,64,60,107,64,26,20,8,186,3,16,140,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,186,3,16,138,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,212,91,207,1,190,21,131,64,26,20,8,186,3,16,142,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,228,175,111,156,64,60,107,64,26,20,8,186,3,16,143,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,186,3,16,141,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,100,121,1,234,147,101,131,64,26,20,8,186,3,16,145,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,3,235,211,108,236,219,107,64,26,20,8,186,3,16,146,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,186,3,16,144,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,91,231,213,128,27,168,131,64,26,20,8,186,3,16,148,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,226,162,37,200,10,230,108,64,26,20,8,186,3,16,149,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,186,3,16,147,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,35,246,238,116,6,208,131,64,26,20,8,186,3,16,151,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,65,84,82,57,14,197,110,64,26,20,8,186,3,16,152,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,186,3,16,150,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,129,245,243,99,98,132,64,26,20,8,186,3,16,154,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,160,18,201,126,71,250,110,64,26,20,8,186,3,16,155,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,186,3,16,153,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,159,39,220,57,178,132,64,26,20,8,186,3,16,157,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,95,160,113,189,222,161,112,64,26,20,8,186,3,16,158,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,186,3,16,156,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,159,39,220,57,178,132,64,26,20,8,186,3,16,160,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,14,249,7,118,96,145,113,64,26,20,8,186,3,16,161,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,186,3,16,159,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,162,239,201,138,235,164,132,64,26,20,8,186,3,16,163,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,14,249,7,118,96,145,113,64,26,20,8,186,3,16,164,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,186,3,16,162,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,159,39,220,57,178,132,64,26,20,8,186,3,16,166,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,41,10,1,121,18,36,26,34,8,4,18,8,107,157,234,18,46,26,117,64,26,20,8,186,3,16,167,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,20,8,186,3,16,165,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,5,26,12,98,255,29,52,217,176,234,142,137,48,231,140,18,19,8,186,3,16,1,26,12,98,255,29,52,217,176,234,142,137,48,231,140,10,195,8,18,192,8,10,189,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,188,3,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,188,3,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,188,3,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,202,147,64,26,19,8,188,3,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,26,126,64,26,19,8,188,3,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,188,3,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,202,147,64,26,19,8,188,3,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,42,125,64,26,19,8,188,3,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,188,3,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,235,147,64,26,19,8,188,3,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,234,123,64,26,19,8,188,3,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,188,3,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,199,148,64,26,19,8,188,3,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,239,121,64,26,19,8,188,3,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,188,3,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,90,149,64,26,19,8,188,3,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,218,124,64,26,19,8,188,3,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,188,3,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,130,149,64,26,19,8,188,3,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,245,124,64,26,19,8,188,3,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,188,3,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,157,149,64,26,19,8,188,3,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,170,218,124,64,26,19,8,188,3,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,188,3,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,150,64,26,19,8,188,3,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,207,123,64,26,19,8,188,3,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,188,3,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,188,3,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,188,3,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,206,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,34,19,8,189,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,251,193,8,10,6,115,104,97,112,101,115,18,239,193,8,18,235,193,8,10,134,15,18,131,15,10,128,15,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,21,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,53,99,48,57,48,26,18,8,21,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,21,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,226,13,10,6,112,111,105,110,116,115,18,215,13,18,212,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,84,145,64,26,18,8,21,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,134,64,26,18,8,21,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,216,133,64,26,18,8,21,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,145,64,26,18,8,21,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,145,64,26,18,8,21,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,40,133,64,26,18,8,21,16,14,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,145,64,26,18,8,21,16,16,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,132,64,26,18,8,21,16,17,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,15,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,236,145,64,26,18,8,21,16,19,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,72,131,64,26,18,8,21,16,20,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,18,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,146,64,26,18,8,21,16,22,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,72,130,64,26,18,8,21,16,23,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,21,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,146,64,26,18,8,21,16,25,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,129,64,26,18,8,21,16,26,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,24,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,60,147,64,26,18,8,21,16,28,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,248,128,64,26,18,8,21,16,29,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,27,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,156,147,64,26,18,8,21,16,31,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,128,64,26,18,8,21,16,32,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,30,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,148,64,26,18,8,21,16,34,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,128,64,26,18,8,21,16,35,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,33,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,148,64,26,18,8,21,16,37,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,72,128,64,26,18,8,21,16,38,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,36,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,148,64,26,18,8,21,16,40,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,129,64,26,18,8,21,16,41,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,39,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,148,64,26,18,8,21,16,43,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,131,64,26,18,8,21,16,44,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,42,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,148,64,26,18,8,21,16,46,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,132,64,26,18,8,21,16,47,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,45,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,20,148,64,26,18,8,21,16,49,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,134,64,26,18,8,21,16,50,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,48,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,164,147,64,26,18,8,21,16,52,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,136,64,26,18,8,21,16,53,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,51,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,21,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,251,56,18,248,56,10,245,56,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,22,16,2,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,100,102,101,50,50,102,26,18,8,22,16,3,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,22,16,4,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,215,55,10,6,112,111,105,110,116,115,18,204,55,18,201,55,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,135,64,26,18,8,22,16,7,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,112,64,26,18,8,22,16,8,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,6,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,110,64,26,18,8,22,16,11,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,135,64,26,18,8,22,16,10,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,9,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,135,64,26,18,8,22,16,13,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,109,64,26,18,8,22,16,14,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,12,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,136,64,26,18,8,22,16,16,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,108,64,26,18,8,22,16,17,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,15,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,136,64,26,18,8,22,16,19,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,108,64,26,18,8,22,16,20,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,18,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,137,64,26,18,8,22,16,22,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,108,64,26,18,8,22,16,23,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,21,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,138,64,26,18,8,22,16,25,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,108,64,26,18,8,22,16,26,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,24,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,138,64,26,18,8,22,16,28,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,110,64,26,18,8,22,16,29,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,27,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,139,64,26,18,8,22,16,31,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,112,64,26,18,8,22,16,32,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,30,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,139,64,26,18,8,22,16,34,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,115,64,26,18,8,22,16,35,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,33,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,140,64,26,18,8,22,16,37,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,116,64,26,18,8,22,16,38,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,36,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,140,64,26,18,8,22,16,40,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,117,64,26,18,8,22,16,41,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,39,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,141,64,26,18,8,22,16,43,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,117,64,26,18,8,22,16,44,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,42,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,141,64,26,18,8,22,16,46,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,118,64,26,18,8,22,16,47,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,45,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,118,64,26,18,8,22,16,50,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,141,64,26,18,8,22,16,49,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,48,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,142,64,26,18,8,22,16,52,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,117,64,26,18,8,22,16,53,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,51,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,142,64,26,18,8,22,16,55,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,116,64,26,18,8,22,16,56,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,54,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,142,64,26,18,8,22,16,58,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,113,64,26,18,8,22,16,59,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,57,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,142,64,26,18,8,22,16,61,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,110,64,26,18,8,22,16,62,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,60,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,142,64,26,18,8,22,16,64,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,109,64,26,18,8,22,16,65,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,63,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,142,64,26,18,8,22,16,67,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,109,64,26,18,8,22,16,68,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,66,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,141,64,26,18,8,22,16,70,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,105,64,26,18,8,22,16,71,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,69,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,105,64,26,18,8,22,16,74,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,140,64,26,18,8,22,16,73,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,72,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,140,64,26,18,8,22,16,76,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,104,64,26,18,8,22,16,77,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,75,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,139,64,26,18,8,22,16,79,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,104,64,26,18,8,22,16,80,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,78,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,139,64,26,18,8,22,16,82,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,104,64,26,18,8,22,16,83,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,81,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,137,64,26,18,8,22,16,85,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,113,64,26,18,8,22,16,86,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,84,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,136,64,26,18,8,22,16,88,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,116,64,26,18,8,22,16,89,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,87,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,135,64,26,18,8,22,16,91,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,120,64,26,18,8,22,16,92,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,90,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,134,64,26,18,8,22,16,94,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,120,64,26,18,8,22,16,95,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,93,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,134,64,26,18,8,22,16,97,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,121,64,26,18,8,22,16,98,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,96,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,133,64,26,18,8,22,16,100,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,121,64,26,18,8,22,16,101,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,99,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,133,64,26,18,8,22,16,103,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,121,64,26,18,8,22,16,104,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,102,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,132,64,26,18,8,22,16,106,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,120,64,26,18,8,22,16,107,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,105,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,132,64,26,18,8,22,16,109,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,119,64,26,18,8,22,16,110,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,108,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,132,64,26,18,8,22,16,112,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,117,64,26,18,8,22,16,113,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,111,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,132,64,26,18,8,22,16,115,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,116,64,26,18,8,22,16,116,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,114,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,114,64,26,18,8,22,16,119,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,133,64,26,18,8,22,16,118,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,117,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,133,64,26,18,8,22,16,121,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,114,64,26,18,8,22,16,122,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,120,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,114,64,26,18,8,22,16,125,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,133,64,26,18,8,22,16,124,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,123,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,133,64,26,18,8,22,16,127,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,113,64,26,19,8,22,16,128,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,126,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,134,64,26,19,8,22,16,130,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,113,64,26,19,8,22,16,131,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,129,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,134,64,26,19,8,22,16,133,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,113,64,26,19,8,22,16,134,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,132,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,136,64,26,19,8,22,16,136,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,114,64,26,19,8,22,16,137,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,135,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,140,64,26,19,8,22,16,139,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,120,64,26,19,8,22,16,140,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,138,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,141,64,26,19,8,22,16,142,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,120,64,26,19,8,22,16,143,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,141,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,141,64,26,19,8,22,16,145,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,121,64,26,19,8,22,16,146,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,144,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,142,64,26,19,8,22,16,148,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,121,64,26,19,8,22,16,149,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,147,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,143,64,26,19,8,22,16,151,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,121,64,26,19,8,22,16,152,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,150,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,143,64,26,19,8,22,16,154,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,121,64,26,19,8,22,16,155,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,153,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,143,64,26,19,8,22,16,157,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,120,64,26,19,8,22,16,158,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,156,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,143,64,26,19,8,22,16,160,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,119,64,26,19,8,22,16,161,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,159,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,144,64,26,19,8,22,16,163,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,115,64,26,19,8,22,16,164,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,162,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,144,64,26,19,8,22,16,166,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,113,64,26,19,8,22,16,167,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,165,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,143,64,26,19,8,22,16,169,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,112,64,26,19,8,22,16,170,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,168,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,142,64,26,19,8,22,16,172,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,109,64,26,19,8,22,16,173,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,171,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,141,64,26,19,8,22,16,175,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,108,64,26,19,8,22,16,176,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,174,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,140,64,26,19,8,22,16,178,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,108,64,26,19,8,22,16,179,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,177,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,140,64,26,19,8,22,16,181,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,108,64,26,19,8,22,16,182,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,180,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,139,64,26,19,8,22,16,184,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,112,64,26,19,8,22,16,185,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,183,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,136,64,26,19,8,22,16,187,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,118,64,26,19,8,22,16,188,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,186,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,135,64,26,19,8,22,16,190,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,119,64,26,19,8,22,16,191,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,189,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,135,64,26,19,8,22,16,193,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,119,64,26,19,8,22,16,194,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,192,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,117,64,26,19,8,22,16,197,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,134,64,26,19,8,22,16,196,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,195,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,135,64,26,19,8,22,16,199,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,113,64,26,19,8,22,16,200,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,19,8,22,16,198,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,5,26,12,98,255,26,123,217,176,234,142,137,48,70,116,18,18,8,22,16,1,26,12,98,255,26,123,217,176,234,142,137,48,70,116,10,234,10,18,231,10,10,228,10,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,102,102,50,56,56,53,26,18,8,23,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,23,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,198,9,10,6,112,111,105,110,116,115,18,187,9,18,184,9,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,102,64,26,18,8,23,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,129,64,26,18,8,23,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,23,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,232,129,64,26,18,8,23,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,102,64,26,18,8,23,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,23,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,103,64,26,18,8,23,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,130,64,26,18,8,23,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,23,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,103,64,26,18,8,23,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,120,130,64,26,18,8,23,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,23,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,104,64,26,18,8,23,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,152,130,64,26,18,8,23,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,23,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,105,64,26,18,8,23,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,130,64,26,18,8,23,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,23,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,105,64,26,18,8,23,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,130,64,26,18,8,23,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,23,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,106,64,26,18,8,23,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,40,130,64,26,18,8,23,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,23,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,106,64,26,18,8,23,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,129,64,26,18,8,23,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,23,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,106,64,26,18,8,23,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,120,129,64,26,18,8,23,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,23,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,102,64,26,18,8,23,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,129,64,26,18,8,23,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,23,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,23,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,23,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,23,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,222,16,18,219,16,10,216,16,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,24,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,102,102,100,48,57,101,26,18,8,24,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,24,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,186,15,10,6,112,111,105,110,116,115,18,175,15,18,172,15,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,146,64,26,18,8,24,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,111,64,26,18,8,24,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,146,64,26,18,8,24,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,111,64,26,18,8,24,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,146,64,26,18,8,24,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,109,64,26,18,8,24,16,14,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,109,64,26,18,8,24,16,17,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,146,64,26,18,8,24,16,16,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,15,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,146,64,26,18,8,24,16,19,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,107,64,26,18,8,24,16,20,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,18,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,146,64,26,18,8,24,16,22,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,106,64,26,18,8,24,16,23,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,21,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,146,64,26,18,8,24,16,25,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,105,64,26,18,8,24,16,26,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,24,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,146,64,26,18,8,24,16,28,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,104,64,26,18,8,24,16,29,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,27,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,146,64,26,18,8,24,16,31,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,104,64,26,18,8,24,16,32,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,30,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,164,146,64,26,18,8,24,16,34,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,104,64,26,18,8,24,16,35,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,33,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,105,64,26,18,8,24,16,38,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,146,64,26,18,8,24,16,37,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,36,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,220,146,64,26,18,8,24,16,40,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,104,64,26,18,8,24,16,41,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,39,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,146,64,26,18,8,24,16,43,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,103,64,26,18,8,24,16,44,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,42,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,12,147,64,26,18,8,24,16,46,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,103,64,26,18,8,24,16,47,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,45,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,147,64,26,18,8,24,16,49,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,104,64,26,18,8,24,16,50,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,48,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,147,64,26,18,8,24,16,52,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,105,64,26,18,8,24,16,53,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,51,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,147,64,26,18,8,24,16,55,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,107,64,26,18,8,24,16,56,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,54,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,204,146,64,26,18,8,24,16,58,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,111,64,26,18,8,24,16,59,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,57,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,244,18,18,8,24,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,244,10,226,5,18,223,5,10,220,5,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,4,156,64,26,18,8,25,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,120,64,26,18,8,25,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,25,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,152,64,26,18,8,25,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,120,64,26,18,8,25,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,25,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,220,151,64,26,18,8,25,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,120,64,26,18,8,25,16,14,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,25,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,244,149,64,26,18,8,25,16,16,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,121,64,26,18,8,25,16,17,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,25,16,15,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,164,147,64,26,18,8,25,16,19,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,122,64,26,18,8,25,16,20,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,25,16,18,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,25,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,25,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,53,99,48,57,48,26,18,8,25,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,25,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,25,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,170,24,18,167,24,10,164,24,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,26,16,4,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,134,23,10,6,112,111,105,110,116,115,18,251,22,18,248,22,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,4,153,64,26,18,8,26,16,7,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,24,129,64,26,18,8,26,16,8,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,6,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,153,64,26,18,8,26,16,10,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,128,64,26,18,8,26,16,11,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,9,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,132,153,64,26,18,8,26,16,13,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,128,64,26,18,8,26,16,14,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,12,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,12,154,64,26,18,8,26,16,16,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,184,128,64,26,18,8,26,16,17,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,15,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,204,154,64,26,18,8,26,16,19,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,184,128,64,26,18,8,26,16,20,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,18,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,128,64,26,18,8,26,16,23,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,156,64,26,18,8,26,16,22,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,21,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,129,64,26,18,8,26,16,26,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,157,64,26,18,8,26,16,25,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,24,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,157,64,26,18,8,26,16,28,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,168,130,64,26,18,8,26,16,29,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,27,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,20,158,64,26,18,8,26,16,31,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,152,131,64,26,18,8,26,16,32,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,30,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,28,158,64,26,18,8,26,16,34,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,88,132,64,26,18,8,26,16,35,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,33,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,157,64,26,18,8,26,16,37,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,133,64,26,18,8,26,16,38,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,36,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,157,64,26,18,8,26,16,40,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,134,64,26,18,8,26,16,41,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,39,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,184,134,64,26,18,8,26,16,44,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,156,64,26,18,8,26,16,43,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,42,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,60,156,64,26,18,8,26,16,46,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,134,64,26,18,8,26,16,47,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,45,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,155,64,26,18,8,26,16,49,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,134,64,26,18,8,26,16,50,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,48,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,155,64,26,18,8,26,16,52,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,184,134,64,26,18,8,26,16,53,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,51,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,155,64,26,18,8,26,16,55,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,136,134,64,26,18,8,26,16,56,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,54,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,134,64,26,18,8,26,16,59,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,155,64,26,18,8,26,16,58,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,57,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,133,64,26,18,8,26,16,62,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,155,64,26,18,8,26,16,61,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,60,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,228,155,64,26,18,8,26,16,64,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,168,133,64,26,18,8,26,16,65,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,63,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,156,64,26,18,8,26,16,67,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,136,133,64,26,18,8,26,16,68,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,66,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,156,64,26,18,8,26,16,70,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,136,133,64,26,18,8,26,16,71,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,69,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,133,64,26,18,8,26,16,74,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,157,64,26,18,8,26,16,73,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,72,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,157,64,26,18,8,26,16,76,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,133,64,26,18,8,26,16,77,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,75,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,92,157,64,26,18,8,26,16,79,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,248,133,64,26,18,8,26,16,80,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,78,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,108,157,64,26,18,8,26,16,82,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,72,134,64,26,18,8,26,16,83,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,81,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,157,64,26,18,8,26,16,85,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,72,134,64,26,18,8,26,16,86,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,84,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,5,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,26,16,2,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,54,50,100,54,53,99,26,18,8,26,16,3,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,26,16,1,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,226,5,18,223,5,10,220,5,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,97,52,49,97,55,26,18,8,27,16,3,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,27,16,4,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,132,64,26,18,8,27,16,7,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,120,128,64,26,18,8,27,16,8,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,27,16,6,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,133,64,26,18,8,27,16,10,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,104,132,64,26,18,8,27,16,11,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,27,16,9,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,134,64,26,18,8,27,16,13,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,131,64,26,18,8,27,16,14,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,27,16,12,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,135,64,26,18,8,27,16,16,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,88,131,64,26,18,8,27,16,17,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,27,16,15,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,134,64,26,18,8,27,16,19,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,127,64,26,18,8,27,16,20,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,27,16,18,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,27,16,5,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,27,16,2,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,27,16,1,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,28,16,2,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,97,52,49,97,55,26,18,8,28,16,3,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,28,16,4,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,136,64,26,18,8,28,16,7,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,152,132,64,26,18,8,28,16,8,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,28,16,6,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,129,64,26,18,8,28,16,11,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,145,64,26,18,8,28,16,10,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,28,16,9,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,28,16,5,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,28,16,1,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,29,16,2,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,97,52,49,97,55,26,18,8,29,16,3,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,29,16,4,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,138,64,26,18,8,29,16,7,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,72,128,64,26,18,8,29,16,8,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,29,16,6,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,140,64,26,18,8,29,16,10,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,248,135,64,26,18,8,29,16,11,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,29,16,9,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,29,16,5,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,29,16,1,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,30,16,2,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,97,52,49,97,55,26,18,8,30,16,3,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,30,16,4,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,143,64,26,18,8,30,16,7,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,127,64,26,18,8,30,16,8,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,30,16,6,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,137,64,26,18,8,30,16,11,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,144,64,26,18,8,30,16,10,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,30,16,9,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,30,16,5,26,12,98,255,26,130,217,176,234,142,137,48,71,224,18,18,8,30,16,1,26,12,98,255,26,130,217,176,234,142,137,48,71,224,10,226,5,18,223,5,10,220,5,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,27,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,107,64,26,18,8,27,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,123,64,26,18,8,27,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,27,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,122,64,26,18,8,27,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,107,64,26,18,8,27,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,27,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,121,64,26,18,8,27,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,109,64,26,18,8,27,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,27,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,121,64,26,18,8,27,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,111,64,26,18,8,27,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,27,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,121,64,26,18,8,27,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,112,64,26,18,8,27,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,27,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,27,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,27,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,100,100,97,98,51,101,26,18,8,27,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,27,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,234,10,18,231,10,10,228,10,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,27,16,4,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,198,9,10,6,112,111,105,110,116,115,18,187,9,18,184,9,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,136,64,26,18,8,27,16,7,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,82,64,26,18,8,27,16,8,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,27,16,6,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,140,64,26,18,8,27,16,10,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,82,64,26,18,8,27,16,11,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,27,16,9,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,142,64,26,18,8,27,16,13,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,83,64,26,18,8,27,16,14,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,27,16,12,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,142,64,26,18,8,27,16,16,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,84,64,26,18,8,27,16,17,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,27,16,15,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,143,64,26,18,8,27,16,19,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,89,64,26,18,8,27,16,20,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,27,16,18,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,141,64,26,18,8,27,16,22,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,96,64,26,18,8,27,16,23,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,27,16,21,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,139,64,26,18,8,27,16,25,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,102,64,26,18,8,27,16,26,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,27,16,24,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,138,64,26,18,8,27,16,28,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,105,64,26,18,8,27,16,29,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,27,16,27,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,135,64,26,18,8,27,16,31,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,113,64,26,18,8,27,16,32,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,27,16,30,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,134,64,26,18,8,27,16,34,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,113,64,26,18,8,27,16,35,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,27,16,33,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,134,64,26,18,8,27,16,37,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,113,64,26,18,8,27,16,38,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,27,16,36,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,27,16,5,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,27,16,2,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,102,48,54,48,50,26,18,8,27,16,3,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,27,16,1,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,158,3,18,155,3,10,152,3,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,27,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,105,64,26,18,8,27,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,131,64,26,18,8,27,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,27,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,105,64,26,18,8,27,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,132,64,26,18,8,27,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,27,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,27,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,27,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,102,102,50,56,56,53,26,18,8,27,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,27,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,246,4,18,243,4,10,240,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,30,16,2,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,102,48,54,48,50,26,18,8,30,16,3,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,30,16,4,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,96,64,26,18,8,30,16,8,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,125,64,26,18,8,30,16,7,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,30,16,6,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,124,64,26,18,8,30,16,10,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,101,64,26,18,8,30,16,11,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,30,16,9,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,124,64,26,18,8,30,16,13,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,101,64,26,18,8,30,16,14,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,30,16,12,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,128,64,26,18,8,30,16,16,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,96,64,26,18,8,30,16,17,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,30,16,15,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,30,16,5,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,30,16,1,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,158,3,18,155,3,10,152,3,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,128,64,26,18,8,31,16,7,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,96,64,26,18,8,31,16,8,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,31,16,6,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,128,64,26,18,8,31,16,10,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,96,64,26,18,8,31,16,11,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,31,16,9,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,31,16,5,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,31,16,2,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,102,48,54,48,50,26,18,8,31,16,3,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,31,16,4,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,31,16,1,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,30,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,102,102,50,56,56,53,26,18,8,30,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,30,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,102,64,26,18,8,30,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,132,64,26,18,8,30,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,30,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,112,64,26,18,8,30,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,72,132,64,26,18,8,30,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,30,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,30,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,30,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,138,31,18,135,31,10,132,31,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,31,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,53,57,49,52,53,26,18,8,31,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,31,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,230,29,10,6,112,111,105,110,116,115,18,219,29,18,216,29,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,121,64,26,18,8,31,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,119,64,26,18,8,31,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,121,64,26,18,8,31,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,122,64,26,18,8,31,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,123,64,26,18,8,31,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,121,64,26,18,8,31,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,122,64,26,18,8,31,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,127,64,26,18,8,31,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,122,64,26,18,8,31,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,8,128,64,26,18,8,31,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,128,64,26,18,8,31,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,123,64,26,18,8,31,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,124,64,26,18,8,31,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,136,128,64,26,18,8,31,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,125,64,26,18,8,31,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,184,128,64,26,18,8,31,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,127,64,26,18,8,31,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,129,64,26,18,8,31,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,127,64,26,18,8,31,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,104,129,64,26,18,8,31,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,127,64,26,18,8,31,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,152,129,64,26,18,8,31,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,126,64,26,18,8,31,16,40,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,130,64,26,18,8,31,16,41,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,39,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,123,64,26,18,8,31,16,43,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,232,130,64,26,18,8,31,16,44,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,42,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,122,64,26,18,8,31,16,46,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,128,64,26,18,8,31,16,47,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,45,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,122,64,26,18,8,31,16,49,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,123,64,26,18,8,31,16,50,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,48,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,123,64,26,18,8,31,16,53,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,123,64,26,18,8,31,16,52,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,51,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,124,64,26,18,8,31,16,55,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,122,64,26,18,8,31,16,56,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,54,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,126,64,26,18,8,31,16,58,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,122,64,26,18,8,31,16,59,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,57,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,128,64,26,18,8,31,16,61,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,123,64,26,18,8,31,16,62,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,60,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,129,64,26,18,8,31,16,64,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,125,64,26,18,8,31,16,65,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,63,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,126,64,26,18,8,31,16,68,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,129,64,26,18,8,31,16,67,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,66,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,128,64,26,18,8,31,16,70,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,24,128,64,26,18,8,31,16,71,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,69,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,88,129,64,26,18,8,31,16,74,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,126,64,26,18,8,31,16,73,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,72,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,124,64,26,18,8,31,16,76,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,168,129,64,26,18,8,31,16,77,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,75,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,120,64,26,18,8,31,16,79,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,129,64,26,18,8,31,16,80,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,78,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,119,64,26,18,8,31,16,82,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,129,64,26,18,8,31,16,83,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,81,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,119,64,26,18,8,31,16,85,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,72,129,64,26,18,8,31,16,86,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,84,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,119,64,26,18,8,31,16,88,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,136,128,64,26,18,8,31,16,89,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,87,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,120,64,26,18,8,31,16,91,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,128,64,26,18,8,31,16,92,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,90,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,127,64,26,18,8,31,16,95,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,122,64,26,18,8,31,16,94,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,93,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,127,64,26,18,8,31,16,98,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,124,64,26,18,8,31,16,97,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,96,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,126,64,26,18,8,31,16,100,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,127,64,26,18,8,31,16,101,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,99,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,127,64,26,18,8,31,16,104,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,128,64,26,18,8,31,16,103,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,102,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,128,64,26,18,8,31,16,106,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,127,64,26,18,8,31,16,107,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,105,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,128,64,26,18,8,31,16,109,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,128,64,26,18,8,31,16,110,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,108,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,31,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,173,41,18,170,41,10,167,41,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,27,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,54,101,97,98,54,26,18,8,27,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,27,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,137,40,10,6,112,111,105,110,116,115,18,254,39,18,251,39,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,144,64,26,18,8,27,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,90,64,26,18,8,27,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,144,64,26,18,8,27,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,86,64,26,18,8,27,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,144,64,26,18,8,27,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,83,64,26,18,8,27,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,204,144,64,26,18,8,27,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,80,64,26,18,8,27,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,20,145,64,26,18,8,27,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,78,64,26,18,8,27,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,145,64,26,18,8,27,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,78,64,26,18,8,27,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,172,145,64,26,18,8,27,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,81,64,26,18,8,27,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,145,64,26,18,8,27,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,86,64,26,18,8,27,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,145,64,26,18,8,27,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,93,64,26,18,8,27,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,145,64,26,18,8,27,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,99,64,26,18,8,27,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,145,64,26,18,8,27,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,105,64,26,18,8,27,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,145,64,26,18,8,27,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,111,64,26,18,8,27,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,144,64,26,18,8,27,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,112,64,26,18,8,27,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,20,144,64,26,18,8,27,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,114,64,26,18,8,27,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,143,64,26,18,8,27,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,114,64,26,18,8,27,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,143,64,26,18,8,27,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,113,64,26,18,8,27,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,143,64,26,18,8,27,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,113,64,26,18,8,27,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,142,64,26,18,8,27,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,105,64,26,18,8,27,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,142,64,26,18,8,27,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,101,64,26,18,8,27,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,143,64,26,18,8,27,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,91,64,26,18,8,27,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,85,64,26,18,8,27,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,143,64,26,18,8,27,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,146,64,26,18,8,27,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,52,64,26,18,8,27,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,132,146,64,26,18,8,27,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,52,64,26,18,8,27,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,147,64,26,18,8,27,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,72,64,26,18,8,27,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,147,64,26,18,8,27,16,79,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,85,64,26,18,8,27,16,80,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,78,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,212,147,64,26,18,8,27,16,82,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,96,64,26,18,8,27,16,83,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,81,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,145,64,26,18,8,27,16,85,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,119,64,26,18,8,27,16,86,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,84,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,84,144,64,26,18,8,27,16,88,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,122,64,26,18,8,27,16,89,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,87,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,139,64,26,18,8,27,16,91,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,125,64,26,18,8,27,16,92,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,90,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,139,64,26,18,8,27,16,94,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,125,64,26,18,8,27,16,95,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,93,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,138,64,26,18,8,27,16,97,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,124,64,26,18,8,27,16,98,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,96,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,138,64,26,18,8,27,16,100,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,122,64,26,18,8,27,16,101,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,99,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,138,64,26,18,8,27,16,103,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,117,64,26,18,8,27,16,104,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,102,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,139,64,26,18,8,27,16,106,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,114,64,26,18,8,27,16,107,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,105,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,141,64,26,18,8,27,16,109,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,103,64,26,18,8,27,16,110,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,108,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,146,64,26,18,8,27,16,112,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,76,64,26,18,8,27,16,113,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,111,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,147,64,26,18,8,27,16,115,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,76,64,26,18,8,27,16,116,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,114,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,220,147,64,26,18,8,27,16,118,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,79,64,26,18,8,27,16,119,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,117,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,146,64,26,18,8,27,16,121,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,103,64,26,18,8,27,16,122,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,120,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,133,64,26,18,8,27,16,124,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,128,64,26,18,8,27,16,125,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,123,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,107,18,105,10,103,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,126,64,26,19,8,27,16,128,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,131,64,26,18,8,27,16,127,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,126,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,132,64,26,19,8,27,16,130,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,120,64,26,19,8,27,16,131,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,27,16,129,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,136,64,26,19,8,27,16,133,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,106,64,26,19,8,27,16,134,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,27,16,132,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,141,64,26,19,8,27,16,136,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,99,64,26,19,8,27,16,137,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,27,16,135,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,143,64,26,19,8,27,16,139,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,100,64,26,19,8,27,16,140,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,27,16,138,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,106,64,26,19,8,27,16,143,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,144,64,26,19,8,27,16,142,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,27,16,141,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,147,64,26,19,8,27,16,145,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,111,64,26,19,8,27,16,146,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,27,16,144,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,27,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,33,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,53,57,49,52,53,26,18,8,33,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,33,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,129,64,26,18,8,33,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,130,64,26,18,8,33,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,33,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,129,64,26,18,8,33,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,130,64,26,18,8,33,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,33,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,33,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,33,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,34,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,53,57,49,52,53,26,18,8,34,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,34,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,124,64,26,18,8,34,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,88,131,64,26,18,8,34,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,34,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,124,64,26,18,8,34,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,131,64,26,18,8,34,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,34,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,34,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,34,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,154,14,18,151,14,10,148,14,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,35,16,2,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,97,102,99,100,49,26,18,8,35,16,3,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,35,16,4,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,246,12,10,6,112,111,105,110,116,115,18,235,12,18,232,12,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,148,64,26,18,8,35,16,7,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,119,64,26,18,8,35,16,8,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,6,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,147,64,26,18,8,35,16,10,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,121,64,26,18,8,35,16,11,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,9,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,147,64,26,18,8,35,16,13,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,122,64,26,18,8,35,16,14,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,12,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,147,64,26,18,8,35,16,16,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,123,64,26,18,8,35,16,17,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,15,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,146,64,26,18,8,35,16,19,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,123,64,26,18,8,35,16,20,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,18,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,60,147,64,26,18,8,35,16,22,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,124,64,26,18,8,35,16,23,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,21,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,148,64,26,18,8,35,16,25,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,125,64,26,18,8,35,16,26,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,24,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,149,64,26,18,8,35,16,28,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,125,64,26,18,8,35,16,29,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,27,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,125,64,26,18,8,35,16,32,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,4,150,64,26,18,8,35,16,31,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,30,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,150,64,26,18,8,35,16,34,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,124,64,26,18,8,35,16,35,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,33,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,150,64,26,18,8,35,16,37,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,124,64,26,18,8,35,16,38,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,36,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,150,64,26,18,8,35,16,40,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,124,64,26,18,8,35,16,41,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,39,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,124,64,26,18,8,35,16,44,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,252,149,64,26,18,8,35,16,43,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,42,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,228,149,64,26,18,8,35,16,46,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,124,64,26,18,8,35,16,47,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,45,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,236,149,64,26,18,8,35,16,49,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,124,64,26,18,8,35,16,50,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,48,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,5,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,35,16,1,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,162,19,18,159,19,10,156,19,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,53,57,49,52,53,26,18,8,36,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,36,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,254,17,10,6,112,111,105,110,116,115,18,243,17,18,240,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,124,64,26,18,8,36,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,104,132,64,26,18,8,36,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,123,64,26,18,8,36,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,120,131,64,26,18,8,36,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,123,64,26,18,8,36,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,130,64,26,18,8,36,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,123,64,26,18,8,36,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,129,64,26,18,8,36,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,124,64,26,18,8,36,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,127,64,26,18,8,36,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,125,64,26,18,8,36,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,127,64,26,18,8,36,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,126,64,26,18,8,36,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,127,64,26,18,8,36,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,128,64,26,18,8,36,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,24,128,64,26,18,8,36,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,128,64,26,18,8,36,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,88,128,64,26,18,8,36,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,128,64,26,18,8,36,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,129,64,26,18,8,36,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,128,64,26,18,8,36,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,248,129,64,26,18,8,36,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,128,64,26,18,8,36,16,40,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,72,130,64,26,18,8,36,16,41,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,39,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,126,64,26,18,8,36,16,43,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,216,130,64,26,18,8,36,16,44,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,42,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,200,130,64,26,18,8,36,16,47,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,124,64,26,18,8,36,16,46,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,45,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,121,64,26,18,8,36,16,49,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,130,64,26,18,8,36,16,50,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,48,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,121,64,26,18,8,36,16,52,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,129,64,26,18,8,36,16,53,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,51,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,123,64,26,18,8,36,16,55,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,129,64,26,18,8,36,16,56,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,54,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,124,64,26,18,8,36,16,58,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,24,129,64,26,18,8,36,16,59,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,57,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,127,64,26,18,8,36,16,61,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,129,64,26,18,8,36,16,62,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,60,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,128,64,26,18,8,36,16,64,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,129,64,26,18,8,36,16,65,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,63,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,128,64,26,18,8,36,16,67,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,24,129,64,26,18,8,36,16,68,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,66,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,36,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,36,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,35,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,102,102,50,56,56,53,26,18,8,35,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,35,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,114,64,26,18,8,35,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,136,129,64,26,18,8,35,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,35,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,114,64,26,18,8,35,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,120,131,64,26,18,8,35,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,35,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,35,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,35,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,166,8,18,163,8,10,160,8,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,38,16,2,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,97,102,99,100,49,26,18,8,38,16,3,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,38,16,4,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,130,7,10,6,112,111,105,110,116,115,18,247,6,18,244,6,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,153,64,26,18,8,38,16,7,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,107,64,26,18,8,38,16,8,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,38,16,6,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,20,154,64,26,18,8,38,16,10,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,114,64,26,18,8,38,16,11,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,38,16,9,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,154,64,26,18,8,38,16,13,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,119,64,26,18,8,38,16,14,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,38,16,12,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,244,153,64,26,18,8,38,16,16,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,122,64,26,18,8,38,16,17,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,38,16,15,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,155,64,26,18,8,38,16,19,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,116,64,26,18,8,38,16,20,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,38,16,18,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,155,64,26,18,8,38,16,22,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,120,64,26,18,8,38,16,23,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,38,16,21,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,84,155,64,26,18,8,38,16,25,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,120,64,26,18,8,38,16,26,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,38,16,24,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,76,156,64,26,18,8,38,16,28,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,120,64,26,18,8,38,16,29,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,38,16,27,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,38,16,5,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,38,16,1,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,38,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,102,102,50,56,56,53,26,18,8,38,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,38,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,114,64,26,18,8,38,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,132,64,26,18,8,38,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,38,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,114,64,26,18,8,38,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,136,132,64,26,18,8,38,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,38,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,38,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,38,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,131,50,18,128,50,10,253,49,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,38,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,54,101,97,98,54,26,18,8,38,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,38,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,223,48,10,6,112,111,105,110,116,115,18,212,48,18,209,48,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,147,64,26,18,8,38,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,113,64,26,18,8,38,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,147,64,26,18,8,38,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,114,64,26,18,8,38,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,132,147,64,26,18,8,38,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,114,64,26,18,8,38,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,147,64,26,18,8,38,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,113,64,26,18,8,38,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,103,64,26,18,8,38,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,147,64,26,18,8,38,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,100,64,26,18,8,38,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,148,64,26,18,8,38,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,132,148,64,26,18,8,38,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,98,64,26,18,8,38,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,149,64,26,18,8,38,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,98,64,26,18,8,38,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,99,64,26,18,8,38,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,149,64,26,18,8,38,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,104,64,26,18,8,38,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,244,149,64,26,18,8,38,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,12,150,64,26,18,8,38,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,110,64,26,18,8,38,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,115,64,26,18,8,38,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,149,64,26,18,8,38,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,148,64,26,18,8,38,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,117,64,26,18,8,38,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,60,148,64,26,18,8,38,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,119,64,26,18,8,38,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,147,64,26,18,8,38,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,119,64,26,18,8,38,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,188,146,64,26,18,8,38,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,119,64,26,18,8,38,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,145,64,26,18,8,38,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,115,64,26,18,8,38,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,180,145,64,26,18,8,38,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,110,64,26,18,8,38,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,92,64,26,18,8,38,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,146,64,26,18,8,38,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,147,64,26,18,8,38,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,87,64,26,18,8,38,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,85,64,26,18,8,38,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,52,148,64,26,18,8,38,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,188,148,64,26,18,8,38,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,84,64,26,18,8,38,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,87,64,26,18,8,38,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,149,64,26,18,8,38,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,149,64,26,18,8,38,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,95,64,26,18,8,38,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,147,64,26,18,8,38,16,79,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,118,64,26,18,8,38,16,80,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,78,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,92,145,64,26,18,8,38,16,82,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,122,64,26,18,8,38,16,83,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,81,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,135,64,26,18,8,38,16,85,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,122,64,26,18,8,38,16,86,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,84,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,137,64,26,18,8,38,16,88,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,99,64,26,18,8,38,16,89,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,87,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,138,64,26,18,8,38,16,91,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,99,64,26,18,8,38,16,92,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,90,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,113,64,26,18,8,38,16,95,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,137,64,26,18,8,38,16,94,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,93,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,136,64,26,18,8,38,16,97,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,115,64,26,18,8,38,16,98,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,96,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,134,64,26,18,8,38,16,100,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,117,64,26,18,8,38,16,101,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,99,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,128,64,26,18,8,38,16,103,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,120,64,26,18,8,38,16,104,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,102,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,126,64,26,18,8,38,16,106,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,118,64,26,18,8,38,16,107,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,105,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,125,64,26,18,8,38,16,109,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,110,64,26,18,8,38,16,110,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,108,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,128,64,26,18,8,38,16,112,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,54,64,26,18,8,38,16,113,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,111,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,130,64,26,18,8,38,16,115,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,74,192,26,18,8,38,16,116,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,114,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,73,192,26,18,8,38,16,119,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,133,64,26,18,8,38,16,118,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,117,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,134,64,26,18,8,38,16,121,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,78,64,26,18,8,38,16,122,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,120,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,133,64,26,18,8,38,16,124,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,105,64,26,18,8,38,16,125,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,123,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,131,64,26,18,8,38,16,127,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,112,64,26,19,8,38,16,128,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,126,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,129,64,26,19,8,38,16,130,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,111,64,26,19,8,38,16,131,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,129,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,129,64,26,19,8,38,16,133,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,97,64,26,19,8,38,16,134,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,132,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,130,64,26,19,8,38,16,136,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,66,64,26,19,8,38,16,137,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,135,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,134,64,26,19,8,38,16,139,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,192,26,19,8,38,16,140,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,138,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,137,64,26,19,8,38,16,142,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,89,64,26,19,8,38,16,143,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,141,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,137,64,26,19,8,38,16,145,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,112,64,26,19,8,38,16,146,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,144,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,136,64,26,19,8,38,16,148,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,120,64,26,19,8,38,16,149,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,147,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,135,64,26,19,8,38,16,151,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,122,64,26,19,8,38,16,152,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,150,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,135,64,26,19,8,38,16,154,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,121,64,26,19,8,38,16,155,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,153,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,144,64,26,19,8,38,16,157,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,115,64,26,19,8,38,16,158,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,156,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,145,64,26,19,8,38,16,160,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,122,64,26,19,8,38,16,161,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,159,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,130,64,26,19,8,38,16,164,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,142,64,26,19,8,38,16,163,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,162,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,136,64,26,19,8,38,16,166,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,131,64,26,19,8,38,16,167,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,165,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,135,64,26,19,8,38,16,169,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,128,64,26,19,8,38,16,170,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,168,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,141,64,26,19,8,38,16,172,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,119,64,26,19,8,38,16,173,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,171,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,38,16,176,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,143,64,26,19,8,38,16,175,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,38,16,174,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,38,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,242,15,18,239,15,10,236,15,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,27,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,48,50,49,97,51,26,18,8,27,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,27,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,206,14,10,6,112,111,105,110,116,115,18,195,14,18,192,14,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,112,64,26,18,8,27,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,109,64,26,18,8,27,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,112,64,26,18,8,27,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,108,64,26,18,8,27,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,115,64,26,18,8,27,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,100,64,26,18,8,27,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,116,64,26,18,8,27,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,99,64,26,18,8,27,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,98,64,26,18,8,27,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,117,64,26,18,8,27,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,117,64,26,18,8,27,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,99,64,26,18,8,27,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,117,64,26,18,8,27,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,103,64,26,18,8,27,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,118,64,26,18,8,27,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,104,64,26,18,8,27,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,117,64,26,18,8,27,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,106,64,26,18,8,27,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,117,64,26,18,8,27,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,107,64,26,18,8,27,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,113,64,26,18,8,27,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,108,64,26,18,8,27,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,112,64,26,18,8,27,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,105,64,26,18,8,27,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,112,64,26,18,8,27,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,105,64,26,18,8,27,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,115,64,26,18,8,27,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,106,64,26,18,8,27,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,114,64,26,18,8,27,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,107,64,26,18,8,27,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,114,64,26,18,8,27,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,106,64,26,18,8,27,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,114,64,26,18,8,27,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,106,64,26,18,8,27,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,18,8,27,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,214,11,18,211,11,10,208,11,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,97,102,99,100,49,26,18,8,43,16,3,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,43,16,4,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,178,10,10,6,112,111,105,110,116,115,18,167,10,18,164,10,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,156,156,64,26,18,8,43,16,7,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,122,64,26,18,8,43,16,8,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,43,16,6,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,156,64,26,18,8,43,16,10,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,121,64,26,18,8,43,16,11,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,43,16,9,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,117,64,26,18,8,43,16,14,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,157,64,26,18,8,43,16,13,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,43,16,12,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,157,64,26,18,8,43,16,16,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,116,64,26,18,8,43,16,17,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,43,16,15,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,157,64,26,18,8,43,16,19,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,115,64,26,18,8,43,16,20,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,43,16,18,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,115,64,26,18,8,43,16,23,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,157,64,26,18,8,43,16,22,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,43,16,21,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,157,64,26,18,8,43,16,25,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,115,64,26,18,8,43,16,26,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,43,16,24,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,44,157,64,26,18,8,43,16,28,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,116,64,26,18,8,43,16,29,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,43,16,27,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,157,64,26,18,8,43,16,31,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,117,64,26,18,8,43,16,32,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,43,16,30,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,20,157,64,26,18,8,43,16,34,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,119,64,26,18,8,43,16,35,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,43,16,33,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,28,157,64,26,18,8,43,16,37,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,119,64,26,18,8,43,16,38,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,43,16,36,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,157,64,26,18,8,43,16,40,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,119,64,26,18,8,43,16,41,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,43,16,39,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,43,16,5,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,43,16,2,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,43,16,1,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,44,16,2,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,97,102,99,100,49,26,18,8,44,16,3,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,44,16,4,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,157,64,26,18,8,44,16,7,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,107,64,26,18,8,44,16,8,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,44,16,6,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,157,64,26,18,8,44,16,10,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,107,64,26,18,8,44,16,11,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,44,16,9,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,44,16,5,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,44,16,1,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,186,7,18,183,7,10,180,7,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,47,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,100,100,97,98,51,101,26,18,8,47,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,47,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,150,6,10,6,112,111,105,110,116,115,18,139,6,18,136,6,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,118,64,26,18,8,47,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,80,64,26,18,8,47,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,47,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,117,64,26,18,8,47,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,82,64,26,18,8,47,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,47,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,117,64,26,18,8,47,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,84,64,26,18,8,47,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,47,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,117,64,26,18,8,47,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,86,64,26,18,8,47,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,47,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,118,64,26,18,8,47,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,87,64,26,18,8,47,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,47,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,87,64,26,18,8,47,16,23,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,118,64,26,18,8,47,16,22,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,47,16,21,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,119,64,26,18,8,47,16,25,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,86,64,26,18,8,47,16,26,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,47,16,24,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,47,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,47,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,174,13,18,171,13,10,168,13,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,48,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,53,99,48,57,48,26,18,8,48,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,48,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,138,12,10,6,112,111,105,110,116,115,18,255,11,18,252,11,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,130,64,26,18,8,48,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,134,64,26,18,8,48,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,130,64,26,18,8,48,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,88,134,64,26,18,8,48,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,130,64,26,18,8,48,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,134,64,26,18,8,48,16,14,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,129,64,26,18,8,48,16,16,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,135,64,26,18,8,48,16,17,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,15,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,88,137,64,26,18,8,48,16,20,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,129,64,26,18,8,48,16,19,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,18,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,130,64,26,18,8,48,16,22,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,184,137,64,26,18,8,48,16,23,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,21,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,130,64,26,18,8,48,16,25,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,72,138,64,26,18,8,48,16,26,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,24,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,130,64,26,18,8,48,16,28,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,138,64,26,18,8,48,16,29,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,27,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,131,64,26,18,8,48,16,31,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,200,138,64,26,18,8,48,16,32,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,30,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,131,64,26,18,8,48,16,34,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,200,138,64,26,18,8,48,16,35,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,33,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,132,64,26,18,8,48,16,37,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,138,64,26,18,8,48,16,38,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,36,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,133,64,26,18,8,48,16,40,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,138,64,26,18,8,48,16,41,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,39,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,133,64,26,18,8,48,16,43,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,138,64,26,18,8,48,16,44,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,42,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,134,64,26,18,8,48,16,46,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,200,137,64,26,18,8,48,16,47,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,45,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,48,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,206,6,18,203,6,10,200,6,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,49,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,100,100,97,98,51,101,26,18,8,49,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,49,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,170,5,10,6,112,111,105,110,116,115,18,159,5,18,156,5,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,117,64,26,18,8,49,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,83,64,26,18,8,49,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,49,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,118,64,26,18,8,49,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,82,64,26,18,8,49,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,49,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,119,64,26,18,8,49,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,81,64,26,18,8,49,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,49,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,119,64,26,18,8,49,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,82,64,26,18,8,49,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,49,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,119,64,26,18,8,49,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,84,64,26,18,8,49,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,49,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,118,64,26,18,8,49,16,22,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,91,64,26,18,8,49,16,23,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,49,16,21,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,49,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,49,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,246,4,18,243,4,10,240,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,47,16,4,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,119,64,26,18,8,47,16,7,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,109,64,26,18,8,47,16,8,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,47,16,6,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,121,64,26,18,8,47,16,10,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,123,64,26,18,8,47,16,11,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,47,16,9,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,121,64,26,18,8,47,16,13,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,124,64,26,18,8,47,16,14,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,47,16,12,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,119,64,26,18,8,47,16,16,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,118,64,26,18,8,47,16,17,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,47,16,15,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,47,16,5,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,47,16,2,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,102,48,54,48,50,26,18,8,47,16,3,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,47,16,1,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,226,5,18,223,5,10,220,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,51,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,100,100,97,98,51,101,26,18,8,51,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,51,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,120,64,26,18,8,51,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,83,64,26,18,8,51,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,51,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,119,64,26,18,8,51,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,83,64,26,18,8,51,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,51,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,119,64,26,18,8,51,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,83,64,26,18,8,51,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,51,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,120,64,26,18,8,51,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,85,64,26,18,8,51,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,51,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,121,64,26,18,8,51,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,84,64,26,18,8,51,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,51,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,51,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,51,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,48,16,2,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,102,48,54,48,50,26,18,8,48,16,3,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,48,16,4,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,118,64,26,18,8,48,16,8,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,118,64,26,18,8,48,16,7,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,48,16,6,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,125,64,26,18,8,48,16,10,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,108,64,26,18,8,48,16,11,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,48,16,9,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,48,16,5,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,48,16,1,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,158,3,18,155,3,10,152,3,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,49,16,4,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,103,64,26,18,8,49,16,8,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,123,64,26,18,8,49,16,7,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,49,16,6,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,127,64,26,18,8,49,16,10,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,119,64,26,18,8,49,16,11,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,49,16,9,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,49,16,5,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,49,16,2,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,102,48,54,48,50,26,18,8,49,16,3,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,49,16,1,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,50,16,2,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,102,48,54,48,50,26,18,8,50,16,3,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,50,16,4,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,101,64,26,18,8,50,16,8,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,128,64,26,18,8,50,16,7,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,50,16,6,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,128,64,26,18,8,50,16,10,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,100,64,26,18,8,50,16,11,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,50,16,9,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,50,16,5,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,50,16,1,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,242,50,18,239,50,10,236,50,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,45,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,54,101,97,98,54,26,18,8,45,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,45,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,206,49,10,6,112,111,105,110,116,115,18,195,49,18,192,49,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,142,64,26,18,8,45,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,126,64,26,18,8,45,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,142,64,26,18,8,45,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,126,64,26,18,8,45,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,142,64,26,18,8,45,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,125,64,26,18,8,45,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,143,64,26,18,8,45,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,125,64,26,18,8,45,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,164,144,64,26,18,8,45,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,123,64,26,18,8,45,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,76,145,64,26,18,8,45,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,123,64,26,18,8,45,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,145,64,26,18,8,45,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,124,64,26,18,8,45,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,145,64,26,18,8,45,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,125,64,26,18,8,45,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,127,64,26,18,8,45,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,145,64,26,18,8,45,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,196,144,64,26,18,8,45,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,216,130,64,26,18,8,45,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,144,64,26,18,8,45,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,131,64,26,18,8,45,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,84,144,64,26,18,8,45,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,131,64,26,18,8,45,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,131,64,26,18,8,45,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,143,64,26,18,8,45,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,142,64,26,18,8,45,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,131,64,26,18,8,45,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,129,64,26,18,8,45,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,140,64,26,18,8,45,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,139,64,26,18,8,45,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,125,64,26,18,8,45,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,139,64,26,18,8,45,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,122,64,26,18,8,45,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,139,64,26,18,8,45,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,116,64,26,18,8,45,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,108,64,26,18,8,45,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,141,64,26,18,8,45,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,143,64,26,18,8,45,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,100,64,26,18,8,45,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,144,64,26,18,8,45,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,97,64,26,18,8,45,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,12,146,64,26,18,8,45,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,95,64,26,18,8,45,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,147,64,26,18,8,45,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,97,64,26,18,8,45,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,147,64,26,18,8,45,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,99,64,26,18,8,45,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,102,64,26,18,8,45,16,80,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,148,64,26,18,8,45,16,79,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,78,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,148,64,26,18,8,45,16,82,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,104,64,26,18,8,45,16,83,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,81,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,148,64,26,18,8,45,16,85,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,109,64,26,18,8,45,16,86,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,84,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,147,64,26,18,8,45,16,88,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,121,64,26,18,8,45,16,89,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,87,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,252,146,64,26,18,8,45,16,91,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,123,64,26,18,8,45,16,92,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,90,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,126,64,26,18,8,45,16,95,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,212,145,64,26,18,8,45,16,94,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,93,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,108,146,64,26,18,8,45,16,97,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,114,64,26,18,8,45,16,98,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,96,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,252,146,64,26,18,8,45,16,100,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,110,64,26,18,8,45,16,101,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,99,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,147,64,26,18,8,45,16,103,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,104,64,26,18,8,45,16,104,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,102,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,148,64,26,18,8,45,16,106,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,98,64,26,18,8,45,16,107,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,105,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,153,64,26,18,8,45,16,109,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,86,64,26,18,8,45,16,110,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,108,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,44,153,64,26,18,8,45,16,112,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,109,64,26,18,8,45,16,113,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,111,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,151,64,26,18,8,45,16,115,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,119,64,26,18,8,45,16,116,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,114,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,148,64,26,18,8,45,16,118,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,128,64,26,18,8,45,16,119,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,117,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,164,146,64,26,18,8,45,16,121,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,129,64,26,18,8,45,16,122,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,120,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,145,64,26,18,8,45,16,124,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,127,64,26,18,8,45,16,125,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,123,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,147,64,26,18,8,45,16,127,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,113,64,26,19,8,45,16,128,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,126,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,64,26,19,8,45,16,131,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,150,64,26,19,8,45,16,130,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,129,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,153,64,26,19,8,45,16,133,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,99,64,26,19,8,45,16,134,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,132,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,154,64,26,19,8,45,16,136,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,110,64,26,19,8,45,16,137,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,135,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,152,64,26,19,8,45,16,139,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,121,64,26,19,8,45,16,140,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,138,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,148,64,26,19,8,45,16,142,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,132,64,26,19,8,45,16,143,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,141,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,142,64,26,19,8,45,16,145,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,133,64,26,19,8,45,16,146,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,144,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,135,64,26,19,8,45,16,148,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,127,64,26,19,8,45,16,149,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,147,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,133,64,26,19,8,45,16,151,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,98,64,26,19,8,45,16,152,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,150,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,134,64,26,19,8,45,16,154,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,85,64,26,19,8,45,16,155,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,153,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,106,64,26,19,8,45,16,158,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,133,64,26,19,8,45,16,157,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,156,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,128,64,26,19,8,45,16,160,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,119,64,26,19,8,45,16,161,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,159,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,123,64,26,19,8,45,16,163,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,97,64,26,19,8,45,16,164,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,162,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,56,192,26,19,8,45,16,167,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,128,64,26,19,8,45,16,166,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,165,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,120,64,26,19,8,45,16,169,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,45,16,170,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,168,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,117,64,26,19,8,45,16,172,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,113,64,26,19,8,45,16,173,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,171,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,45,16,175,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,99,64,26,19,8,45,16,176,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,174,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,119,64,26,19,8,45,16,178,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,99,64,26,19,8,45,16,179,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,45,16,177,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,45,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,175,67,18,172,67,10,169,67,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,53,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,54,101,97,98,54,26,18,8,53,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,53,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,139,66,10,6,112,111,105,110,116,115,18,128,66,18,253,65,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,120,64,26,18,8,53,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,99,64,26,18,8,53,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,120,64,26,18,8,53,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,102,64,26,18,8,53,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,119,64,26,18,8,53,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,105,64,26,18,8,53,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,119,64,26,18,8,53,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,110,64,26,18,8,53,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,119,64,26,18,8,53,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,108,64,26,18,8,53,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,120,64,26,18,8,53,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,102,64,26,18,8,53,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,121,64,26,18,8,53,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,99,64,26,18,8,53,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,124,64,26,18,8,53,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,90,64,26,18,8,53,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,125,64,26,18,8,53,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,85,64,26,18,8,53,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,127,64,26,18,8,53,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,80,64,26,18,8,53,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,128,64,26,18,8,53,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,80,64,26,18,8,53,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,128,64,26,18,8,53,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,81,64,26,18,8,53,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,128,64,26,18,8,53,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,87,64,26,18,8,53,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,126,64,26,18,8,53,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,99,64,26,18,8,53,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,123,64,26,18,8,53,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,108,64,26,18,8,53,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,119,64,26,18,8,53,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,114,64,26,18,8,53,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,117,64,26,18,8,53,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,116,64,26,18,8,53,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,114,64,26,18,8,53,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,117,64,26,18,8,53,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,112,64,26,18,8,53,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,118,64,26,18,8,53,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,110,64,26,18,8,53,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,117,64,26,18,8,53,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,109,64,26,18,8,53,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,116,64,26,18,8,53,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,108,64,26,18,8,53,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,115,64,26,18,8,53,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,110,64,26,18,8,53,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,108,64,26,18,8,53,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,110,64,26,18,8,53,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,103,64,26,18,8,53,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,114,64,26,18,8,53,16,79,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,95,64,26,18,8,53,16,80,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,78,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,115,64,26,18,8,53,16,82,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,89,64,26,18,8,53,16,83,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,81,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,117,64,26,18,8,53,16,85,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,85,64,26,18,8,53,16,86,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,84,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,120,64,26,18,8,53,16,88,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,81,64,26,18,8,53,16,89,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,87,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,124,64,26,18,8,53,16,91,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,81,64,26,18,8,53,16,92,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,90,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,127,64,26,18,8,53,16,94,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,88,64,26,18,8,53,16,95,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,93,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,129,64,26,18,8,53,16,97,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,101,64,26,18,8,53,16,98,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,96,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,130,64,26,18,8,53,16,100,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,106,64,26,18,8,53,16,101,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,99,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,130,64,26,18,8,53,16,103,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,115,64,26,18,8,53,16,104,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,102,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,130,64,26,18,8,53,16,106,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,118,64,26,18,8,53,16,107,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,105,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,130,64,26,18,8,53,16,109,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,121,64,26,18,8,53,16,110,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,108,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,129,64,26,18,8,53,16,112,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,125,64,26,18,8,53,16,113,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,111,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,129,64,26,18,8,53,16,115,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,40,128,64,26,18,8,53,16,116,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,114,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,128,64,26,18,8,53,16,118,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,129,64,26,18,8,53,16,119,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,117,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,126,64,26,18,8,53,16,121,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,130,64,26,18,8,53,16,122,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,120,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,123,64,26,18,8,53,16,124,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,184,131,64,26,18,8,53,16,125,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,123,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,122,64,26,18,8,53,16,127,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,131,64,26,19,8,53,16,128,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,126,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,121,64,26,19,8,53,16,130,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,132,64,26,19,8,53,16,131,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,129,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,120,64,26,19,8,53,16,133,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,132,64,26,19,8,53,16,134,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,132,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,53,16,136,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,131,64,26,19,8,53,16,137,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,135,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,118,64,26,19,8,53,16,139,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,131,64,26,19,8,53,16,140,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,138,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,117,64,26,19,8,53,16,142,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,130,64,26,19,8,53,16,143,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,141,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,117,64,26,19,8,53,16,145,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,128,64,26,19,8,53,16,146,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,144,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,117,64,26,19,8,53,16,148,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,124,64,26,19,8,53,16,149,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,147,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,118,64,26,19,8,53,16,151,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,121,64,26,19,8,53,16,152,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,150,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,53,16,154,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,118,64,26,19,8,53,16,155,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,153,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,122,64,26,19,8,53,16,157,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,114,64,26,19,8,53,16,158,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,156,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,124,64,26,19,8,53,16,160,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,113,64,26,19,8,53,16,161,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,159,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,111,64,26,19,8,53,16,164,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,127,64,26,19,8,53,16,163,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,162,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,128,64,26,19,8,53,16,166,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,111,64,26,19,8,53,16,167,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,165,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,111,64,26,19,8,53,16,170,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,129,64,26,19,8,53,16,169,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,168,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,114,64,26,19,8,53,16,173,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,131,64,26,19,8,53,16,172,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,171,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,131,64,26,19,8,53,16,175,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,118,64,26,19,8,53,16,176,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,174,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,131,64,26,19,8,53,16,178,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,124,64,26,19,8,53,16,179,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,177,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,130,64,26,19,8,53,16,181,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,128,64,26,19,8,53,16,182,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,180,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,128,64,26,19,8,53,16,184,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,130,64,26,19,8,53,16,185,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,183,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,122,64,26,19,8,53,16,187,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,130,64,26,19,8,53,16,188,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,186,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,117,64,26,19,8,53,16,190,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,129,64,26,19,8,53,16,191,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,189,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,116,64,26,19,8,53,16,193,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,53,16,194,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,192,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,116,64,26,19,8,53,16,196,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,119,64,26,19,8,53,16,197,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,195,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,123,64,26,19,8,53,16,199,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,112,64,26,19,8,53,16,200,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,198,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,130,64,26,19,8,53,16,202,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,109,64,26,19,8,53,16,203,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,201,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,133,64,26,19,8,53,16,205,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,113,64,26,19,8,53,16,206,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,204,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,134,64,26,19,8,53,16,208,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,119,64,26,19,8,53,16,209,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,207,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,132,64,26,19,8,53,16,211,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,125,64,26,19,8,53,16,212,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,210,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,130,64,26,19,8,53,16,214,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,128,64,26,19,8,53,16,215,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,213,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,127,64,26,19,8,53,16,218,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,129,64,26,19,8,53,16,217,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,216,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,130,64,26,19,8,53,16,220,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,53,16,221,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,219,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,133,64,26,19,8,53,16,223,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,112,64,26,19,8,53,16,224,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,222,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,137,64,26,19,8,53,16,226,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,109,64,26,19,8,53,16,227,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,225,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,139,64,26,19,8,53,16,229,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,113,64,26,19,8,53,16,230,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,228,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,141,64,26,19,8,53,16,232,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,119,64,26,19,8,53,16,233,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,231,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,123,64,26,19,8,53,16,236,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,140,64,26,19,8,53,16,235,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,53,16,234,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,53,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,186,7,18,183,7,10,180,7,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,57,16,2,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,102,48,54,48,50,26,18,8,57,16,3,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,57,16,4,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,150,6,10,6,112,111,105,110,116,115,18,139,6,18,136,6,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,102,64,26,18,8,57,16,8,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,128,64,26,18,8,57,16,7,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,57,16,6,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,128,64,26,18,8,57,16,10,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,103,64,26,18,8,57,16,11,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,57,16,9,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,128,64,26,18,8,57,16,13,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,102,64,26,18,8,57,16,14,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,57,16,12,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,100,64,26,18,8,57,16,17,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,128,64,26,18,8,57,16,16,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,57,16,15,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,100,64,26,18,8,57,16,20,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,128,64,26,18,8,57,16,19,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,57,16,18,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,127,64,26,18,8,57,16,22,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,99,64,26,18,8,57,16,23,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,57,16,21,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,126,64,26,18,8,57,16,25,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,98,64,26,18,8,57,16,26,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,57,16,24,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,57,16,5,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,57,16,1,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,226,5,18,223,5,10,220,5,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,58,16,4,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,128,64,26,18,8,58,16,7,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,107,64,26,18,8,58,16,8,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,58,16,6,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,128,64,26,18,8,58,16,10,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,110,64,26,18,8,58,16,11,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,58,16,9,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,128,64,26,18,8,58,16,13,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,114,64,26,18,8,58,16,14,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,58,16,12,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,129,64,26,18,8,58,16,16,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,115,64,26,18,8,58,16,17,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,58,16,15,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,117,64,26,18,8,58,16,20,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,129,64,26,18,8,58,16,19,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,58,16,18,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,58,16,5,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,58,16,2,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,102,48,54,48,50,26,18,8,58,16,3,26,12,98,255,26,127,217,176,234,142,137,48,70,185,18,18,8,58,16,1,26,12,98,255,26,127,217,176,234,142,137,48,70,185,10,220,97,18,217,97,10,214,97,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,59,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,53,99,48,57,48,26,18,8,59,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,59,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,184,96,10,6,112,111,105,110,116,115,18,173,96,18,170,96,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,156,64,26,18,8,59,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,111,64,26,18,8,59,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,52,156,64,26,18,8,59,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,110,64,26,18,8,59,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,60,156,64,26,18,8,59,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,109,64,26,18,8,59,16,14,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,108,156,64,26,18,8,59,16,16,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,108,64,26,18,8,59,16,17,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,15,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,180,156,64,26,18,8,59,16,19,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,106,64,26,18,8,59,16,20,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,18,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,157,64,26,18,8,59,16,22,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,104,64,26,18,8,59,16,23,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,21,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,180,157,64,26,18,8,59,16,25,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,104,64,26,18,8,59,16,26,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,24,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,28,158,64,26,18,8,59,16,28,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,105,64,26,18,8,59,16,29,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,27,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,164,158,64,26,18,8,59,16,31,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,108,64,26,18,8,59,16,32,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,30,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,108,64,26,18,8,59,16,35,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,188,158,64,26,18,8,59,16,34,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,33,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,158,64,26,18,8,59,16,37,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,106,64,26,18,8,59,16,38,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,36,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,159,64,26,18,8,59,16,40,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,103,64,26,18,8,59,16,41,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,39,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,44,159,64,26,18,8,59,16,43,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,101,64,26,18,8,59,16,44,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,42,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,36,159,64,26,18,8,59,16,46,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,98,64,26,18,8,59,16,47,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,45,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,97,64,26,18,8,59,16,50,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,158,64,26,18,8,59,16,49,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,48,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,220,158,64,26,18,8,59,16,52,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,96,64,26,18,8,59,16,53,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,51,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,84,158,64,26,18,8,59,16,55,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,96,64,26,18,8,59,16,56,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,54,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,158,64,26,18,8,59,16,58,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,96,64,26,18,8,59,16,59,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,57,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,28,157,64,26,18,8,59,16,61,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,105,64,26,18,8,59,16,62,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,60,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,156,64,26,18,8,59,16,64,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,112,64,26,18,8,59,16,65,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,63,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,155,64,26,18,8,59,16,67,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,113,64,26,18,8,59,16,68,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,66,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,155,64,26,18,8,59,16,70,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,114,64,26,18,8,59,16,71,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,69,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,154,64,26,18,8,59,16,73,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,116,64,26,18,8,59,16,74,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,72,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,153,64,26,18,8,59,16,76,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,116,64,26,18,8,59,16,77,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,75,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,153,64,26,18,8,59,16,79,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,117,64,26,18,8,59,16,80,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,78,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,76,153,64,26,18,8,59,16,82,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,116,64,26,18,8,59,16,83,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,81,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,4,153,64,26,18,8,59,16,85,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,116,64,26,18,8,59,16,86,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,84,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,115,64,26,18,8,59,16,89,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,152,64,26,18,8,59,16,88,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,87,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,152,64,26,18,8,59,16,91,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,114,64,26,18,8,59,16,92,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,90,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,152,64,26,18,8,59,16,94,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,113,64,26,18,8,59,16,95,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,93,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,20,153,64,26,18,8,59,16,97,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,112,64,26,18,8,59,16,98,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,96,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,153,64,26,18,8,59,16,100,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,110,64,26,18,8,59,16,101,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,99,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,188,153,64,26,18,8,59,16,103,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,108,64,26,18,8,59,16,104,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,102,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,154,64,26,18,8,59,16,106,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,107,64,26,18,8,59,16,107,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,105,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,154,64,26,18,8,59,16,109,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,107,64,26,18,8,59,16,110,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,108,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,4,155,64,26,18,8,59,16,112,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,107,64,26,18,8,59,16,113,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,111,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,155,64,26,18,8,59,16,115,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,109,64,26,18,8,59,16,116,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,114,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,111,64,26,18,8,59,16,119,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,60,156,64,26,18,8,59,16,118,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,117,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,188,156,64,26,18,8,59,16,121,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,112,64,26,18,8,59,16,122,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,120,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,157,64,26,18,8,59,16,124,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,114,64,26,18,8,59,16,125,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,123,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,132,158,64,26,18,8,59,16,127,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,118,64,26,19,8,59,16,128,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,126,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,158,64,26,19,8,59,16,130,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,118,64,26,19,8,59,16,131,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,129,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,119,64,26,19,8,59,16,134,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,159,64,26,19,8,59,16,133,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,132,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,159,64,26,19,8,59,16,136,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,119,64,26,19,8,59,16,137,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,135,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,159,64,26,19,8,59,16,139,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,118,64,26,19,8,59,16,140,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,138,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,160,64,26,19,8,59,16,142,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,118,64,26,19,8,59,16,143,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,141,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,38,160,64,26,19,8,59,16,145,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,117,64,26,19,8,59,16,146,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,144,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,74,160,64,26,19,8,59,16,148,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,115,64,26,19,8,59,16,149,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,147,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,160,64,26,19,8,59,16,151,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,115,64,26,19,8,59,16,152,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,150,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,78,160,64,26,19,8,59,16,154,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,115,64,26,19,8,59,16,155,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,153,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,160,64,26,19,8,59,16,157,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,59,16,158,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,156,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,10,160,64,26,19,8,59,16,160,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,113,64,26,19,8,59,16,161,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,159,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,159,64,26,19,8,59,16,163,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,113,64,26,19,8,59,16,164,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,162,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,159,64,26,19,8,59,16,166,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,113,64,26,19,8,59,16,167,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,165,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,159,64,26,19,8,59,16,169,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,113,64,26,19,8,59,16,170,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,168,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,158,64,26,19,8,59,16,172,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,113,64,26,19,8,59,16,173,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,171,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,158,64,26,19,8,59,16,175,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,114,64,26,19,8,59,16,176,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,174,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,158,64,26,19,8,59,16,178,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,115,64,26,19,8,59,16,179,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,177,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,157,64,26,19,8,59,16,181,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,59,16,182,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,180,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,156,64,26,19,8,59,16,184,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,121,64,26,19,8,59,16,185,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,183,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,156,64,26,19,8,59,16,187,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,122,64,26,19,8,59,16,188,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,186,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,155,64,26,19,8,59,16,190,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,123,64,26,19,8,59,16,191,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,189,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,123,64,26,19,8,59,16,194,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,154,64,26,19,8,59,16,193,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,192,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,154,64,26,19,8,59,16,196,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,123,64,26,19,8,59,16,197,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,195,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,154,64,26,19,8,59,16,199,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,122,64,26,19,8,59,16,200,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,198,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,121,64,26,19,8,59,16,203,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,154,64,26,19,8,59,16,202,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,201,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,154,64,26,19,8,59,16,205,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,121,64,26,19,8,59,16,206,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,204,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,154,64,26,19,8,59,16,208,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,120,64,26,19,8,59,16,209,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,207,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,154,64,26,19,8,59,16,211,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,59,16,212,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,210,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,154,64,26,19,8,59,16,214,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,119,64,26,19,8,59,16,215,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,213,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,154,64,26,19,8,59,16,217,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,59,16,218,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,216,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,154,64,26,19,8,59,16,220,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,119,64,26,19,8,59,16,221,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,219,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,155,64,26,19,8,59,16,223,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,120,64,26,19,8,59,16,224,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,222,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,156,64,26,19,8,59,16,226,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,122,64,26,19,8,59,16,227,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,225,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,157,64,26,19,8,59,16,229,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,127,64,26,19,8,59,16,230,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,228,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,158,64,26,19,8,59,16,232,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,127,64,26,19,8,59,16,233,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,231,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,158,64,26,19,8,59,16,235,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,128,64,26,19,8,59,16,236,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,234,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,127,64,26,19,8,59,16,239,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,158,64,26,19,8,59,16,238,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,237,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,158,64,26,19,8,59,16,241,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,127,64,26,19,8,59,16,242,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,240,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,159,64,26,19,8,59,16,244,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,125,64,26,19,8,59,16,245,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,243,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,159,64,26,19,8,59,16,247,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,124,64,26,19,8,59,16,248,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,246,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,159,64,26,19,8,59,16,250,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,123,64,26,19,8,59,16,251,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,249,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,159,64,26,19,8,59,16,253,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,122,64,26,19,8,59,16,254,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,252,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,158,64,26,19,8,59,16,128,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,122,64,26,19,8,59,16,129,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,255,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,158,64,26,19,8,59,16,131,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,122,64,26,19,8,59,16,132,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,130,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,158,64,26,19,8,59,16,134,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,122,64,26,19,8,59,16,135,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,133,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,158,64,26,19,8,59,16,137,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,122,64,26,19,8,59,16,138,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,136,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,157,64,26,19,8,59,16,140,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,123,64,26,19,8,59,16,141,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,139,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,157,64,26,19,8,59,16,143,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,126,64,26,19,8,59,16,144,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,142,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,128,64,26,19,8,59,16,147,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,158,64,26,19,8,59,16,146,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,145,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,158,64,26,19,8,59,16,149,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,129,64,26,19,8,59,16,150,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,148,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,158,64,26,19,8,59,16,152,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,129,64,26,19,8,59,16,153,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,151,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,158,64,26,19,8,59,16,155,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,129,64,26,19,8,59,16,156,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,154,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,158,64,26,19,8,59,16,158,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,129,64,26,19,8,59,16,159,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,157,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,157,64,26,19,8,59,16,161,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,130,64,26,19,8,59,16,162,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,160,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,157,64,26,19,8,59,16,164,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,130,64,26,19,8,59,16,165,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,163,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,156,64,26,19,8,59,16,167,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,130,64,26,19,8,59,16,168,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,166,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,156,64,26,19,8,59,16,170,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,130,64,26,19,8,59,16,171,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,169,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,155,64,26,19,8,59,16,173,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,130,64,26,19,8,59,16,174,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,172,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,154,64,26,19,8,59,16,176,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,129,64,26,19,8,59,16,177,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,175,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,154,64,26,19,8,59,16,179,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,128,64,26,19,8,59,16,180,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,178,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,154,64,26,19,8,59,16,182,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,128,64,26,19,8,59,16,183,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,181,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,154,64,26,19,8,59,16,185,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,128,64,26,19,8,59,16,186,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,184,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,154,64,26,19,8,59,16,188,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,127,64,26,19,8,59,16,189,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,187,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,127,64,26,19,8,59,16,192,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,155,64,26,19,8,59,16,191,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,190,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,155,64,26,19,8,59,16,194,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,128,64,26,19,8,59,16,195,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,193,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,156,64,26,19,8,59,16,197,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,128,64,26,19,8,59,16,198,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,196,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,156,64,26,19,8,59,16,200,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,129,64,26,19,8,59,16,201,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,199,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,157,64,26,19,8,59,16,203,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,129,64,26,19,8,59,16,204,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,202,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,157,64,26,19,8,59,16,206,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,130,64,26,19,8,59,16,207,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,205,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,157,64,26,19,8,59,16,209,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,130,64,26,19,8,59,16,210,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,208,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,157,64,26,19,8,59,16,212,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,132,64,26,19,8,59,16,213,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,59,16,211,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,59,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,226,5,18,223,5,10,220,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,60,16,2,26,12,98,255,26,139,217,176,234,142,137,48,84,11,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,100,49,48,54,50,52,26,18,8,60,16,3,26,12,98,255,26,139,217,176,234,142,137,48,84,11,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,60,16,4,26,12,98,255,26,139,217,176,234,142,137,48,84,11,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,141,64,26,18,8,60,16,7,26,12,98,255,26,139,217,176,234,142,137,48,84,11,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,20,192,26,18,8,60,16,8,26,12,98,255,26,139,217,176,234,142,137,48,84,11,18,18,8,60,16,6,26,12,98,255,26,139,217,176,234,142,137,48,84,11,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,142,64,26,18,8,60,16,10,26,12,98,255,26,139,217,176,234,142,137,48,84,11,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,68,192,26,18,8,60,16,11,26,12,98,255,26,139,217,176,234,142,137,48,84,11,18,18,8,60,16,9,26,12,98,255,26,139,217,176,234,142,137,48,84,11,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,142,64,26,18,8,60,16,13,26,12,98,255,26,139,217,176,234,142,137,48,84,11,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,58,192,26,18,8,60,16,14,26,12,98,255,26,139,217,176,234,142,137,48,84,11,18,18,8,60,16,12,26,12,98,255,26,139,217,176,234,142,137,48,84,11,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,143,64,26,18,8,60,16,16,26,12,98,255,26,139,217,176,234,142,137,48,84,11,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,38,192,26,18,8,60,16,17,26,12,98,255,26,139,217,176,234,142,137,48,84,11,18,18,8,60,16,15,26,12,98,255,26,139,217,176,234,142,137,48,84,11,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,141,64,26,18,8,60,16,19,26,12,98,255,26,139,217,176,234,142,137,48,84,11,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,60,16,20,26,12,98,255,26,139,217,176,234,142,137,48,84,11,18,18,8,60,16,18,26,12,98,255,26,139,217,176,234,142,137,48,84,11,18,18,8,60,16,5,26,12,98,255,26,139,217,176,234,142,137,48,84,11,18,18,8,60,16,1,26,12,98,255,26,139,217,176,234,142,137,48,84,11,10,186,7,18,183,7,10,180,7,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,60,16,4,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,150,6,10,6,112,111,105,110,116,115,18,139,6,18,136,6,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,150,64,26,18,8,60,16,7,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,8,134,64,26,18,8,60,16,8,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,60,16,6,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,244,149,64,26,18,8,60,16,10,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,24,139,64,26,18,8,60,16,11,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,60,16,9,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,228,150,64,26,18,8,60,16,13,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,137,64,26,18,8,60,16,14,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,60,16,12,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,150,64,26,18,8,60,16,16,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,137,64,26,18,8,60,16,17,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,60,16,15,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,151,64,26,18,8,60,16,19,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,139,64,26,18,8,60,16,20,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,60,16,18,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,151,64,26,18,8,60,16,22,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,184,139,64,26,18,8,60,16,23,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,60,16,21,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,168,139,64,26,18,8,60,16,26,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,151,64,26,18,8,60,16,25,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,60,16,24,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,60,16,5,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,60,16,2,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,97,102,99,100,49,26,18,8,60,16,3,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,60,16,1,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,61,16,2,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,97,102,99,100,49,26,18,8,61,16,3,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,61,16,4,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,152,64,26,18,8,61,16,7,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,138,64,26,18,8,61,16,8,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,61,16,6,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,152,64,26,18,8,61,16,10,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,140,64,26,18,8,61,16,11,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,61,16,9,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,61,16,5,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,61,16,1,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,62,16,2,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,97,102,99,100,49,26,18,8,62,16,3,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,62,16,4,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,152,64,26,18,8,62,16,7,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,137,64,26,18,8,62,16,8,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,62,16,6,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,152,64,26,18,8,62,16,10,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,137,64,26,18,8,62,16,11,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,62,16,9,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,62,16,5,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,62,16,1,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,63,16,2,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,97,102,99,100,49,26,18,8,63,16,3,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,63,16,4,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,152,64,26,18,8,63,16,7,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,152,137,64,26,18,8,63,16,8,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,63,16,6,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,92,152,64,26,18,8,63,16,10,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,216,139,64,26,18,8,63,16,11,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,63,16,9,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,63,16,5,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,63,16,1,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,226,5,18,223,5,10,220,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,60,16,2,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,54,50,100,54,53,99,26,18,8,60,16,3,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,60,16,4,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,139,64,26,18,8,60,16,7,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,120,140,64,26,18,8,60,16,8,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,60,16,6,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,144,64,26,18,8,60,16,10,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,120,140,64,26,18,8,60,16,11,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,60,16,9,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,92,147,64,26,18,8,60,16,13,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,140,64,26,18,8,60,16,14,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,60,16,12,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,142,64,26,18,8,60,16,17,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,156,145,64,26,18,8,60,16,16,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,60,16,15,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,20,144,64,26,18,8,60,16,19,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,104,143,64,26,18,8,60,16,20,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,60,16,18,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,60,16,5,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,60,16,1,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,210,78,18,207,78,10,204,78,10,174,77,10,6,112,111,105,110,116,115,18,163,77,18,160,77,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,21,139,64,26,18,8,60,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,188,135,64,26,18,8,60,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,7,139,64,26,18,8,60,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,121,135,64,26,18,8,60,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,34,139,64,26,18,8,60,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,1,135,64,26,18,8,60,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,55,141,64,26,18,8,60,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,41,130,64,26,18,8,60,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,39,142,64,26,18,8,60,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,153,128,64,26,18,8,60,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,210,143,64,26,18,8,60,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,88,125,64,26,18,8,60,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,61,145,64,26,18,8,60,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,200,123,64,26,18,8,60,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,45,146,64,26,18,8,60,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,189,127,64,26,18,8,60,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,58,146,64,26,18,8,60,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,180,128,64,26,18,8,60,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,11,146,64,26,18,8,60,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,241,130,64,26,18,8,60,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,34,145,64,26,18,8,60,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,6,133,64,26,18,8,60,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,10,143,64,26,18,8,60,16,40,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,86,133,64,26,18,8,60,16,41,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,39,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,231,140,64,26,18,8,60,16,43,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,116,132,64,26,18,8,60,16,44,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,42,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,117,138,64,26,18,8,60,16,46,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,134,130,64,26,18,8,60,16,47,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,45,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,133,137,64,26,18,8,60,16,49,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,57,129,64,26,18,8,60,16,50,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,48,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,239,137,64,26,18,8,60,16,52,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,29,122,64,26,18,8,60,16,53,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,51,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,7,139,64,26,18,8,60,16,55,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,184,119,64,26,18,8,60,16,56,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,54,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,229,141,64,26,18,8,60,16,58,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,232,116,64,26,18,8,60,16,59,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,57,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,157,144,64,26,18,8,60,16,61,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,125,116,64,26,18,8,60,16,62,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,60,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,211,146,64,26,18,8,60,16,64,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,93,118,64,26,18,8,60,16,65,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,63,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,237,144,64,26,18,8,60,16,67,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,116,132,64,26,18,8,60,16,68,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,66,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,92,131,64,26,18,8,60,16,71,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,39,142,64,26,18,8,60,16,70,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,69,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,231,135,64,26,18,8,60,16,73,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,42,70,195,125,64,26,18,8,60,16,74,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,72,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,69,136,64,26,18,8,60,16,76,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,93,123,64,26,18,8,60,16,77,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,75,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,5,140,64,26,18,8,60,16,79,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,216,117,64,26,18,8,60,16,80,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,78,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,242,147,64,26,18,8,60,16,82,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,42,70,83,117,64,26,18,8,60,16,83,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,81,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,243,149,64,26,18,8,60,16,85,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,88,120,64,26,18,8,60,16,86,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,84,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,42,70,211,124,64,26,18,8,60,16,89,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,125,151,64,26,18,8,60,16,88,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,87,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,177,129,64,26,18,8,60,16,92,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,61,150,64,26,18,8,60,16,91,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,90,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,199,148,64,26,18,8,60,16,94,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,174,130,64,26,18,8,60,16,95,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,93,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,231,140,64,26,18,8,60,16,97,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,148,130,64,26,18,8,60,16,98,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,96,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,178,135,64,26,18,8,60,16,100,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,193,128,64,26,18,8,60,16,101,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,99,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,245,130,64,26,18,8,60,16,103,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,253,123,64,26,18,8,60,16,104,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,102,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,215,131,64,26,18,8,60,16,106,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,213,240,141,115,64,26,18,8,60,16,107,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,105,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,247,134,64,26,18,8,60,16,109,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,216,112,64,26,18,8,60,16,110,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,108,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,245,140,64,26,18,8,60,16,112,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,225,91,110,64,26,18,8,60,16,113,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,111,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,181,145,64,26,18,8,60,16,115,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,42,70,163,112,64,26,18,8,60,16,116,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,114,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,139,148,64,26,18,8,60,16,118,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,205,116,64,26,18,8,60,16,119,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,117,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,157,119,64,26,18,8,60,16,122,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,57,149,64,26,18,8,60,16,121,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,120,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,74,145,64,26,18,8,60,16,124,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,86,128,64,26,18,8,60,16,125,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,123,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,107,18,105,10,103,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,220,128,64,26,19,8,60,16,128,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,167,139,64,26,18,8,60,16,127,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,126,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,132,64,26,19,8,60,16,130,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,140,230,98,64,26,19,8,60,16,131,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,129,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,225,219,97,64,26,19,8,60,16,134,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,157,138,64,26,19,8,60,16,133,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,132,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,142,147,64,26,19,8,60,16,136,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,213,240,173,113,64,26,19,8,60,16,137,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,135,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,219,148,64,26,19,8,60,16,139,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,70,131,119,64,26,19,8,60,16,140,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,138,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,237,124,64,26,19,8,60,16,143,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,253,148,64,26,19,8,60,16,142,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,141,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,183,144,64,26,19,8,60,16,145,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,108,130,64,26,19,8,60,16,146,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,144,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,87,139,64,26,19,8,60,16,148,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,214,130,64,26,19,8,60,16,149,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,147,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,79,121,64,26,19,8,60,16,151,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,189,127,64,26,19,8,60,16,152,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,150,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,159,110,64,26,19,8,60,16,154,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,189,122,64,26,19,8,60,16,155,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,153,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,100,64,26,19,8,60,16,157,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,205,116,64,26,19,8,60,16,158,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,156,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,116,64,26,19,8,60,16,160,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,140,166,102,64,26,19,8,60,16,161,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,159,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,159,126,64,26,19,8,60,16,163,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,140,166,97,64,26,19,8,60,16,164,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,162,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,247,134,64,26,19,8,60,16,166,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,225,219,97,64,26,19,8,60,16,167,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,165,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,66,142,64,26,19,8,60,16,169,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,140,166,102,64,26,19,8,60,16,170,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,168,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,151,146,64,26,19,8,60,16,172,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,140,198,110,64,26,19,8,60,16,173,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,171,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,206,148,64,26,19,8,60,16,175,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,213,240,221,115,64,26,19,8,60,16,176,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,174,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,150,64,26,19,8,60,16,178,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,42,70,131,124,64,26,19,8,60,16,179,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,177,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,43,149,64,26,19,8,60,16,181,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,155,56,127,64,26,19,8,60,16,182,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,180,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,145,146,64,26,19,8,60,16,184,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,44,129,64,26,19,8,60,16,185,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,183,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,5,135,64,26,19,8,60,16,187,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,246,128,64,26,19,8,60,16,188,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,186,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,237,128,64,26,19,8,60,16,190,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,205,126,64,26,19,8,60,16,191,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,189,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,101,118,64,26,19,8,60,16,193,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,70,3,122,64,26,19,8,60,16,194,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,192,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,139,148,64,26,19,8,60,16,196,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,155,104,114,64,26,19,8,60,16,197,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,195,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,127,150,64,26,19,8,60,16,199,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,70,19,121,64,26,19,8,60,16,200,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,198,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,7,150,64,26,19,8,60,16,202,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,189,122,64,26,19,8,60,16,203,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,201,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,83,144,64,26,19,8,60,16,205,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,155,56,127,64,26,19,8,60,16,206,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,204,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,197,138,64,26,19,8,60,16,208,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,42,70,179,126,64,26,19,8,60,16,209,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,207,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,93,123,64,26,19,8,60,16,212,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,229,131,64,26,19,8,60,16,211,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,210,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,5,124,64,26,19,8,60,16,214,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,155,88,115,64,26,19,8,60,16,215,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,213,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,255,125,64,26,19,8,60,16,217,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,213,240,173,113,64,26,19,8,60,16,218,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,216,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,93,132,64,26,19,8,60,16,220,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,225,219,107,64,26,19,8,60,16,221,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,219,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,139,64,26,19,8,60,16,223,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,225,155,106,64,26,19,8,60,16,224,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,222,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,27,145,64,26,19,8,60,16,226,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,155,56,112,64,26,19,8,60,16,227,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,225,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,162,147,64,26,19,8,60,16,229,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,70,195,115,64,26,19,8,60,16,230,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,228,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,147,150,64,26,19,8,60,16,232,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,173,123,64,26,19,8,60,16,233,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,231,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,101,150,64,26,19,8,60,16,235,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,155,184,124,64,26,19,8,60,16,236,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,234,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,233,148,64,26,19,8,60,16,238,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,155,136,127,64,26,19,8,60,16,239,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,237,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,254,145,64,26,19,8,60,16,241,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,206,128,64,26,19,8,60,16,242,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,240,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,140,64,26,19,8,60,16,244,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,246,128,64,26,19,8,60,16,245,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,243,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,71,135,64,26,19,8,60,16,247,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,166,128,64,26,19,8,60,16,248,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,246,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,47,129,64,26,19,8,60,16,250,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,29,127,64,26,19,8,60,16,251,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,249,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,114,129,64,26,19,8,60,16,253,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,205,126,64,26,19,8,60,16,254,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,252,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,255,131,64,26,19,8,60,16,128,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,221,125,64,26,19,8,60,16,129,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,255,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,20,128,64,26,19,8,60,16,132,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,186,142,64,26,19,8,60,16,131,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,130,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,85,140,64,26,19,8,60,16,134,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,36,137,64,26,19,8,60,16,135,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,133,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,122,136,64,26,19,8,60,16,137,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,156,137,64,26,19,8,60,16,138,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,136,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,90,133,64,26,19,8,60,16,140,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,33,138,64,26,19,8,60,16,141,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,139,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,140,138,64,26,19,8,60,16,144,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,140,64,26,19,8,60,16,143,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,142,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,114,145,64,26,19,8,60,16,146,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,4,139,64,26,19,8,60,16,147,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,60,16,145,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,60,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,53,57,49,52,53,26,18,8,60,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,60,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,60,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,210,22,18,207,22,10,204,22,10,174,21,10,6,112,111,105,110,116,115,18,163,21,18,160,21,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,87,145,64,26,18,8,65,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,102,137,64,26,18,8,65,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,25,146,64,26,18,8,65,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,118,136,64,26,18,8,65,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,15,147,64,26,18,8,65,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,28,135,64,26,18,8,65,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,9,152,64,26,18,8,65,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,189,127,64,26,18,8,65,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,201,155,64,26,18,8,65,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,189,117,64,26,18,8,65,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,211,156,64,26,18,8,65,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,88,115,64,26,18,8,65,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,202,157,64,26,18,8,65,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,24,114,64,26,18,8,65,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,19,158,64,26,18,8,65,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,24,114,64,26,18,8,65,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,13,158,64,26,18,8,65,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,8,115,64,26,18,8,65,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,75,157,64,26,18,8,65,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,125,121,64,26,18,8,65,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,101,155,64,26,18,8,65,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,44,129,64,26,18,8,65,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,222,152,64,26,18,8,65,16,40,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,33,133,64,26,18,8,65,16,41,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,39,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,121,150,64,26,18,8,65,16,43,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,188,135,64,26,18,8,65,16,44,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,42,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,43,144,64,26,18,8,65,16,46,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,86,138,64,26,18,8,65,16,47,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,45,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,181,139,64,26,18,8,65,16,49,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,236,137,64,26,18,8,65,16,50,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,48,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,15,136,64,26,18,8,65,16,52,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,92,136,64,26,18,8,65,16,53,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,51,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,65,151,64,26,18,8,65,16,55,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,225,27,104,64,26,18,8,65,16,56,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,54,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,174,155,64,26,18,8,65,16,58,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,54,209,111,64,26,18,8,65,16,59,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,57,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,227,155,64,26,18,8,65,16,61,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,24,114,64,26,18,8,65,16,62,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,60,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,134,155,64,26,18,8,65,16,64,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,184,119,64,26,18,8,65,16,65,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,63,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,43,154,64,26,18,8,65,16,67,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,42,70,195,125,64,26,18,8,65,16,68,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,66,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,198,151,64,26,18,8,65,16,70,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,97,129,64,26,18,8,65,16,71,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,69,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,123,149,64,26,18,8,65,16,73,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,201,130,64,26,18,8,65,16,74,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,72,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,110,144,64,26,18,8,65,16,76,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,212,131,64,26,18,8,65,16,77,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,75,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,23,144,64,26,18,8,65,16,79,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,158,131,64,26,18,8,65,16,80,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,78,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,65,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,53,57,49,52,53,26,18,8,65,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,65,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,65,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,222,16,18,219,16,10,216,16,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,66,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,53,57,49,52,53,26,18,8,66,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,66,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,186,15,10,6,112,111,105,110,116,115,18,175,15,18,172,15,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,19,153,64,26,18,8,66,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,81,140,64,26,18,8,66,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,202,152,64,26,18,8,66,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,161,140,64,26,18,8,66,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,109,152,64,26,18,8,66,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,106,248,214,140,64,26,18,8,66,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,174,150,64,26,18,8,66,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,106,248,174,140,64,26,18,8,66,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,7,150,64,26,18,8,66,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,106,248,14,140,64,26,18,8,66,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,33,138,64,26,18,8,66,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,226,148,64,26,18,8,66,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,53,148,64,26,18,8,66,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,100,133,64,26,18,8,66,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,166,148,64,26,18,8,66,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,12,131,64,26,18,8,66,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,237,149,64,26,18,8,66,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,232,126,64,26,18,8,66,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,22,152,64,26,18,8,66,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,141,120,64,26,18,8,66,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,197,154,64,26,18,8,66,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,109,117,64,26,18,8,66,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,105,156,64,26,18,8,66,16,40,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,56,117,64,26,18,8,66,16,41,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,39,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,23,159,64,26,18,8,66,16,43,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,42,70,211,119,64,26,18,8,66,16,44,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,42,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,77,159,64,26,18,8,66,16,46,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,72,121,64,26,18,8,66,16,47,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,45,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,37,159,64,26,18,8,66,16,49,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,42,70,131,124,64,26,18,8,66,16,50,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,48,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,178,156,64,26,18,8,66,16,52,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,105,131,64,26,18,8,66,16,53,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,51,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,101,155,64,26,18,8,66,16,55,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,33,133,64,26,18,8,66,16,56,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,54,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,159,153,64,26,18,8,66,16,58,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,81,135,64,26,18,8,66,16,59,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,57,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,66,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,186,7,18,183,7,10,180,7,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,66,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,100,100,97,98,51,101,26,18,8,66,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,66,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,150,6,10,6,112,111,105,110,116,115,18,139,6,18,136,6,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,104,64,26,18,8,66,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,107,64,26,18,8,66,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,66,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,108,64,26,18,8,66,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,112,64,26,18,8,66,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,66,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,112,64,26,18,8,66,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,108,64,26,18,8,66,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,66,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,111,64,26,18,8,66,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,109,64,26,18,8,66,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,66,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,105,64,26,18,8,66,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,113,64,26,18,8,66,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,66,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,101,64,26,18,8,66,16,22,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,115,64,26,18,8,66,16,23,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,66,16,21,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,103,64,26,18,8,66,16,25,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,114,64,26,18,8,66,16,26,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,66,16,24,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,66,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,66,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,162,19,18,159,19,10,156,19,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,54,50,100,54,53,99,26,18,8,67,16,3,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,67,16,4,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,254,17,10,6,112,111,105,110,116,115,18,243,17,18,240,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,144,64,26,18,8,67,16,8,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,137,64,26,18,8,67,16,7,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,6,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,143,64,26,18,8,67,16,11,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,137,64,26,18,8,67,16,10,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,9,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,137,64,26,18,8,67,16,13,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,143,64,26,18,8,67,16,14,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,12,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,138,64,26,18,8,67,16,16,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,184,142,64,26,18,8,67,16,17,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,15,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,138,64,26,18,8,67,16,19,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,104,142,64,26,18,8,67,16,20,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,18,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,137,64,26,18,8,67,16,22,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,124,144,64,26,18,8,67,16,23,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,21,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,135,64,26,18,8,67,16,25,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,228,144,64,26,18,8,67,16,26,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,24,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,134,64,26,18,8,67,16,28,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,8,145,64,26,18,8,67,16,29,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,27,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,204,144,64,26,18,8,67,16,32,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,134,64,26,18,8,67,16,31,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,30,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,134,64,26,18,8,67,16,34,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,140,144,64,26,18,8,67,16,35,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,33,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,134,64,26,18,8,67,16,37,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,40,144,64,26,18,8,67,16,38,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,36,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,134,64,26,18,8,67,16,40,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,248,143,64,26,18,8,67,16,41,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,39,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,135,64,26,18,8,67,16,43,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,143,64,26,18,8,67,16,44,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,42,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,135,64,26,18,8,67,16,46,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,232,143,64,26,18,8,67,16,47,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,45,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,135,64,26,18,8,67,16,49,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,4,144,64,26,18,8,67,16,50,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,48,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,135,64,26,18,8,67,16,52,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,44,144,64,26,18,8,67,16,53,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,51,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,135,64,26,18,8,67,16,55,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,144,64,26,18,8,67,16,56,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,54,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,135,64,26,18,8,67,16,58,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,144,64,26,18,8,67,16,59,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,57,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,134,64,26,18,8,67,16,61,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,144,64,26,18,8,67,16,62,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,60,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,134,64,26,18,8,67,16,64,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,12,144,64,26,18,8,67,16,65,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,63,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,134,64,26,18,8,67,16,67,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,143,64,26,18,8,67,16,68,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,66,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,5,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,67,16,2,26,12,98,255,26,131,217,176,234,142,137,48,72,58,18,18,8,67,16,1,26,12,98,255,26,131,217,176,234,142,137,48,72,58,10,246,4,18,243,4,10,240,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,67,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,100,100,97,98,51,101,26,18,8,67,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,67,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,101,64,26,18,8,67,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,113,64,26,18,8,67,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,67,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,103,64,26,18,8,67,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,112,64,26,18,8,67,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,67,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,106,64,26,18,8,67,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,111,64,26,18,8,67,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,67,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,111,64,26,18,8,67,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,110,64,26,18,8,67,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,67,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,67,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,67,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,146,9,18,143,9,10,140,9,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,70,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,53,57,49,52,53,26,18,8,70,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,70,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,238,7,10,6,112,111,105,110,116,115,18,227,7,18,224,7,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,217,154,64,26,18,8,70,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,12,141,64,26,18,8,70,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,70,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,43,154,64,26,18,8,70,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,150,139,64,26,18,8,70,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,70,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,110,154,64,26,18,8,70,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,22,137,64,26,18,8,70,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,70,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,150,154,64,26,18,8,70,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,38,136,64,26,18,8,70,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,70,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,1,155,64,26,18,8,70,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,30,134,64,26,18,8,70,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,70,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,127,155,64,26,18,8,70,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,62,132,64,26,18,8,70,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,70,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,58,156,64,26,18,8,70,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,254,130,64,26,18,8,70,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,70,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,125,156,64,26,18,8,70,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,188,130,64,26,18,8,70,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,70,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,178,156,64,26,18,8,70,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,161,130,64,26,18,8,70,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,70,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,70,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,70,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,158,3,18,155,3,10,152,3,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,73,16,4,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,130,64,26,18,8,73,16,7,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,135,64,26,18,8,73,16,8,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,73,16,6,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,148,144,64,26,18,8,73,16,10,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,131,64,26,18,8,73,16,11,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,73,16,9,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,73,16,5,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,73,16,2,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,97,102,99,100,49,26,18,8,73,16,3,26,12,98,255,26,134,217,176,234,142,137,48,76,224,18,18,8,73,16,1,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,168,87,18,165,87,10,162,87,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,73,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,53,57,49,52,53,26,18,8,73,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,73,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,132,86,10,6,112,111,105,110,116,115,18,249,85,18,246,85,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,6,158,64,26,18,8,73,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,97,139,64,26,18,8,73,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,195,157,64,26,18,8,73,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,164,139,64,26,18,8,73,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,42,157,64,26,18,8,73,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,204,139,64,26,18,8,73,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,97,154,64,26,18,8,73,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,86,138,64,26,18,8,73,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,3,154,64,26,18,8,73,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,222,137,64,26,18,8,73,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,179,153,64,26,18,8,73,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,185,136,64,26,18,8,73,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,70,154,64,26,18,8,73,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,206,133,64,26,18,8,73,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,34,155,64,26,18,8,73,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,49,132,64,26,18,8,73,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,171,156,64,26,18,8,73,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,161,130,64,26,18,8,73,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,50,159,64,26,18,8,73,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,54,130,64,26,18,8,73,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,54,161,64,26,18,8,73,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,145,131,64,26,18,8,73,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,214,161,64,26,18,8,73,16,40,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,73,133,64,26,18,8,73,16,41,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,39,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,8,162,64,26,18,8,73,16,43,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,164,134,64,26,18,8,73,16,44,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,42,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,8,162,64,26,18,8,73,16,46,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,94,135,64,26,18,8,73,16,47,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,45,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,158,136,64,26,18,8,73,16,50,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,214,161,64,26,18,8,73,16,49,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,48,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,87,161,64,26,18,8,73,16,52,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,196,137,64,26,18,8,73,16,53,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,51,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,110,160,64,26,18,8,73,16,55,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,166,138,64,26,18,8,73,16,56,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,54,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,217,159,64,26,18,8,73,16,58,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,193,138,64,26,18,8,73,16,59,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,57,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,77,160,64,26,18,8,73,16,61,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,44,129,64,26,18,8,73,16,62,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,60,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,154,161,64,26,18,8,73,16,64,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,153,128,64,26,18,8,73,16,65,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,63,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,166,128,64,26,18,8,73,16,68,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,29,163,64,26,18,8,73,16,67,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,66,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,119,164,64,26,18,8,73,16,70,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,190,129,64,26,18,8,73,16,71,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,69,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,70,165,64,26,18,8,73,16,73,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,118,131,64,26,18,8,73,16,74,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,72,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,93,165,64,26,18,8,73,16,76,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,22,132,64,26,18,8,73,16,77,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,75,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,196,164,64,26,18,8,73,16,79,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,233,133,64,26,18,8,73,16,80,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,78,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,19,164,64,26,18,8,73,16,82,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,110,134,64,26,18,8,73,16,83,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,81,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,164,134,64,26,18,8,73,16,86,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,238,162,64,26,18,8,73,16,85,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,84,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,160,160,64,26,18,8,73,16,88,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,158,131,64,26,18,8,73,16,89,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,87,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,87,160,64,26,18,8,73,16,91,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,148,130,64,26,18,8,73,16,92,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,90,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,147,160,64,26,18,8,73,16,94,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,42,70,131,124,64,26,18,8,73,16,95,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,93,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,14,161,64,26,18,8,73,16,97,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,45,121,64,26,18,8,73,16,98,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,96,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,21,162,64,26,18,8,73,16,100,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,136,117,64,26,18,8,73,16,101,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,99,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,103,164,64,26,18,8,73,16,103,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,200,118,64,26,18,8,73,16,104,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,102,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,176,164,64,26,18,8,73,16,106,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,61,120,64,26,18,8,73,16,107,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,105,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,216,164,64,26,18,8,73,16,109,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,173,123,64,26,18,8,73,16,110,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,108,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,173,164,64,26,18,8,73,16,112,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,45,126,64,26,18,8,73,16,113,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,111,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,46,164,64,26,18,8,73,16,115,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,73,128,64,26,18,8,73,16,116,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,114,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,135,163,64,26,18,8,73,16,118,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,206,128,64,26,18,8,73,16,119,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,117,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,217,160,64,26,18,8,73,16,121,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,42,70,3,127,64,26,18,8,73,16,122,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,120,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,110,159,64,26,18,8,73,16,124,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,42,70,243,122,64,26,18,8,73,16,125,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,123,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,102,157,64,26,18,8,73,16,127,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,70,163,117,64,26,19,8,73,16,128,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,126,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,140,38,110,64,26,19,8,73,16,131,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,119,163,64,26,19,8,73,16,130,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,129,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,155,184,114,64,26,19,8,73,16,134,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,185,163,64,26,19,8,73,16,133,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,132,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,145,163,64,26,19,8,73,16,136,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,155,168,115,64,26,19,8,73,16,137,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,135,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,5,163,64,26,19,8,73,16,139,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,155,72,116,64,26,19,8,73,16,140,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,138,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,101,161,64,26,19,8,73,16,142,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,155,24,114,64,26,19,8,73,16,143,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,141,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,223,160,64,26,19,8,73,16,145,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,213,240,109,112,64,26,19,8,73,16,146,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,144,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,150,160,64,26,19,8,73,16,148,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,225,219,107,64,26,19,8,73,16,149,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,147,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,167,160,64,26,19,8,73,16,151,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,54,49,106,64,26,19,8,73,16,152,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,150,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,217,160,64,26,19,8,73,16,154,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,140,70,103,64,26,19,8,73,16,155,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,153,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,107,161,64,26,19,8,73,16,157,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,140,166,97,64,26,19,8,73,16,158,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,156,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,117,161,64,26,19,8,73,16,160,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,54,209,96,64,26,19,8,73,16,161,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,159,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,195,247,90,64,26,19,8,73,16,164,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,187,161,64,26,19,8,73,16,163,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,162,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,187,161,64,26,19,8,73,16,166,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,109,226,88,64,26,19,8,73,16,167,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,165,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,177,161,64,26,19,8,73,16,169,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,195,55,87,64,26,19,8,73,16,170,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,168,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,141,161,64,26,19,8,73,16,172,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,109,34,85,64,26,19,8,73,16,173,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,171,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,84,161,64,26,19,8,73,16,175,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,109,226,83,64,26,19,8,73,16,176,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,174,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,220,160,64,26,19,8,73,16,178,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,195,119,83,64,26,19,8,73,16,179,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,177,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,197,160,64,26,19,8,73,16,181,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,24,77,84,64,26,19,8,73,16,182,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,180,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,197,160,64,26,19,8,73,16,184,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,109,98,86,64,26,19,8,73,16,185,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,183,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,253,160,64,26,19,8,73,16,187,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,195,183,94,64,26,19,8,73,16,188,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,186,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,195,183,94,64,26,19,8,73,16,191,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,4,161,64,26,19,8,73,16,190,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,189,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,109,34,90,64,26,19,8,73,16,194,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,21,161,64,26,19,8,73,16,193,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,192,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,37,161,64,26,19,8,73,16,196,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,195,183,84,64,26,19,8,73,16,197,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,195,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,41,161,64,26,19,8,73,16,199,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,24,205,81,64,26,19,8,73,16,200,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,198,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,24,161,64,26,19,8,73,16,202,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,49,26,76,64,26,19,8,73,16,203,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,201,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,250,160,64,26,19,8,73,16,205,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,219,196,72,64,26,19,8,73,16,206,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,204,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,210,160,64,26,19,8,73,16,208,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,219,68,70,64,26,19,8,73,16,209,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,207,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,37,160,64,26,19,8,73,16,211,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,49,26,71,64,26,19,8,73,16,212,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,210,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,230,159,64,26,19,8,73,16,214,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,219,68,70,64,26,19,8,73,16,215,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,213,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,49,154,73,64,26,19,8,73,16,218,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,97,159,64,26,19,8,73,16,217,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,216,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,50,159,64,26,19,8,73,16,220,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,49,154,73,64,26,19,8,73,16,221,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,219,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,146,158,64,26,19,8,73,16,223,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,134,239,71,64,26,19,8,73,16,224,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,222,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,243,154,64,26,19,8,73,16,226,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,197,104,38,64,26,19,8,73,16,227,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,225,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,181,155,64,26,19,8,73,16,229,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,111,19,45,64,26,19,8,73,16,230,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,228,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,254,155,64,26,19,8,73,16,232,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,13,223,49,64,26,19,8,73,16,233,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,231,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,85,156,64,26,19,8,73,16,235,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,183,137,61,64,26,19,8,73,16,236,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,234,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,111,156,64,26,19,8,73,16,238,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,219,68,70,64,26,19,8,73,16,239,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,237,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,98,156,64,26,19,8,73,16,241,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,134,111,79,64,26,19,8,73,16,242,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,240,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,31,156,64,26,19,8,73,16,244,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,24,13,83,64,26,19,8,73,16,245,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,243,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,57,154,64,26,19,8,73,16,247,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,195,247,95,64,26,19,8,73,16,248,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,246,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,33,153,64,26,19,8,73,16,250,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,54,209,96,64,26,19,8,73,16,251,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,249,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,91,151,64,26,19,8,73,16,253,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,109,34,95,64,26,19,8,73,16,254,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,252,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,143,149,64,26,19,8,73,16,128,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,195,183,84,64,26,19,8,73,16,129,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,255,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,130,149,64,26,19,8,73,16,131,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,24,205,81,64,26,19,8,73,16,132,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,130,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,197,149,64,26,19,8,73,16,134,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,219,68,75,64,26,19,8,73,16,135,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,133,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,161,150,64,26,19,8,73,16,137,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,98,52,58,64,26,19,8,73,16,138,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,136,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,9,152,64,26,19,8,73,16,140,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,106,248,6,64,26,19,8,73,16,141,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,139,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,22,157,64,26,19,8,73,16,143,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,183,137,61,64,26,19,8,73,16,144,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,142,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,122,157,64,26,19,8,73,16,146,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,134,239,71,64,26,19,8,73,16,147,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,145,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,135,157,64,26,19,8,73,16,149,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,195,247,80,64,26,19,8,73,16,150,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,148,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,254,155,64,26,19,8,73,16,152,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,109,34,95,64,26,19,8,73,16,153,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,151,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,217,154,64,26,19,8,73,16,155,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,140,6,97,64,26,19,8,73,16,156,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,154,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,187,150,64,26,19,8,73,16,158,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,170,24,13,93,64,26,19,8,73,16,159,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,157,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,251,151,64,26,19,8,73,16,161,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,145,221,191,26,19,8,73,16,162,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,160,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,183,137,51,64,26,19,8,73,16,165,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,86,153,64,26,19,8,73,16,164,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,163,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,166,153,64,26,19,8,73,16,167,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,13,223,59,64,26,19,8,73,16,168,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,166,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,206,153,64,26,19,8,73,16,170,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,134,111,69,64,26,19,8,73,16,171,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,169,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,86,153,64,26,19,8,73,16,173,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,49,154,73,64,26,19,8,73,16,174,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,172,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,162,152,64,26,19,8,73,16,176,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,49,26,76,64,26,19,8,73,16,177,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,73,16,175,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,73,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,250,43,18,247,43,10,244,43,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,74,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,102,102,50,56,56,53,26,18,8,74,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,74,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,214,42,10,6,112,111,105,110,116,115,18,203,42,18,200,42,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,237,203,90,217,11,54,100,64,26,18,8,74,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,120,18,34,26,32,8,4,18,8,176,90,251,159,16,228,83,64,26,18,8,74,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,176,90,251,159,16,228,83,64,26,18,8,74,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,98,144,21,35,186,62,99,64,26,18,8,74,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,154,227,112,51,109,245,81,64,26,18,8,74,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,34,108,47,184,199,103,95,64,26,18,8,74,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,167,137,112,69,209,195,78,64,26,18,8,74,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,167,163,28,152,170,255,87,64,26,18,8,74,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,144,23,91,95,150,155,78,64,26,18,8,74,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,120,18,34,26,32,8,4,18,8,47,195,137,144,107,139,75,64,26,18,8,74,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,47,195,137,144,107,139,75,64,26,18,8,74,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,206,189,14,246,245,76,62,64,26,18,8,74,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,167,137,112,69,209,195,78,64,26,18,8,74,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,57,213,225,51,48,0,10,64,26,18,8,74,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,3,252,174,187,42,106,40,192,26,18,8,74,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,120,18,34,26,32,8,4,18,8,233,187,66,15,140,80,81,64,26,18,8,74,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,254,50,205,123,47,63,83,64,26,18,8,74,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,144,57,32,221,51,145,45,192,26,18,8,74,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,176,90,251,159,16,228,83,64,26,18,8,74,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,202,154,103,76,175,253,42,192,26,18,8,74,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,197,209,133,12,180,210,85,64,26,18,8,74,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,12,124,115,184,46,144,229,63,26,18,8,74,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,100,132,85,47,169,184,88,64,26,18,8,74,16,40,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,206,189,14,246,245,76,62,64,26,18,8,74,16,41,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,39,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,239,191,154,229,250,175,89,64,26,18,8,74,16,43,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,216,235,212,100,70,151,69,64,26,18,8,74,16,44,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,42,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,200,211,177,119,107,2,90,64,26,18,8,74,16,46,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,82,199,242,229,28,69,80,64,26,18,8,74,16,47,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,45,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,22,172,131,83,138,93,89,64,26,18,8,74,16,49,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,222,239,44,59,181,246,77,64,26,18,8,74,16,50,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,48,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,22,172,131,83,138,93,89,64,26,18,8,74,16,52,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,159,138,141,245,202,42,72,64,26,18,8,74,16,53,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,51,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,160,231,200,9,220,84,90,64,26,18,8,74,16,55,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,38,196,166,64,101,242,68,64,26,18,8,74,16,56,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,54,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,242,193,198,80,178,223,93,64,26,18,8,74,16,58,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,107,110,178,173,51,3,61,64,26,18,8,74,16,59,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,57,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,211,117,16,112,37,90,97,64,26,18,8,74,16,61,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,122,225,228,67,104,146,54,64,26,18,8,74,16,62,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,60,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,55,197,108,184,231,163,98,64,26,18,8,74,16,64,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,122,225,228,67,104,146,54,64,26,18,8,74,16,65,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,63,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,213,118,166,37,1,114,99,64,26,18,8,74,16,67,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,65,128,157,212,236,37,57,64,26,18,8,74,16,68,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,66,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,134,158,212,73,226,22,100,64,26,18,8,74,16,70,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,49,13,107,62,184,150,63,64,26,18,8,74,16,71,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,69,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,115,40,224,146,26,64,100,64,26,18,8,74,16,73,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,218,233,61,141,116,73,64,26,18,8,74,16,74,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,72,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,174,138,189,183,113,196,99,64,26,18,8,74,16,76,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,44,200,254,22,212,81,77,64,26,18,8,74,16,77,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,75,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,133,157,62,148,6,255,97,64,26,18,8,74,16,79,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,182,22,79,46,223,142,81,64,26,18,8,74,16,80,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,78,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,43,35,14,192,45,76,91,64,26,18,8,74,16,82,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,185,24,123,153,150,190,85,64,26,18,8,74,16,83,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,81,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,224,4,100,7,38,108,85,64,26,18,8,74,16,86,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,120,18,34,26,32,8,4,18,8,82,15,247,45,189,249,90,64,26,18,8,74,16,85,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,84,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,203,213,221,226,34,50,94,64,26,18,8,74,16,88,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,124,181,7,191,99,34,84,64,26,18,8,74,16,89,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,87,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,74,59,97,111,175,122,98,64,26,18,8,74,16,91,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,103,62,125,82,192,51,82,64,26,18,8,74,16,92,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,90,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,116,41,118,72,246,87,102,64,26,18,8,74,16,94,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,103,62,125,82,192,51,82,64,26,18,8,74,16,95,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,93,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,116,41,118,72,246,87,102,64,26,18,8,74,16,97,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,164,161,240,44,243,207,83,64,26,18,8,74,16,98,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,96,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,76,60,247,36,139,146,100,64,26,18,8,74,16,100,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,106,64,169,189,119,99,86,64,26,18,8,74,16,101,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,99,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,7,57,81,189,85,206,95,64,26,18,8,74,16,103,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,188,26,167,4,78,238,89,64,26,18,8,74,16,104,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,102,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,25,174,175,190,65,141,93,64,26,18,8,74,16,106,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,109,66,213,40,47,147,90,64,26,18,8,74,16,107,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,105,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,64,154,152,44,209,58,93,64,26,18,8,74,16,109,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,149,46,190,150,190,64,90,64,26,18,8,74,16,110,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,108,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,92,176,191,112,155,57,96,64,26,18,8,74,16,112,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,10,243,120,224,108,73,89,64,26,18,8,74,16,113,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,111,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,155,21,95,182,133,5,102,64,26,18,8,74,16,115,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,49,223,97,78,252,246,88,64,26,18,8,74,16,116,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,114,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,38,81,164,108,215,252,102,64,26,18,8,74,16,118,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,10,243,120,224,108,73,89,64,26,18,8,74,16,119,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,117,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,18,219,175,181,15,38,103,64,26,18,8,74,16,121,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,70,86,236,186,159,229,90,64,26,18,8,74,16,122,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,120,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,232,236,154,220,200,72,99,64,26,18,8,74,16,124,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,1,121,18,34,26,32,8,4,18,8,152,48,234,1,118,112,94,64,26,18,8,74,16,125,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,123,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,7,57,81,189,85,206,95,64,26,18,8,74,16,127,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,34,108,47,184,199,103,95,64,26,19,8,74,16,128,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,126,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,74,59,97,111,175,122,98,64,26,19,8,74,16,130,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,112,68,1,148,230,194,94,64,26,19,8,74,16,131,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,74,16,129,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,116,41,118,72,246,87,102,64,26,19,8,74,16,133,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,112,68,1,148,230,194,94,64,26,19,8,74,16,134,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,74,16,132,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,18,219,175,181,15,38,103,64,26,19,8,74,16,136,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,234,201,46,110,84,6,96,64,26,19,8,74,16,137,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,74,16,135,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,18,219,175,181,15,38,103,64,26,19,8,74,16,139,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,156,241,92,146,53,171,96,64,26,19,8,74,16,140,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,74,16,138,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,15,217,131,74,88,246,98,64,26,19,8,74,16,142,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,118,6,10,218,129,21,99,64,26,19,8,74,16,143,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,74,16,141,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,46,37,58,43,229,123,95,64,26,19,8,74,16,145,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,66,79,144,211,12,100,64,26,19,8,74,16,146,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,74,16,144,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,79,13,203,194,5,202,86,64,26,19,8,74,16,148,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,0,66,79,144,211,12,100,64,26,19,8,74,16,149,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,74,16,147,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,170,87,232,210,45,85,64,26,19,8,74,16,151,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,59,164,44,181,42,145,99,64,26,19,8,74,16,152,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,74,16,150,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,76,11,159,87,78,154,82,64,26,19,8,74,16,154,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,79,26,33,108,242,103,99,64,26,19,8,74,16,155,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,74,16,153,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,18,8,74,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,149,62,18,146,62,10,143,62,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,75,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,53,57,49,52,53,26,18,8,75,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,75,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,241,60,10,6,112,111,105,110,116,115,18,230,60,18,227,60,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,193,133,64,26,18,8,75,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,115,147,64,26,18,8,75,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,223,144,64,26,18,8,75,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,36,132,64,26,18,8,75,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,79,142,64,26,18,8,75,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,241,130,64,26,18,8,75,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,37,138,64,26,18,8,75,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,97,129,64,26,18,8,75,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,186,132,64,26,18,8,75,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,93,123,64,26,18,8,75,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,159,132,64,26,18,8,75,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,152,121,64,26,18,8,75,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,42,136,64,26,18,8,75,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,120,113,64,26,18,8,75,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,77,138,64,26,18,8,75,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,225,251,110,64,26,18,8,75,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,26,148,64,26,18,8,75,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,200,118,64,26,18,8,75,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,167,145,64,26,18,8,75,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,173,123,64,26,18,8,75,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,203,144,64,26,18,8,75,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,24,124,64,26,18,8,75,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,199,142,64,26,18,8,75,16,40,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,173,123,64,26,18,8,75,16,41,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,39,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,37,138,64,26,18,8,75,16,43,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,157,119,64,26,18,8,75,16,44,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,42,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,119,137,64,26,18,8,75,16,46,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,42,70,243,117,64,26,18,8,75,16,47,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,45,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,119,137,64,26,18,8,75,16,49,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,72,116,64,26,18,8,75,16,50,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,48,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,213,137,64,26,18,8,75,16,52,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,213,240,157,114,64,26,18,8,75,16,53,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,51,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,127,139,64,26,18,8,75,16,55,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,54,241,109,64,26,18,8,75,16,56,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,54,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,2,141,64,26,18,8,75,16,58,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,140,102,106,64,26,18,8,75,16,59,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,57,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,61,145,64,26,18,8,75,16,61,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,225,59,102,64,26,18,8,75,16,62,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,60,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,54,113,102,64,26,18,8,75,16,65,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,201,145,64,26,18,8,75,16,64,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,63,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,140,134,104,64,26,18,8,75,16,68,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,78,146,64,26,18,8,75,16,67,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,66,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,25,146,64,26,18,8,75,16,70,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,54,81,109,64,26,18,8,75,16,71,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,69,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,121,145,64,26,18,8,75,16,73,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,56,112,64,26,18,8,75,16,74,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,72,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,194,139,64,26,18,8,75,16,76,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,42,70,227,113,64,26,18,8,75,16,77,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,75,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,242,136,64,26,18,8,75,16,79,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,216,112,64,26,18,8,75,16,80,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,78,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,53,132,64,26,18,8,75,16,82,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,225,219,107,64,26,18,8,75,16,83,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,81,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,250,128,64,26,18,8,75,16,85,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,225,187,99,64,26,18,8,75,16,86,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,84,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,34,129,64,26,18,8,75,16,88,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,54,113,97,64,26,18,8,75,16,89,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,87,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,199,137,64,26,18,8,75,16,91,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,54,241,99,64,26,18,8,75,16,92,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,90,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,85,135,64,26,18,8,75,16,94,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,225,27,99,64,26,18,8,75,16,95,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,93,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,24,13,83,64,26,18,8,75,16,98,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,133,126,64,26,18,8,75,16,97,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,96,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,31,124,64,26,18,8,75,16,100,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,219,196,72,64,26,18,8,75,16,101,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,99,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,207,123,64,26,18,8,75,16,103,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,219,196,67,64,26,18,8,75,16,104,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,102,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,159,126,64,26,18,8,75,16,106,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,31,217,21,192,26,18,8,75,16,107,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,105,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,50,128,64,26,18,8,75,16,109,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,58,151,43,192,26,18,8,75,16,110,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,108,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,242,32,49,192,26,18,8,75,16,113,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,205,130,64,26,18,8,75,16,112,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,111,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,90,133,64,26,18,8,75,16,115,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,58,151,33,192,26,18,8,75,16,116,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,114,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,85,135,64,26,18,8,75,16,118,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,197,104,38,64,26,18,8,75,16,119,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,117,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,149,136,64,26,18,8,75,16,121,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,49,154,68,64,26,18,8,75,16,122,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,120,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,173,137,64,26,18,8,75,16,124,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,225,91,100,64,26,18,8,75,16,125,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,123,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,106,137,64,26,18,8,75,16,127,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,140,134,104,64,26,19,8,75,16,128,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,126,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,15,136,64,26,19,8,75,16,130,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,70,147,113,64,26,19,8,75,16,131,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,129,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,151,130,64,26,19,8,75,16,133,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,155,56,122,64,26,19,8,75,16,134,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,132,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,250,128,64,26,19,8,75,16,136,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,42,70,147,123,64,26,19,8,75,16,137,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,135,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,124,64,26,19,8,75,16,139,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,157,124,64,26,19,8,75,16,140,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,138,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,159,126,64,26,19,8,75,16,142,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,253,123,64,26,19,8,75,16,143,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,141,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,221,134,64,26,19,8,75,16,145,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,253,123,64,26,19,8,75,16,146,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,144,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,127,155,8,125,64,26,19,8,75,16,149,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,23,138,64,26,19,8,75,16,148,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,147,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,79,126,64,26,19,8,75,16,151,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,185,136,64,26,19,8,75,16,152,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,150,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,239,126,64,26,19,8,75,16,154,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,148,135,64,26,19,8,75,16,155,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,153,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,223,127,64,26,19,8,75,16,157,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,97,134,64,26,19,8,75,16,158,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,156,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,127,129,64,26,19,8,75,16,160,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,49,132,64,26,19,8,75,16,161,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,159,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,205,130,64,26,19,8,75,16,163,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,163,161,130,64,26,19,8,75,16,164,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,162,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,122,136,64,26,19,8,75,16,166,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,20,128,64,26,19,8,75,16,167,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,165,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,139,64,26,19,8,75,16,169,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,6,128,64,26,19,8,75,16,170,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,168,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,253,142,64,26,19,8,75,16,172,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,100,128,64,26,19,8,75,16,173,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,171,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,163,1,130,64,26,19,8,75,16,176,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,77,144,64,26,19,8,75,16,175,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,174,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,30,144,64,26,19,8,75,16,178,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,188,130,64,26,19,8,75,16,179,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,177,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,250,138,64,26,19,8,75,16,181,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,193,133,64,26,19,8,75,16,182,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,180,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,245,135,64,26,19,8,75,16,184,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,124,134,64,26,19,8,75,16,185,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,183,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,164,134,64,26,19,8,75,16,188,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,202,131,64,26,19,8,75,16,187,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,186,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,74,129,64,26,19,8,75,16,190,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,206,133,64,26,19,8,75,16,191,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,189,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,141,129,64,26,19,8,75,16,193,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,73,133,64,26,19,8,75,16,194,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,192,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,242,131,64,26,19,8,75,16,196,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,78,131,64,26,19,8,75,16,197,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,195,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,149,136,64,26,19,8,75,16,199,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,246,128,64,26,19,8,75,16,200,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,198,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,242,141,64,26,19,8,75,16,202,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,45,126,64,26,19,8,75,16,203,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,201,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,37,144,64,26,19,8,75,16,205,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,46,133,64,26,19,8,75,16,206,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,204,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,242,141,64,26,19,8,75,16,208,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,60,133,64,26,19,8,75,16,209,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,207,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,29,141,64,26,19,8,75,16,211,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,33,133,64,26,19,8,75,16,212,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,210,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,175,141,64,26,19,8,75,16,214,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,142,132,64,26,19,8,75,16,215,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,213,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,89,132,64,26,19,8,75,16,218,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,255,141,64,26,19,8,75,16,217,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,75,16,216,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,75,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,178,29,18,175,29,10,172,29,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,76,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,53,57,49,52,53,26,18,8,76,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,76,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,142,28,10,6,112,111,105,110,116,115,18,131,28,18,128,28,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,241,161,64,26,18,8,76,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,225,187,109,64,26,18,8,76,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,177,161,64,26,18,8,76,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,54,49,111,64,26,18,8,76,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,140,160,64,26,18,8,76,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,42,70,147,113,64,26,18,8,76,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,3,159,64,26,18,8,76,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,213,240,253,113,64,26,18,8,76,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,217,154,64,26,18,8,76,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,225,187,109,64,26,18,8,76,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,126,153,64,26,18,8,76,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,54,17,103,64,26,18,8,76,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,225,91,100,64,26,18,8,76,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,186,153,64,26,18,8,76,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,27,155,64,26,18,8,76,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,195,183,89,64,26,18,8,76,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,162,157,64,26,18,8,76,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,49,26,76,64,26,18,8,76,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,90,160,64,26,18,8,76,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,49,26,76,64,26,18,8,76,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,171,161,64,26,18,8,76,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,109,226,83,64,26,18,8,76,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,2,163,64,26,18,8,76,16,40,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,225,155,96,64,26,18,8,76,16,41,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,39,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,222,163,64,26,18,8,76,16,43,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,42,70,99,116,64,26,18,8,76,16,44,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,42,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,185,151,64,26,18,8,76,16,46,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,42,70,163,127,64,26,18,8,76,16,47,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,45,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,33,153,64,26,18,8,76,16,49,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,77,124,64,26,18,8,76,16,50,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,48,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,187,155,64,26,18,8,76,16,52,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,248,120,64,26,18,8,76,16,53,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,51,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,203,160,64,26,18,8,76,16,55,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,248,120,64,26,18,8,76,16,56,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,54,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,174,161,64,26,18,8,76,16,58,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,13,123,64,26,18,8,76,16,59,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,57,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,95,162,64,26,18,8,76,16,61,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,56,127,64,26,18,8,76,16,62,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,60,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,128,162,64,26,18,8,76,16,64,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,30,129,64,26,18,8,76,16,65,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,63,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,81,162,64,26,18,8,76,16,67,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,94,130,64,26,18,8,76,16,68,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,66,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,251,161,64,26,18,8,76,16,70,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,65,131,64,26,18,8,76,16,71,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,69,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,243,159,64,26,18,8,76,16,73,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,86,133,64,26,18,8,76,16,74,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,72,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,33,158,64,26,18,8,76,16,76,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,113,133,64,26,18,8,76,16,77,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,75,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,141,155,64,26,18,8,76,16,79,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,236,132,64,26,18,8,76,16,80,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,78,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,113,153,64,26,18,8,76,16,82,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,105,131,64,26,18,8,76,16,83,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,81,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,173,153,64,26,18,8,76,16,85,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,214,130,64,26,18,8,76,16,86,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,84,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,54,155,64,26,18,8,76,16,88,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,57,129,64,26,18,8,76,16,89,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,87,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,222,157,64,26,18,8,76,16,91,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,136,127,64,26,18,8,76,16,92,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,90,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,124,161,64,26,18,8,76,16,94,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,42,70,3,127,64,26,18,8,76,16,95,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,93,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,44,129,64,26,18,8,76,16,98,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,75,163,64,26,18,8,76,16,97,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,96,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,82,163,64,26,18,8,76,16,100,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,137,129,64,26,18,8,76,16,101,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,99,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,194,150,64,26,18,8,76,16,103,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,177,129,64,26,18,8,76,16,104,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,102,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,76,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,226,5,18,223,5,10,220,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,76,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,54,101,97,98,54,26,18,8,76,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,76,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,141,64,26,18,8,76,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,115,64,26,18,8,76,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,76,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,142,64,26,18,8,76,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,84,64,26,18,8,76,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,76,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,143,64,26,18,8,76,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,86,64,26,18,8,76,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,76,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,135,64,26,18,8,76,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,99,64,26,18,8,76,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,76,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,144,64,26,18,8,76,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,84,64,26,18,8,76,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,76,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,76,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,76,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,186,7,18,183,7,10,180,7,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,77,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,54,101,97,98,54,26,18,8,77,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,77,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,150,6,10,6,112,111,105,110,116,115,18,139,6,18,136,6,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,84,64,26,18,8,77,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,144,64,26,18,8,77,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,77,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,105,64,26,18,8,77,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,115,64,26,18,8,77,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,77,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,118,64,26,18,8,77,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,104,64,26,18,8,77,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,77,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,120,64,26,18,8,77,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,91,64,26,18,8,77,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,77,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,124,64,26,18,8,77,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,78,64,26,18,8,77,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,77,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,131,64,26,18,8,77,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,64,64,26,18,8,77,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,77,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,138,64,26,18,8,77,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,93,64,26,18,8,77,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,77,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,77,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,77,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,19,16,1,26,12,98,254,235,13,217,176,234,142,137,44,239,169,34,18,8,77,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,213,134,1,10,6,115,104,97,112,101,115,18,201,134,1,18,197,134,1,10,222,85,18,219,85,10,216,85,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,108,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,53,99,48,57,48,26,18,8,108,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,108,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,166,84,10,6,112,111,105,110,116,115,18,155,84,18,152,84,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,147,64,26,18,8,108,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,122,64,26,18,8,108,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,145,64,26,18,8,108,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,122,64,26,18,8,108,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,144,64,26,18,8,108,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,122,64,26,18,8,108,16,14,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,143,64,26,18,8,108,16,16,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,121,64,26,18,8,108,16,17,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,15,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,142,64,26,18,8,108,16,19,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,119,64,26,18,8,108,16,20,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,18,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,141,64,26,18,8,108,16,22,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,118,64,26,18,8,108,16,23,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,21,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,118,64,26,18,8,108,16,26,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,141,64,26,18,8,108,16,25,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,24,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,141,64,26,18,8,108,16,28,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,117,64,26,18,8,108,16,29,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,27,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,141,64,26,18,8,108,16,31,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,116,64,26,18,8,108,16,32,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,30,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,141,64,26,18,8,108,16,34,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,115,64,26,18,8,108,16,35,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,33,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,142,64,26,18,8,108,16,37,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,114,64,26,18,8,108,16,38,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,36,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,143,64,26,18,8,108,16,40,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,113,64,26,18,8,108,16,41,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,39,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,144,64,26,18,8,108,16,43,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,113,64,26,18,8,108,16,44,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,42,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,145,64,26,18,8,108,16,46,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,114,64,26,18,8,108,16,47,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,45,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,145,64,26,18,8,108,16,49,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,116,64,26,18,8,108,16,50,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,48,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,118,64,26,18,8,108,16,53,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,146,64,26,18,8,108,16,52,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,51,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,146,64,26,18,8,108,16,55,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,120,64,26,18,8,108,16,56,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,54,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,146,64,26,18,8,108,16,58,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,123,64,26,18,8,108,16,59,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,57,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,212,146,64,26,18,8,108,16,61,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,125,64,26,18,8,108,16,62,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,60,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,146,64,26,18,8,108,16,64,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,128,64,26,18,8,108,16,65,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,63,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,130,64,26,18,8,108,16,68,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,146,64,26,18,8,108,16,67,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,66,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,145,64,26,18,8,108,16,70,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,88,131,64,26,18,8,108,16,71,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,69,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,145,64,26,18,8,108,16,73,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,132,64,26,18,8,108,16,74,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,72,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,144,64,26,18,8,108,16,76,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,72,132,64,26,18,8,108,16,77,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,75,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,216,131,64,26,18,8,108,16,80,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,12,144,64,26,18,8,108,16,79,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,78,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,143,64,26,18,8,108,16,82,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,152,129,64,26,18,8,108,16,83,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,81,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,142,64,26,18,8,108,16,85,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,122,64,26,18,8,108,16,86,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,84,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,142,64,26,18,8,108,16,88,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,115,64,26,18,8,108,16,89,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,87,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,143,64,26,18,8,108,16,91,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,109,64,26,18,8,108,16,92,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,90,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,144,64,26,18,8,108,16,94,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,103,64,26,18,8,108,16,95,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,93,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,36,145,64,26,18,8,108,16,97,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,99,64,26,18,8,108,16,98,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,96,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,212,145,64,26,18,8,108,16,100,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,100,64,26,18,8,108,16,101,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,99,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,132,146,64,26,18,8,108,16,103,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,103,64,26,18,8,108,16,104,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,102,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,147,64,26,18,8,108,16,106,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,111,64,26,18,8,108,16,107,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,105,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,147,64,26,18,8,108,16,109,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,116,64,26,18,8,108,16,110,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,108,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,147,64,26,18,8,108,16,112,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,121,64,26,18,8,108,16,113,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,111,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,127,64,26,18,8,108,16,116,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,147,64,26,18,8,108,16,115,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,114,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,164,146,64,26,18,8,108,16,118,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,130,64,26,18,8,108,16,119,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,117,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,228,145,64,26,18,8,108,16,121,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,132,64,26,18,8,108,16,122,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,120,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,36,145,64,26,18,8,108,16,124,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,133,64,26,18,8,108,16,125,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,123,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,144,64,26,18,8,108,16,127,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,133,64,26,19,8,108,16,128,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,126,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,143,64,26,19,8,108,16,130,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,133,64,26,19,8,108,16,131,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,129,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,141,64,26,19,8,108,16,133,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,132,64,26,19,8,108,16,134,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,132,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,141,64,26,19,8,108,16,136,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,130,64,26,19,8,108,16,137,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,135,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,141,64,26,19,8,108,16,139,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,128,64,26,19,8,108,16,140,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,138,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,141,64,26,19,8,108,16,142,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,125,64,26,19,8,108,16,143,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,141,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,123,64,26,19,8,108,16,146,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,142,64,26,19,8,108,16,145,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,144,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,143,64,26,19,8,108,16,148,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,121,64,26,19,8,108,16,149,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,147,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,144,64,26,19,8,108,16,151,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,121,64,26,19,8,108,16,152,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,150,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,145,64,26,19,8,108,16,154,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,122,64,26,19,8,108,16,155,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,153,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,146,64,26,19,8,108,16,157,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,124,64,26,19,8,108,16,158,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,156,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,146,64,26,19,8,108,16,160,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,126,64,26,19,8,108,16,161,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,159,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,147,64,26,19,8,108,16,163,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,127,64,26,19,8,108,16,164,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,162,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,147,64,26,19,8,108,16,166,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,128,64,26,19,8,108,16,167,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,165,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,147,64,26,19,8,108,16,169,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,130,64,26,19,8,108,16,170,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,168,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,146,64,26,19,8,108,16,172,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,131,64,26,19,8,108,16,173,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,171,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,145,64,26,19,8,108,16,175,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,132,64,26,19,8,108,16,176,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,174,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,144,64,26,19,8,108,16,178,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,132,64,26,19,8,108,16,179,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,177,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,143,64,26,19,8,108,16,181,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,132,64,26,19,8,108,16,182,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,180,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,131,64,26,19,8,108,16,185,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,142,64,26,19,8,108,16,184,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,183,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,141,64,26,19,8,108,16,187,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,129,64,26,19,8,108,16,188,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,186,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,128,64,26,19,8,108,16,191,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,141,64,26,19,8,108,16,190,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,189,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,142,64,26,19,8,108,16,193,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,124,64,26,19,8,108,16,194,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,192,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,143,64,26,19,8,108,16,196,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,120,64,26,19,8,108,16,197,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,195,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,144,64,26,19,8,108,16,199,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,117,64,26,19,8,108,16,200,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,198,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,145,64,26,19,8,108,16,202,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,116,64,26,19,8,108,16,203,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,201,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,115,64,26,19,8,108,16,206,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,146,64,26,19,8,108,16,205,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,204,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,147,64,26,19,8,108,16,208,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,115,64,26,19,8,108,16,209,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,207,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,147,64,26,19,8,108,16,211,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,116,64,26,19,8,108,16,212,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,210,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,148,64,26,19,8,108,16,214,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,117,64,26,19,8,108,16,215,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,213,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,148,64,26,19,8,108,16,217,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,119,64,26,19,8,108,16,218,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,216,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,148,64,26,19,8,108,16,220,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,122,64,26,19,8,108,16,221,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,219,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,148,64,26,19,8,108,16,223,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,125,64,26,19,8,108,16,224,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,222,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,148,64,26,19,8,108,16,226,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,127,64,26,19,8,108,16,227,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,225,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,148,64,26,19,8,108,16,229,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,129,64,26,19,8,108,16,230,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,228,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,148,64,26,19,8,108,16,232,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,129,64,26,19,8,108,16,233,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,231,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,148,64,26,19,8,108,16,235,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,129,64,26,19,8,108,16,236,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,234,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,148,64,26,19,8,108,16,238,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,128,64,26,19,8,108,16,239,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,237,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,127,64,26,19,8,108,16,242,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,148,64,26,19,8,108,16,241,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,240,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,125,64,26,19,8,108,16,245,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,148,64,26,19,8,108,16,244,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,243,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,148,64,26,19,8,108,16,247,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,124,64,26,19,8,108,16,248,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,246,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,148,64,26,19,8,108,16,250,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,123,64,26,19,8,108,16,251,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,249,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,149,64,26,19,8,108,16,253,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,123,64,26,19,8,108,16,254,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,252,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,149,64,26,19,8,108,16,128,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,124,64,26,19,8,108,16,129,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,255,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,149,64,26,19,8,108,16,131,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,125,64,26,19,8,108,16,132,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,130,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,149,64,26,19,8,108,16,134,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,126,64,26,19,8,108,16,135,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,133,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,149,64,26,19,8,108,16,137,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,127,64,26,19,8,108,16,138,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,136,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,149,64,26,19,8,108,16,140,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,128,64,26,19,8,108,16,141,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,139,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,149,64,26,19,8,108,16,143,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,128,64,26,19,8,108,16,144,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,142,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,148,64,26,19,8,108,16,146,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,128,64,26,19,8,108,16,147,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,145,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,148,64,26,19,8,108,16,149,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,128,64,26,19,8,108,16,150,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,148,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,148,64,26,19,8,108,16,152,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,128,64,26,19,8,108,16,153,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,151,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,124,64,26,19,8,108,16,156,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,148,64,26,19,8,108,16,155,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,154,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,122,64,26,19,8,108,16,159,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,148,64,26,19,8,108,16,158,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,157,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,148,64,26,19,8,108,16,161,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,121,64,26,19,8,108,16,162,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,160,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,148,64,26,19,8,108,16,164,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,120,64,26,19,8,108,16,165,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,163,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,149,64,26,19,8,108,16,167,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,119,64,26,19,8,108,16,168,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,166,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,149,64,26,19,8,108,16,170,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,119,64,26,19,8,108,16,171,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,108,16,169,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,108,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,34,18,8,111,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,185,48,18,182,48,10,179,48,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,109,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,100,100,97,98,51,101,26,18,8,109,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,109,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,129,47,10,6,112,111,105,110,116,115,18,246,46,18,243,46,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,144,64,26,18,8,109,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,112,64,26,18,8,109,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,144,64,26,18,8,109,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,109,64,26,18,8,109,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,144,64,26,18,8,109,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,105,64,26,18,8,109,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,144,64,26,18,8,109,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,98,64,26,18,8,109,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,143,64,26,18,8,109,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,85,64,26,18,8,109,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,143,64,26,18,8,109,16,22,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,81,64,26,18,8,109,16,23,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,21,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,142,64,26,18,8,109,16,25,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,72,64,26,18,8,109,16,26,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,24,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,142,64,26,18,8,109,16,28,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,70,64,26,18,8,109,16,29,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,27,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,140,64,26,18,8,109,16,31,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,70,64,26,18,8,109,16,32,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,30,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,140,64,26,18,8,109,16,34,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,74,64,26,18,8,109,16,35,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,33,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,139,64,26,18,8,109,16,37,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,80,64,26,18,8,109,16,38,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,36,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,138,64,26,18,8,109,16,40,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,85,64,26,18,8,109,16,41,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,39,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,138,64,26,18,8,109,16,43,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,90,64,26,18,8,109,16,44,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,42,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,138,64,26,18,8,109,16,46,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,95,64,26,18,8,109,16,47,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,45,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,138,64,26,18,8,109,16,49,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,97,64,26,18,8,109,16,50,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,48,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,138,64,26,18,8,109,16,52,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,98,64,26,18,8,109,16,53,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,51,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,139,64,26,18,8,109,16,55,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,103,64,26,18,8,109,16,56,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,54,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,103,64,26,18,8,109,16,59,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,140,64,26,18,8,109,16,58,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,57,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,140,64,26,18,8,109,16,61,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,103,64,26,18,8,109,16,62,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,60,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,142,64,26,18,8,109,16,64,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,98,64,26,18,8,109,16,65,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,63,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,142,64,26,18,8,109,16,67,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,95,64,26,18,8,109,16,68,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,66,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,143,64,26,18,8,109,16,70,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,89,64,26,18,8,109,16,71,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,69,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,84,64,26,18,8,109,16,74,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,143,64,26,18,8,109,16,73,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,72,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,142,64,26,18,8,109,16,76,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,79,64,26,18,8,109,16,77,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,75,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,142,64,26,18,8,109,16,79,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,75,64,26,18,8,109,16,80,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,78,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,142,64,26,18,8,109,16,82,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,67,64,26,18,8,109,16,83,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,81,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,141,64,26,18,8,109,16,85,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,64,64,26,18,8,109,16,86,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,84,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,62,64,26,18,8,109,16,89,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,141,64,26,18,8,109,16,88,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,87,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,140,64,26,18,8,109,16,91,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,66,64,26,18,8,109,16,92,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,90,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,138,64,26,18,8,109,16,94,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,77,64,26,18,8,109,16,95,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,93,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,138,64,26,18,8,109,16,97,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,80,64,26,18,8,109,16,98,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,96,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,137,64,26,18,8,109,16,100,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,86,64,26,18,8,109,16,101,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,99,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,137,64,26,18,8,109,16,103,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,88,64,26,18,8,109,16,104,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,102,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,138,64,26,18,8,109,16,106,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,92,64,26,18,8,109,16,107,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,105,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,138,64,26,18,8,109,16,109,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,94,64,26,18,8,109,16,110,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,108,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,139,64,26,18,8,109,16,112,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,97,64,26,18,8,109,16,113,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,111,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,140,64,26,18,8,109,16,115,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,97,64,26,18,8,109,16,116,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,114,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,141,64,26,18,8,109,16,118,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,97,64,26,18,8,109,16,119,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,117,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,141,64,26,18,8,109,16,121,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,92,64,26,18,8,109,16,122,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,120,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,142,64,26,18,8,109,16,124,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,90,64,26,18,8,109,16,125,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,123,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,141,64,26,18,8,109,16,127,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,88,64,26,19,8,109,16,128,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,126,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,141,64,26,19,8,109,16,130,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,85,64,26,19,8,109,16,131,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,109,16,129,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,83,64,26,19,8,109,16,134,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,139,64,26,19,8,109,16,133,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,109,16,132,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,139,64,26,19,8,109,16,136,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,83,64,26,19,8,109,16,137,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,109,16,135,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,136,64,26,19,8,109,16,139,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,89,64,26,19,8,109,16,140,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,109,16,138,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,135,64,26,19,8,109,16,142,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,92,64,26,19,8,109,16,143,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,109,16,141,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,135,64,26,19,8,109,16,145,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,96,64,26,19,8,109,16,146,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,109,16,144,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,135,64,26,19,8,109,16,148,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,98,64,26,19,8,109,16,149,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,109,16,147,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,99,64,26,19,8,109,16,152,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,136,64,26,19,8,109,16,151,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,109,16,150,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,136,64,26,19,8,109,16,154,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,101,64,26,19,8,109,16,155,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,109,16,153,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,137,64,26,19,8,109,16,157,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,102,64,26,19,8,109,16,158,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,109,16,156,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,138,64,26,19,8,109,16,160,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,102,64,26,19,8,109,16,161,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,109,16,159,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,138,64,26,19,8,109,16,163,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,102,64,26,19,8,109,16,164,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,109,16,162,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,138,64,26,19,8,109,16,166,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,101,64,26,19,8,109,16,167,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,109,16,165,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,138,64,26,19,8,109,16,169,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,101,64,26,19,8,109,16,170,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,109,16,168,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,109,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,34,18,8,110,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,105,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,34,18,8,111,16,1,26,12,98,255,26,188,217,176,234,142,137,48,110,68,10,152,217,1,10,6,115,104,97,112,101,115,18,140,217,1,18,136,217,1,10,227,39,18,224,39,10,221,39,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,3,16,4,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,171,38,10,6,112,111,105,110,116,115,18,160,38,18,157,38,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,124,64,26,18,8,3,16,7,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,79,192,26,18,8,3,16,8,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,6,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,124,64,26,18,8,3,16,10,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,78,192,26,18,8,3,16,11,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,9,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,124,64,26,18,8,3,16,13,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,72,192,26,18,8,3,16,14,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,12,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,124,64,26,18,8,3,16,16,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,71,192,26,18,8,3,16,17,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,15,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,125,64,26,18,8,3,16,19,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,73,192,26,18,8,3,16,20,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,18,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,125,64,26,18,8,3,16,22,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,79,192,26,18,8,3,16,23,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,21,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,83,192,26,18,8,3,16,26,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,126,64,26,18,8,3,16,25,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,24,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,125,64,26,18,8,3,16,28,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,84,192,26,18,8,3,16,29,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,27,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,124,64,26,18,8,3,16,31,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,82,192,26,18,8,3,16,32,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,30,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,123,64,26,18,8,3,16,34,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,79,192,26,18,8,3,16,35,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,33,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,122,64,26,18,8,3,16,37,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,65,192,26,18,8,3,16,38,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,36,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,120,64,26,18,8,3,16,40,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,0,192,26,18,8,3,16,41,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,39,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,34,64,26,18,8,3,16,44,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,120,64,26,18,8,3,16,43,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,42,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,120,64,26,18,8,3,16,46,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,38,64,26,18,8,3,16,47,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,45,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,121,64,26,18,8,3,16,49,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,42,64,26,18,8,3,16,50,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,48,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,121,64,26,18,8,3,16,52,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,40,64,26,18,8,3,16,53,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,51,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,123,64,26,18,8,3,16,55,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,16,64,26,18,8,3,16,56,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,54,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,127,64,26,18,8,3,16,58,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,54,192,26,18,8,3,16,59,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,57,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,129,64,26,18,8,3,16,61,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,77,192,26,18,8,3,16,62,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,60,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,129,64,26,18,8,3,16,64,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,75,192,26,18,8,3,16,65,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,63,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,128,64,26,18,8,3,16,67,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,65,192,26,18,8,3,16,68,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,66,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,127,64,26,18,8,3,16,70,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,36,192,26,18,8,3,16,71,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,69,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,126,64,26,18,8,3,16,73,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,3,16,74,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,72,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,126,64,26,18,8,3,16,76,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,63,64,26,18,8,3,16,77,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,75,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,126,64,26,18,8,3,16,79,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,49,64,26,18,8,3,16,80,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,78,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,127,64,26,18,8,3,16,82,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,38,64,26,18,8,3,16,83,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,81,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,38,64,26,18,8,3,16,86,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,127,64,26,18,8,3,16,85,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,84,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,127,64,26,18,8,3,16,88,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,52,64,26,18,8,3,16,89,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,87,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,127,64,26,18,8,3,16,91,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,36,64,26,18,8,3,16,92,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,90,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,128,64,26,18,8,3,16,94,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,34,64,26,18,8,3,16,95,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,93,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,128,64,26,18,8,3,16,97,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,34,64,26,18,8,3,16,98,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,96,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,44,64,26,18,8,3,16,101,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,128,64,26,18,8,3,16,100,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,99,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,128,64,26,18,8,3,16,103,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,48,64,26,18,8,3,16,104,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,102,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,128,64,26,18,8,3,16,106,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,36,64,26,18,8,3,16,107,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,105,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,129,64,26,18,8,3,16,109,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,20,64,26,18,8,3,16,110,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,108,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,131,64,26,18,8,3,16,112,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,36,64,26,18,8,3,16,113,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,111,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,131,64,26,18,8,3,16,115,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,28,64,26,18,8,3,16,116,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,114,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,132,64,26,18,8,3,16,118,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,49,192,26,18,8,3,16,119,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,117,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,133,64,26,18,8,3,16,121,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,79,192,26,18,8,3,16,122,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,120,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,133,64,26,18,8,3,16,124,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,84,192,26,18,8,3,16,125,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,123,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,133,64,26,18,8,3,16,127,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,85,192,26,19,8,3,16,128,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,126,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,132,64,26,19,8,3,16,130,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,84,192,26,19,8,3,16,131,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,3,16,129,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,80,192,26,19,8,3,16,134,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,131,64,26,19,8,3,16,133,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,3,16,132,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,130,64,26,19,8,3,16,136,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,74,192,26,19,8,3,16,137,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,3,16,135,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,130,64,26,19,8,3,16,139,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,74,192,26,19,8,3,16,140,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,3,16,138,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,5,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,3,16,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,52,100,49,57,50,26,18,8,3,16,3,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,3,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,34,18,8,9,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,246,5,18,243,5,10,240,5,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,52,100,49,57,50,26,18,8,4,16,3,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,4,16,4,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,130,64,26,18,8,4,16,7,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,70,192,26,18,8,4,16,8,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,4,16,6,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,130,64,26,18,8,4,16,10,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,68,192,26,18,8,4,16,11,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,4,16,9,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,79,192,26,18,8,4,16,14,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,130,64,26,18,8,4,16,13,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,4,16,12,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,131,64,26,18,8,4,16,16,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,78,192,26,18,8,4,16,17,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,4,16,15,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,131,64,26,18,8,4,16,19,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,73,192,26,18,8,4,16,20,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,4,16,18,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,4,16,5,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,4,16,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,4,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,34,18,8,13,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,158,4,18,155,4,10,152,4,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,90,192,26,18,8,5,16,8,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,128,64,26,18,8,5,16,7,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,5,16,6,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,129,64,26,18,8,5,16,10,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,90,192,26,18,8,5,16,11,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,5,16,9,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,129,64,26,18,8,5,16,13,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,88,192,26,18,8,5,16,14,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,5,16,12,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,5,16,5,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,5,16,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,52,100,49,57,50,26,18,8,5,16,3,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,5,16,4,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,5,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,34,18,8,11,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,158,4,18,155,4,10,152,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,6,16,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,52,100,49,57,50,26,18,8,6,16,3,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,6,16,4,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,129,64,26,18,8,6,16,7,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,95,192,26,18,8,6,16,8,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,6,16,6,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,130,64,26,18,8,6,16,10,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,95,192,26,18,8,6,16,11,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,6,16,9,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,131,64,26,18,8,6,16,13,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,95,192,26,18,8,6,16,14,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,6,16,12,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,6,16,5,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,6,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,34,18,8,12,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,171,88,18,168,88,10,165,88,10,243,86,10,6,112,111,105,110,116,115,18,232,86,18,229,86,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,129,64,26,18,8,7,16,7,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,78,64,26,18,8,7,16,8,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,6,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,129,64,26,18,8,7,16,10,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,83,64,26,18,8,7,16,11,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,9,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,129,64,26,18,8,7,16,13,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,83,64,26,18,8,7,16,14,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,12,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,129,64,26,18,8,7,16,16,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,83,64,26,18,8,7,16,17,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,15,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,130,64,26,18,8,7,16,19,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,78,64,26,18,8,7,16,20,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,18,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,130,64,26,18,8,7,16,22,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,69,64,26,18,8,7,16,23,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,21,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,69,64,26,18,8,7,16,26,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,129,64,26,18,8,7,16,25,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,24,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,129,64,26,18,8,7,16,28,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,72,64,26,18,8,7,16,29,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,27,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,129,64,26,18,8,7,16,31,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,80,64,26,18,8,7,16,32,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,30,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,83,64,26,18,8,7,16,35,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,128,64,26,18,8,7,16,34,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,33,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,128,64,26,18,8,7,16,37,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,86,64,26,18,8,7,16,38,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,36,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,89,64,26,18,8,7,16,41,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,128,64,26,18,8,7,16,40,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,39,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,93,64,26,18,8,7,16,44,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,128,64,26,18,8,7,16,43,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,42,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,128,64,26,18,8,7,16,46,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,94,64,26,18,8,7,16,47,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,45,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,95,64,26,18,8,7,16,50,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,128,64,26,18,8,7,16,49,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,48,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,129,64,26,18,8,7,16,52,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,95,64,26,18,8,7,16,53,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,51,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,129,64,26,18,8,7,16,55,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,92,64,26,18,8,7,16,56,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,54,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,130,64,26,18,8,7,16,58,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,89,64,26,18,8,7,16,59,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,57,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,132,64,26,18,8,7,16,61,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,68,64,26,18,8,7,16,62,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,60,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,131,64,26,18,8,7,16,64,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,88,64,26,18,8,7,16,65,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,63,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,130,64,26,18,8,7,16,67,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,96,64,26,18,8,7,16,68,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,66,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,130,64,26,18,8,7,16,70,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,99,64,26,18,8,7,16,71,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,69,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,130,64,26,18,8,7,16,73,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,96,64,26,18,8,7,16,74,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,72,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,130,64,26,18,8,7,16,76,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,94,64,26,18,8,7,16,77,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,75,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,130,64,26,18,8,7,16,79,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,94,64,26,18,8,7,16,80,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,78,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,131,64,26,18,8,7,16,82,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,95,64,26,18,8,7,16,83,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,81,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,94,64,26,18,8,7,16,86,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,131,64,26,18,8,7,16,85,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,84,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,131,64,26,18,8,7,16,88,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,94,64,26,18,8,7,16,89,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,87,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,132,64,26,18,8,7,16,91,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,89,64,26,18,8,7,16,92,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,90,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,132,64,26,18,8,7,16,94,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,87,64,26,18,8,7,16,95,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,93,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,134,64,26,18,8,7,16,97,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,85,64,26,18,8,7,16,98,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,96,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,134,64,26,18,8,7,16,100,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,80,64,26,18,8,7,16,101,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,99,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,135,64,26,18,8,7,16,103,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,67,64,26,18,8,7,16,104,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,102,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,136,64,26,18,8,7,16,106,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,52,64,26,18,8,7,16,107,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,105,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,136,64,26,18,8,7,16,109,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,240,191,26,18,8,7,16,110,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,108,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,136,64,26,18,8,7,16,112,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,52,192,26,18,8,7,16,113,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,111,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,136,64,26,18,8,7,16,115,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,68,192,26,18,8,7,16,116,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,114,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,136,64,26,18,8,7,16,118,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,71,192,26,18,8,7,16,119,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,117,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,136,64,26,18,8,7,16,121,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,72,192,26,18,8,7,16,122,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,120,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,135,64,26,18,8,7,16,124,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,70,192,26,18,8,7,16,125,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,123,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,135,64,26,18,8,7,16,127,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,64,192,26,19,8,7,16,128,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,126,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,134,64,26,19,8,7,16,130,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,192,26,19,8,7,16,131,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,129,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,133,64,26,19,8,7,16,133,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,7,16,134,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,132,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,133,64,26,19,8,7,16,136,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,55,64,26,19,8,7,16,137,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,135,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,133,64,26,19,8,7,16,139,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,65,64,26,19,8,7,16,140,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,138,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,134,64,26,19,8,7,16,142,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,66,64,26,19,8,7,16,143,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,141,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,134,64,26,19,8,7,16,145,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,65,64,26,19,8,7,16,146,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,144,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,135,64,26,19,8,7,16,148,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,57,64,26,19,8,7,16,149,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,147,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,136,64,26,19,8,7,16,151,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,48,64,26,19,8,7,16,152,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,150,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,137,64,26,19,8,7,16,154,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,191,26,19,8,7,16,155,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,153,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,137,64,26,19,8,7,16,157,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,40,192,26,19,8,7,16,158,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,156,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,137,64,26,19,8,7,16,160,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,56,192,26,19,8,7,16,161,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,159,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,137,64,26,19,8,7,16,163,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,51,192,26,19,8,7,16,164,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,162,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,136,64,26,19,8,7,16,166,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,34,192,26,19,8,7,16,167,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,165,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,136,64,26,19,8,7,16,169,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,42,64,26,19,8,7,16,170,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,168,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,136,64,26,19,8,7,16,172,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,68,64,26,19,8,7,16,173,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,171,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,136,64,26,19,8,7,16,175,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,87,64,26,19,8,7,16,176,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,174,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,136,64,26,19,8,7,16,178,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,98,64,26,19,8,7,16,179,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,177,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,136,64,26,19,8,7,16,181,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,101,64,26,19,8,7,16,182,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,180,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,136,64,26,19,8,7,16,184,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,103,64,26,19,8,7,16,185,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,183,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,135,64,26,19,8,7,16,187,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,7,16,188,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,186,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,134,64,26,19,8,7,16,190,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,107,64,26,19,8,7,16,191,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,189,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,133,64,26,19,8,7,16,193,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,109,64,26,19,8,7,16,194,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,192,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,110,64,26,19,8,7,16,197,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,132,64,26,19,8,7,16,196,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,195,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,131,64,26,19,8,7,16,199,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,110,64,26,19,8,7,16,200,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,198,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,130,64,26,19,8,7,16,202,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,110,64,26,19,8,7,16,203,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,201,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,109,64,26,19,8,7,16,206,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,130,64,26,19,8,7,16,205,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,204,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,130,64,26,19,8,7,16,208,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,106,64,26,19,8,7,16,209,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,207,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,104,64,26,19,8,7,16,212,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,130,64,26,19,8,7,16,211,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,210,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,130,64,26,19,8,7,16,214,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,101,64,26,19,8,7,16,215,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,213,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,130,64,26,19,8,7,16,217,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,98,64,26,19,8,7,16,218,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,216,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,131,64,26,19,8,7,16,220,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,95,64,26,19,8,7,16,221,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,219,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,92,64,26,19,8,7,16,224,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,132,64,26,19,8,7,16,223,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,222,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,133,64,26,19,8,7,16,226,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,90,64,26,19,8,7,16,227,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,225,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,134,64,26,19,8,7,16,229,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,91,64,26,19,8,7,16,230,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,228,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,134,64,26,19,8,7,16,232,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,92,64,26,19,8,7,16,233,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,231,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,134,64,26,19,8,7,16,235,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,93,64,26,19,8,7,16,236,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,234,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,95,64,26,19,8,7,16,239,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,134,64,26,19,8,7,16,238,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,237,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,134,64,26,19,8,7,16,241,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,97,64,26,19,8,7,16,242,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,240,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,133,64,26,19,8,7,16,244,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,98,64,26,19,8,7,16,245,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,243,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,132,64,26,19,8,7,16,247,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,99,64,26,19,8,7,16,248,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,246,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,133,64,26,19,8,7,16,250,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,100,64,26,19,8,7,16,251,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,249,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,133,64,26,19,8,7,16,253,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,100,64,26,19,8,7,16,254,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,252,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,133,64,26,19,8,7,16,128,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,100,64,26,19,8,7,16,129,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,255,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,134,64,26,19,8,7,16,131,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,98,64,26,19,8,7,16,132,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,130,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,134,64,26,19,8,7,16,134,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,97,64,26,19,8,7,16,135,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,133,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,94,64,26,19,8,7,16,138,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,135,64,26,19,8,7,16,137,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,136,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,135,64,26,19,8,7,16,140,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,86,64,26,19,8,7,16,141,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,139,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,135,64,26,19,8,7,16,143,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,87,64,26,19,8,7,16,144,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,142,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,136,64,26,19,8,7,16,146,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,88,64,26,19,8,7,16,147,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,145,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,136,64,26,19,8,7,16,149,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,88,64,26,19,8,7,16,150,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,148,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,137,64,26,19,8,7,16,152,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,85,64,26,19,8,7,16,153,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,151,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,137,64,26,19,8,7,16,155,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,80,64,26,19,8,7,16,156,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,154,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,137,64,26,19,8,7,16,158,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,48,64,26,19,8,7,16,159,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,157,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,138,64,26,19,8,7,16,161,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,64,26,19,8,7,16,162,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,160,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,138,64,26,19,8,7,16,164,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,54,192,26,19,8,7,16,165,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,163,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,139,64,26,19,8,7,16,167,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,63,192,26,19,8,7,16,168,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,166,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,140,64,26,19,8,7,16,170,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,69,192,26,19,8,7,16,171,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,169,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,141,64,26,19,8,7,16,173,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,70,192,26,19,8,7,16,174,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,172,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,141,64,26,19,8,7,16,176,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,71,192,26,19,8,7,16,177,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,175,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,141,64,26,19,8,7,16,179,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,76,192,26,19,8,7,16,180,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,7,16,178,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,5,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,7,16,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,52,100,49,57,50,26,18,8,7,16,3,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,7,16,4,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,7,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,34,18,8,14,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,254,57,18,251,57,10,248,57,10,198,56,10,6,112,111,105,110,116,115,18,187,56,18,184,56,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,100,64,26,18,8,8,16,7,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,71,64,26,18,8,8,16,8,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,6,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,99,64,26,18,8,8,16,10,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,73,64,26,18,8,8,16,11,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,9,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,99,64,26,18,8,8,16,13,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,79,64,26,18,8,8,16,14,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,12,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,100,64,26,18,8,8,16,16,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,80,64,26,18,8,8,16,17,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,15,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,78,64,26,18,8,8,16,20,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,101,64,26,18,8,8,16,19,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,18,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,102,64,26,18,8,8,16,22,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,69,64,26,18,8,8,16,23,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,21,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,102,64,26,18,8,8,16,25,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,66,64,26,18,8,8,16,26,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,24,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,101,64,26,18,8,8,16,28,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,66,64,26,18,8,8,16,29,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,27,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,100,64,26,18,8,8,16,31,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,69,64,26,18,8,8,16,32,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,30,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,98,64,26,18,8,8,16,34,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,74,64,26,18,8,8,16,35,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,33,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,97,64,26,18,8,8,16,37,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,81,64,26,18,8,8,16,38,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,36,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,93,64,26,18,8,8,16,40,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,88,64,26,18,8,8,16,41,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,39,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,92,64,26,18,8,8,16,43,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,91,64,26,18,8,8,16,44,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,42,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,92,64,26,18,8,8,16,46,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,93,64,26,18,8,8,16,47,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,45,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,96,64,26,18,8,8,16,49,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,93,64,26,18,8,8,16,50,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,48,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,91,64,26,18,8,8,16,53,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,98,64,26,18,8,8,16,52,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,51,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,101,64,26,18,8,8,16,55,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,87,64,26,18,8,8,16,56,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,54,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,111,64,26,18,8,8,16,58,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,54,64,26,18,8,8,16,59,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,57,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,105,64,26,18,8,8,16,61,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,78,64,26,18,8,8,16,62,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,60,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,102,64,26,18,8,8,16,64,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,89,64,26,18,8,8,16,65,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,63,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,99,64,26,18,8,8,16,67,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,97,64,26,18,8,8,16,68,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,66,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,101,64,26,18,8,8,16,71,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,98,64,26,18,8,8,16,70,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,69,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,98,64,26,18,8,8,16,73,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,102,64,26,18,8,8,16,74,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,72,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,99,64,26,18,8,8,16,76,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,102,64,26,18,8,8,16,77,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,75,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,101,64,26,18,8,8,16,79,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,96,64,26,18,8,8,16,80,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,78,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,96,64,26,18,8,8,16,83,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,101,64,26,18,8,8,16,82,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,81,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,102,64,26,18,8,8,16,85,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,96,64,26,18,8,8,16,86,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,84,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,96,64,26,18,8,8,16,89,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,103,64,26,18,8,8,16,88,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,87,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,104,64,26,18,8,8,16,91,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,95,64,26,18,8,8,16,92,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,90,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,106,64,26,18,8,8,16,94,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,95,64,26,18,8,8,16,95,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,93,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,108,64,26,18,8,8,16,97,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,90,64,26,18,8,8,16,98,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,96,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,110,64,26,18,8,8,16,100,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,88,64,26,18,8,8,16,101,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,99,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,114,64,26,18,8,8,16,103,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,89,64,26,18,8,8,16,104,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,102,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,115,64,26,18,8,8,16,106,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,86,64,26,18,8,8,16,107,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,105,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,115,64,26,18,8,8,16,109,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,83,64,26,18,8,8,16,110,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,108,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,76,64,26,18,8,8,16,113,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,116,64,26,18,8,8,16,112,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,111,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,116,64,26,18,8,8,16,115,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,64,64,26,18,8,8,16,116,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,114,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,24,64,26,18,8,8,16,119,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,115,64,26,18,8,8,16,118,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,117,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,115,64,26,18,8,8,16,121,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,0,0,26,18,8,8,16,122,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,120,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,114,64,26,18,8,8,16,124,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,34,64,26,18,8,8,16,125,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,123,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,112,64,26,18,8,8,16,127,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,76,64,26,19,8,8,16,128,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,126,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,111,64,26,19,8,8,16,130,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,86,64,26,19,8,8,16,131,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,129,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,111,64,26,19,8,8,16,133,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,90,64,26,19,8,8,16,134,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,132,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,112,64,26,19,8,8,16,136,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,93,64,26,19,8,8,16,137,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,135,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,114,64,26,19,8,8,16,139,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,94,64,26,19,8,8,16,140,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,138,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,116,64,26,19,8,8,16,142,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,92,64,26,19,8,8,16,143,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,141,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,118,64,26,19,8,8,16,145,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,86,64,26,19,8,8,16,146,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,144,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,75,64,26,19,8,8,16,149,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,120,64,26,19,8,8,16,148,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,147,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,121,64,26,19,8,8,16,151,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,16,64,26,19,8,8,16,152,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,150,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,122,64,26,19,8,8,16,154,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,60,192,26,19,8,8,16,155,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,153,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,122,64,26,19,8,8,16,157,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,67,192,26,19,8,8,16,158,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,156,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,122,64,26,19,8,8,16,160,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,56,192,26,19,8,8,16,161,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,159,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,122,64,26,19,8,8,16,163,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,38,192,26,19,8,8,16,164,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,162,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,122,64,26,19,8,8,16,166,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,64,26,19,8,8,16,167,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,165,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,50,64,26,19,8,8,16,170,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,122,64,26,19,8,8,16,169,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,168,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,8,16,172,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,56,64,26,19,8,8,16,173,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,171,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,123,64,26,19,8,8,16,175,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,58,64,26,19,8,8,16,176,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,174,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,124,64,26,19,8,8,16,178,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,57,64,26,19,8,8,16,179,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,177,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,125,64,26,19,8,8,16,181,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,50,64,26,19,8,8,16,182,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,180,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,126,64,26,19,8,8,16,184,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,28,64,26,19,8,8,16,185,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,183,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,55,192,26,19,8,8,16,188,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,127,64,26,19,8,8,16,187,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,186,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,127,64,26,19,8,8,16,190,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,61,192,26,19,8,8,16,191,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,189,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,72,192,26,19,8,8,16,194,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,128,64,26,19,8,8,16,193,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,192,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,128,64,26,19,8,8,16,196,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,74,192,26,19,8,8,16,197,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,195,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,74,192,26,19,8,8,16,200,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,129,64,26,19,8,8,16,199,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,198,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,129,64,26,19,8,8,16,202,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,72,192,26,19,8,8,16,203,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,19,8,8,16,201,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,5,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,8,16,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,52,100,49,57,50,26,18,8,8,16,3,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,8,16,4,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,8,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,34,18,8,10,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,129,4,18,254,3,10,251,3,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,132,64,26,18,8,15,16,12,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,93,192,26,18,8,15,16,13,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,15,16,11,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,15,16,10,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,15,16,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,52,100,49,57,50,26,18,8,15,16,3,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,15,16,4,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,128,105,64,26,18,8,15,16,8,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,0,0,0,0,0,224,102,64,26,18,8,15,16,9,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,93,192,26,18,8,15,16,6,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,132,64,26,18,8,15,16,7,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,15,16,5,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,15,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,129,4,18,254,3,10,251,3,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,132,64,26,18,8,16,16,12,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,93,192,26,18,8,16,16,13,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,16,16,11,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,16,16,10,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,16,16,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,52,100,49,57,50,26,18,8,16,16,3,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,16,16,4,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,93,192,26,18,8,16,16,6,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,132,64,26,18,8,16,16,7,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,128,105,64,26,18,8,16,16,8,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,0,0,0,0,0,224,102,64,26,18,8,16,16,9,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,16,16,5,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,16,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,129,4,18,254,3,10,251,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,17,16,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,52,100,49,57,50,26,18,8,17,16,3,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,17,16,4,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,24,64,26,18,8,17,16,6,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,128,64,26,18,8,17,16,7,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,160,119,64,26,18,8,17,16,8,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,0,0,0,0,0,0,87,64,26,18,8,17,16,9,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,17,16,5,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,140,64,26,18,8,17,16,12,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,88,64,26,18,8,17,16,13,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,17,16,11,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,17,16,10,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,17,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,129,4,18,254,3,10,251,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,18,16,2,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,52,100,49,57,50,26,18,8,18,16,3,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,18,16,4,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,24,64,26,18,8,18,16,6,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,128,64,26,18,8,18,16,7,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,160,119,64,26,18,8,18,16,8,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,0,0,0,0,0,0,87,64,26,18,8,18,16,9,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,18,16,5,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,140,64,26,18,8,18,16,12,26,12,98,254,234,202,217,176,234,142,137,44,234,32,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,88,64,26,18,8,18,16,13,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,18,16,11,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,18,16,10,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,18,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,18,18,8,1,16,3,26,12,98,254,9,126,217,176,234,142,137,43,252,13,34,18,8,19,16,1,26,12,98,254,235,13,217,176,234,142,137,44,239,169,10,245,242,2,10,6,115,104,97,112,101,115,18,233,242,2,18,229,242,2,10,254,10,18,251,10,10,248,10,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,48,48,48,48,48,48,26,18,8,81,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,81,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,198,9,10,6,112,111,105,110,116,115,18,187,9,18,184,9,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,239,142,64,26,18,8,81,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,30,129,64,26,18,8,81,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,81,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,154,139,64,26,18,8,81,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,204,129,64,26,18,8,81,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,81,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,58,135,64,26,18,8,81,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,86,128,64,26,18,8,81,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,81,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,69,141,64,26,18,8,81,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,248,125,64,26,18,8,81,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,81,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,111,140,64,26,18,8,81,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,61,125,64,26,18,8,81,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,81,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,90,143,64,26,18,8,81,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,42,70,19,126,64,26,18,8,81,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,81,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,63,144,64,26,18,8,81,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,248,125,64,26,18,8,81,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,81,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,171,146,64,26,18,8,81,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,42,70,163,122,64,26,18,8,81,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,81,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,141,145,64,26,18,8,81,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,42,70,115,125,64,26,18,8,81,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,81,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,207,145,64,26,18,8,81,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,141,125,64,26,18,8,81,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,81,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,25,146,64,26,18,8,81,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,42,70,99,126,64,26,18,8,81,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,81,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,81,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,81,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,81,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,34,18,8,93,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,138,5,18,135,5,10,132,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,82,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,53,57,49,52,53,26,18,8,82,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,82,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,233,128,64,26,18,8,82,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,142,147,64,26,18,8,82,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,82,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,189,147,64,26,18,8,82,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,164,129,64,26,18,8,82,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,82,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,242,147,64,26,18,8,82,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,214,130,64,26,18,8,82,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,82,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,242,147,64,26,18,8,82,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,254,130,64,26,18,8,82,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,82,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,82,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,82,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,34,18,8,97,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,129,4,18,254,3,10,251,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,85,16,2,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,56,54,51,49,101,100,26,18,8,85,16,3,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,85,16,4,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,95,64,26,18,8,85,16,6,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,132,64,26,18,8,85,16,7,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,224,111,64,26,18,8,85,16,8,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,0,0,0,0,0,48,113,64,26,18,8,85,16,9,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,85,16,5,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,132,64,26,18,8,85,16,12,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,95,64,26,18,8,85,16,13,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,85,16,11,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,85,16,10,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,85,16,1,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,129,4,18,254,3,10,251,3,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,56,54,51,49,101,100,26,18,8,86,16,3,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,86,16,4,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,95,64,26,18,8,86,16,6,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,132,64,26,18,8,86,16,7,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,224,111,64,26,18,8,86,16,8,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,0,0,0,0,0,48,113,64,26,18,8,86,16,9,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,86,16,5,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,95,64,26,18,8,86,16,13,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,132,64,26,18,8,86,16,12,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,86,16,11,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,86,16,10,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,86,16,2,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,86,16,1,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,129,4,18,254,3,10,251,3,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,87,16,4,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,110,64,26,18,8,87,16,6,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,127,64,26,18,8,87,16,7,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,64,113,64,26,18,8,87,16,8,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,0,0,0,0,0,240,112,64,26,18,8,87,16,9,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,87,16,5,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,127,64,26,18,8,87,16,12,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,110,64,26,18,8,87,16,13,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,87,16,11,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,87,16,10,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,87,16,2,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,56,54,51,49,101,100,26,18,8,87,16,3,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,87,16,1,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,129,4,18,254,3,10,251,3,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,127,64,26,18,8,88,16,12,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,110,64,26,18,8,88,16,13,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,88,16,11,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,88,16,10,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,88,16,2,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,56,54,51,49,101,100,26,18,8,88,16,3,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,88,16,4,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,64,113,64,26,18,8,88,16,8,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,0,0,0,0,0,240,112,64,26,18,8,88,16,9,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,110,64,26,18,8,88,16,6,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,127,64,26,18,8,88,16,7,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,88,16,5,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,88,16,1,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,129,4,18,254,3,10,251,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,89,16,2,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,56,54,51,49,101,100,26,18,8,89,16,3,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,89,16,4,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,115,64,26,18,8,89,16,6,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,133,64,26,18,8,89,16,7,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,64,114,64,26,18,8,89,16,8,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,0,0,0,0,0,32,105,64,26,18,8,89,16,9,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,89,16,5,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,133,64,26,18,8,89,16,12,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,115,64,26,18,8,89,16,13,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,89,16,11,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,89,16,10,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,89,16,1,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,129,4,18,254,3,10,251,3,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,115,64,26,18,8,90,16,6,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,133,64,26,18,8,90,16,7,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,64,114,64,26,18,8,90,16,8,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,0,0,0,0,0,32,105,64,26,18,8,90,16,9,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,90,16,5,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,133,64,26,18,8,90,16,12,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,115,64,26,18,8,90,16,13,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,90,16,11,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,90,16,10,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,90,16,2,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,56,54,51,49,101,100,26,18,8,90,16,3,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,90,16,4,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,90,16,1,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,129,4,18,254,3,10,251,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,91,16,2,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,56,54,51,49,101,100,26,18,8,91,16,3,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,91,16,4,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,115,64,26,18,8,91,16,6,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,133,64,26,18,8,91,16,7,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,64,114,64,26,18,8,91,16,8,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,0,0,0,0,0,32,105,64,26,18,8,91,16,9,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,91,16,5,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,133,64,26,18,8,91,16,12,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,115,64,26,18,8,91,16,13,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,91,16,11,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,91,16,10,26,12,98,255,26,160,217,176,234,142,137,48,98,155,18,18,8,91,16,1,26,12,98,255,26,160,217,176,234,142,137,48,98,155,10,255,70,18,252,70,10,249,70,10,199,69,10,6,112,111,105,110,116,115,18,188,69,18,185,69,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,115,147,64,26,18,8,85,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,62,132,64,26,18,8,85,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,1,135,64,26,18,8,85,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,186,148,64,26,18,8,85,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,137,149,64,26,18,8,85,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,49,137,64,26,18,8,85,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,87,150,64,26,18,8,85,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,137,139,64,26,18,8,85,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,106,248,22,142,64,26,18,8,85,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,174,150,64,26,18,8,85,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,134,150,64,26,18,8,85,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,89,142,64,26,18,8,85,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,203,149,64,26,18,8,85,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,209,142,64,26,18,8,85,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,139,148,64,26,18,8,85,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,106,248,142,142,64,26,18,8,85,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,98,146,64,26,18,8,85,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,106,248,118,141,64,26,18,8,85,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,123,144,64,26,18,8,85,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,41,140,64,26,18,8,85,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,178,135,64,26,18,8,85,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,201,135,64,26,18,8,85,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,217,134,64,26,18,8,85,16,41,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,127,134,64,26,18,8,85,16,40,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,39,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,47,134,64,26,18,8,85,16,43,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,193,133,64,26,18,8,85,16,44,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,42,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,38,131,64,26,18,8,85,16,47,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,226,137,64,26,18,8,85,16,46,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,45,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,42,141,64,26,18,8,85,16,49,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,188,130,64,26,18,8,85,16,50,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,48,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,183,144,64,26,18,8,85,16,52,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,188,130,64,26,18,8,85,16,53,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,51,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,22,147,64,26,18,8,85,16,55,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,52,131,64,26,18,8,85,16,56,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,54,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,252,131,64,26,18,8,85,16,59,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,159,148,64,26,18,8,85,16,58,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,57,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,150,149,64,26,18,8,85,16,61,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,196,132,64,26,18,8,85,16,62,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,60,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,147,150,64,26,18,8,85,16,64,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,137,134,64,26,18,8,85,16,65,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,63,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,161,150,64,26,18,8,85,16,67,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,204,134,64,26,18,8,85,16,68,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,66,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,154,150,64,26,18,8,85,16,70,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,28,135,64,26,18,8,85,16,71,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,69,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,130,149,64,26,18,8,85,16,73,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,148,135,64,26,18,8,85,16,74,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,72,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,119,148,64,26,18,8,85,16,76,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,121,135,64,26,18,8,85,16,77,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,75,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,71,146,64,26,18,8,85,16,79,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,230,134,64,26,18,8,85,16,80,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,78,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,138,146,64,26,18,8,85,16,82,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,124,134,64,26,18,8,85,16,83,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,81,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,153,148,64,26,18,8,85,16,85,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,180,133,64,26,18,8,85,16,86,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,84,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,111,151,64,26,18,8,85,16,88,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,126,133,64,26,18,8,85,16,89,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,87,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,143,154,64,26,18,8,85,16,91,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,100,133,64,26,18,8,85,16,92,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,90,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,210,159,64,26,18,8,85,16,94,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,166,133,64,26,18,8,85,16,95,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,93,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,240,160,64,26,18,8,85,16,97,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,137,134,64,26,18,8,85,16,98,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,96,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,84,161,64,26,18,8,85,16,100,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,134,135,64,26,18,8,85,16,101,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,99,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,101,161,64,26,18,8,85,16,103,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,65,136,64,26,18,8,85,16,104,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,102,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,237,160,64,26,18,8,85,16,106,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,70,139,64,26,18,8,85,16,107,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,105,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,107,160,64,26,18,8,85,16,109,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,241,140,64,26,18,8,85,16,110,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,108,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,146,158,64,26,18,8,85,16,112,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,106,248,46,143,64,26,18,8,85,16,113,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,111,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,53,153,64,26,18,8,85,16,115,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,180,143,64,26,18,8,85,16,116,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,114,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,201,145,64,26,18,8,85,16,118,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,46,138,64,26,18,8,85,16,119,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,117,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,117,144,64,26,18,8,85,16,121,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,145,136,64,26,18,8,85,16,122,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,120,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,103,143,64,26,18,8,85,16,124,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,164,134,64,26,18,8,85,16,125,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,123,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,70,144,64,26,18,8,85,16,127,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,214,130,64,26,19,8,85,16,128,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,126,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,230,144,64,26,19,8,85,16,130,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,84,129,64,26,19,8,85,16,131,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,129,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,247,145,64,26,19,8,85,16,133,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,109,127,64,26,19,8,85,16,134,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,132,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,59,148,64,26,19,8,85,16,136,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,42,70,35,125,64,26,19,8,85,16,137,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,135,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,139,148,64,26,19,8,85,16,139,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,42,70,195,125,64,26,19,8,85,16,140,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,138,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,159,148,64,26,19,8,85,16,142,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,246,128,64,26,19,8,85,16,143,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,141,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,86,148,64,26,19,8,85,16,145,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,14,130,64,26,19,8,85,16,146,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,144,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,29,147,64,26,19,8,85,16,148,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,20,133,64,26,19,8,85,16,149,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,147,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,68,135,64,26,19,8,85,16,152,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,114,145,64,26,19,8,85,16,151,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,150,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,65,136,64,26,19,8,85,16,155,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,199,142,64,26,19,8,85,16,154,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,153,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,65,136,64,26,19,8,85,16,158,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,223,138,64,26,19,8,85,16,157,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,156,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,58,130,64,26,19,8,85,16,160,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,180,133,64,26,19,8,85,16,161,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,159,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,197,128,64,26,19,8,85,16,163,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,156,132,64,26,19,8,85,16,164,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,162,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,117,128,64,26,19,8,85,16,166,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,198,131,64,26,19,8,85,16,167,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,165,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,229,131,64,26,19,8,85,16,169,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,46,128,64,26,19,8,85,16,170,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,168,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,207,134,64,26,19,8,85,16,172,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,42,70,19,126,64,26,19,8,85,16,173,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,171,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,5,140,64,26,19,8,85,16,175,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,157,124,64,26,19,8,85,16,176,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,174,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,150,144,64,26,19,8,85,16,178,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,42,70,115,125,64,26,19,8,85,16,179,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,177,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,213,240,189,127,64,26,19,8,85,16,182,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,31,146,64,26,19,8,85,16,181,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,180,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,178,146,64,26,19,8,85,16,184,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,163,17,129,64,26,19,8,85,16,185,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,183,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,198,146,64,26,19,8,85,16,187,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,6,133,64,26,19,8,85,16,188,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,186,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,105,146,64,26,19,8,85,16,190,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,137,134,64,26,19,8,85,16,191,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,189,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,41,145,64,26,19,8,85,16,193,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,252,136,64,26,19,8,85,16,194,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,192,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,31,140,64,26,19,8,85,16,196,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,150,139,64,26,19,8,85,16,197,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,195,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,13,137,64,26,19,8,85,16,199,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,28,140,64,26,19,8,85,16,200,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,198,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,226,132,64,26,19,8,85,16,202,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,106,248,14,140,64,26,19,8,85,16,203,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,201,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,57,139,64,26,19,8,85,16,206,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,129,64,26,19,8,85,16,205,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,204,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,47,129,64,26,19,8,85,16,208,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,180,138,64,26,19,8,85,16,209,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,207,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,183,128,64,26,19,8,85,16,211,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,142,137,64,26,19,8,85,16,212,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,210,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,55,131,64,26,19,8,85,16,214,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,70,134,64,26,19,8,85,16,215,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,213,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,237,133,64,26,19,8,85,16,217,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,102,132,64,26,19,8,85,16,218,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,216,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,170,138,64,26,19,8,85,16,220,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,163,41,130,64,26,19,8,85,16,221,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,219,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,63,144,64,26,19,8,85,16,223,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,126,128,64,26,19,8,85,16,224,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,222,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,251,146,64,26,19,8,85,16,226,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,86,128,64,26,19,8,85,16,227,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,225,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,66,148,64,26,19,8,85,16,229,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,163,193,128,64,26,19,8,85,16,230,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,228,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,87,150,64,26,19,8,85,16,232,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,132,131,64,26,19,8,85,16,233,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,231,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,87,150,64,26,19,8,85,16,235,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,76,132,64,26,19,8,85,16,236,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,234,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,27,150,64,26,19,8,85,16,238,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,153,133,64,26,19,8,85,16,239,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,237,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,166,148,64,26,19,8,85,16,241,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,118,136,64,26,19,8,85,16,242,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,240,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,22,137,64,26,19,8,85,16,245,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,13,148,64,26,19,8,85,16,244,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,243,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,35,147,64,26,19,8,85,16,247,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,169,137,64,26,19,8,85,16,248,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,85,16,246,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,85,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,53,57,49,52,53,26,18,8,85,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,85,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,85,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,34,18,8,93,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,185,48,18,182,48,10,179,48,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,85,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,54,101,97,98,54,26,18,8,85,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,85,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,129,47,10,6,112,111,105,110,116,115,18,246,46,18,243,46,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,130,64,26,18,8,85,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,102,64,26,18,8,85,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,130,64,26,18,8,85,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,102,64,26,18,8,85,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,100,64,26,18,8,85,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,131,64,26,18,8,85,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,131,64,26,18,8,85,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,99,64,26,18,8,85,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,132,64,26,18,8,85,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,99,64,26,18,8,85,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,133,64,26,18,8,85,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,99,64,26,18,8,85,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,133,64,26,18,8,85,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,101,64,26,18,8,85,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,106,64,26,18,8,85,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,133,64,26,18,8,85,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,131,64,26,18,8,85,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,113,64,26,18,8,85,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,129,64,26,18,8,85,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,118,64,26,18,8,85,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,129,64,26,18,8,85,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,120,64,26,18,8,85,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,127,64,26,18,8,85,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,121,64,26,18,8,85,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,126,64,26,18,8,85,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,120,64,26,18,8,85,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,126,64,26,18,8,85,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,119,64,26,18,8,85,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,128,64,26,18,8,85,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,109,64,26,18,8,85,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,100,64,26,18,8,85,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,130,64,26,18,8,85,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,132,64,26,18,8,85,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,91,64,26,18,8,85,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,88,64,26,18,8,85,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,133,64,26,18,8,85,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,134,64,26,18,8,85,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,87,64,26,18,8,85,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,135,64,26,18,8,85,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,91,64,26,18,8,85,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,102,64,26,18,8,85,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,136,64,26,18,8,85,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,135,64,26,18,8,85,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,114,64,26,18,8,85,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,133,64,26,18,8,85,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,126,64,26,18,8,85,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,131,64,26,18,8,85,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,129,64,26,18,8,85,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,130,64,26,18,8,85,16,79,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,24,130,64,26,18,8,85,16,80,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,78,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,104,130,64,26,18,8,85,16,83,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,129,64,26,18,8,85,16,82,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,81,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,123,64,26,18,8,85,16,85,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,125,64,26,18,8,85,16,86,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,84,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,123,64,26,18,8,85,16,88,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,115,64,26,18,8,85,16,89,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,87,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,132,64,26,18,8,85,16,91,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,69,64,26,18,8,85,16,92,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,90,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,136,64,26,18,8,85,16,94,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,240,63,26,18,8,85,16,95,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,93,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,137,64,26,18,8,85,16,97,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,0,0,26,18,8,85,16,98,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,96,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,141,64,26,18,8,85,16,100,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,68,64,26,18,8,85,16,101,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,99,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,138,64,26,18,8,85,16,103,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,111,64,26,18,8,85,16,104,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,102,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,131,64,26,18,8,85,16,106,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,124,64,26,18,8,85,16,107,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,105,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,129,64,26,18,8,85,16,109,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,127,64,26,18,8,85,16,110,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,108,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,127,64,26,18,8,85,16,112,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,128,64,26,18,8,85,16,113,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,111,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,188,144,64,26,18,8,85,16,115,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,102,64,26,18,8,85,16,116,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,114,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,104,141,64,26,18,8,85,16,118,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,120,64,26,18,8,85,16,119,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,117,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,134,64,26,18,8,85,16,121,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,104,131,64,26,18,8,85,16,122,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,120,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,132,64,26,18,8,85,16,124,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,132,64,26,18,8,85,16,125,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,123,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,135,64,26,18,8,85,16,127,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,125,64,26,19,8,85,16,128,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,126,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,144,64,26,19,8,85,16,130,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,107,64,26,19,8,85,16,131,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,85,16,129,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,146,64,26,19,8,85,16,133,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,101,64,26,19,8,85,16,134,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,85,16,132,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,110,64,26,19,8,85,16,137,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,146,64,26,19,8,85,16,136,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,85,16,135,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,144,64,26,19,8,85,16,139,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,129,64,26,19,8,85,16,140,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,85,16,138,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,138,64,26,19,8,85,16,142,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,133,64,26,19,8,85,16,143,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,85,16,141,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,138,64,26,19,8,85,16,145,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,117,64,26,19,8,85,16,146,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,85,16,144,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,145,64,26,19,8,85,16,148,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,96,64,26,19,8,85,16,149,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,85,16,147,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,147,64,26,19,8,85,16,151,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,64,26,19,8,85,16,152,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,85,16,150,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,144,64,26,19,8,85,16,154,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,121,64,26,19,8,85,16,155,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,85,16,153,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,135,64,26,19,8,85,16,157,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,128,64,26,19,8,85,16,158,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,85,16,156,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,139,64,26,19,8,85,16,160,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,112,64,26,19,8,85,16,161,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,85,16,159,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,146,64,26,19,8,85,16,163,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,85,16,164,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,85,16,162,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,147,64,26,19,8,85,16,166,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,106,64,26,19,8,85,16,167,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,85,16,165,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,146,64,26,19,8,85,16,169,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,115,64,26,19,8,85,16,170,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,85,16,168,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,85,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,34,18,8,91,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,160,56,18,157,56,10,154,56,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,53,57,49,52,53,26,18,8,87,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,87,16,4,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,232,54,10,6,112,111,105,110,116,115,18,221,54,18,218,54,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,198,151,64,26,18,8,87,16,7,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,12,131,64,26,18,8,87,16,8,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,6,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,254,150,64,26,18,8,87,16,10,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,70,134,64,26,18,8,87,16,11,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,9,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,34,150,64,26,18,8,87,16,13,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,78,136,64,26,18,8,87,16,14,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,12,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,255,147,64,26,18,8,87,16,16,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,204,139,64,26,18,8,87,16,17,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,15,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,202,141,64,26,18,8,87,16,19,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,223,38,22,144,64,26,18,8,87,16,20,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,18,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,210,138,64,26,18,8,87,16,22,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,138,209,68,144,64,26,18,8,87,16,23,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,21,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,101,129,64,26,18,8,87,16,25,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,106,248,126,143,64,26,18,8,87,16,26,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,24,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,10,127,64,26,18,8,87,16,28,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,106,248,142,142,64,26,18,8,87,16,29,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,27,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,106,248,78,141,64,26,18,8,87,16,32,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,169,170,170,170,170,42,125,64,26,18,8,87,16,31,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,30,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,103,128,64,26,18,8,87,16,34,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,129,137,64,26,18,8,87,16,35,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,33,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,1,135,64,26,18,8,87,16,38,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,205,130,64,26,18,8,87,16,37,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,36,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,58,135,64,26,18,8,87,16,40,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,252,131,64,26,18,8,87,16,41,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,39,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,165,140,64,26,18,8,87,16,43,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,137,129,64,26,18,8,87,16,44,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,42,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,46,128,64,26,18,8,87,16,47,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,54,145,64,26,18,8,87,16,46,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,45,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,155,147,64,26,18,8,87,16,49,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,213,240,109,127,64,26,18,8,87,16,50,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,48,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,189,152,64,26,18,8,87,16,52,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,217,129,64,26,18,8,87,16,53,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,51,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,166,153,64,26,18,8,87,16,55,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,92,131,64,26,18,8,87,16,56,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,54,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,182,152,64,26,18,8,87,16,58,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,164,139,64,26,18,8,87,16,59,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,57,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,125,151,64,26,18,8,87,16,61,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,106,248,254,140,64,26,18,8,87,16,62,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,60,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,97,149,64,26,18,8,87,16,64,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,36,142,64,26,18,8,87,16,65,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,63,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,178,146,64,26,18,8,87,16,67,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,106,248,62,142,64,26,18,8,87,16,68,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,66,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,237,143,64,26,18,8,87,16,70,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,106,248,38,141,64,26,18,8,87,16,71,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,69,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,5,140,64,26,18,8,87,16,73,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,177,139,64,26,18,8,87,16,74,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,72,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,47,134,64,26,18,8,87,16,76,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,233,133,64,26,18,8,87,16,77,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,75,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,61,134,64,26,18,8,87,16,79,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,191,77,116,132,64,26,18,8,87,16,80,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,78,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,231,135,64,26,18,8,87,16,82,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,1,130,64,26,18,8,87,16,83,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,81,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,217,144,64,26,18,8,87,16,85,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,42,70,243,122,64,26,18,8,87,16,86,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,84,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,89,147,64,26,18,8,87,16,88,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,56,122,64,26,18,8,87,16,89,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,87,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,229,152,64,26,18,8,87,16,91,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,127,155,72,126,64,26,18,8,87,16,92,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,90,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,50,154,64,26,18,8,87,16,94,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,85,85,85,21,163,233,128,64,26,18,8,87,16,95,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,93,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,21,155,64,26,18,8,87,16,97,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,62,132,64,26,18,8,87,16,98,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,96,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,166,138,64,26,18,8,87,16,101,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,3,154,64,26,18,8,87,16,100,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,99,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,235,152,64,26,18,8,87,16,103,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,121,140,64,26,18,8,87,16,104,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,102,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,214,150,64,26,18,8,87,16,106,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,106,248,102,142,64,26,18,8,87,16,107,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,105,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,235,147,64,26,18,8,87,16,109,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,113,143,64,26,18,8,87,16,110,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,108,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,41,145,64,26,18,8,87,16,112,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,73,143,64,26,18,8,87,16,113,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,111,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,117,143,64,26,18,8,87,16,115,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,169,142,64,26,18,8,87,16,116,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,114,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,167,139,64,26,18,8,87,16,118,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,106,248,230,139,64,26,18,8,87,16,119,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,117,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,85,140,64,26,18,8,87,16,121,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,193,138,64,26,18,8,87,16,122,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,120,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,84,85,85,85,85,237,143,64,26,18,8,87,16,124,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,21,163,201,135,64,26,18,8,87,16,125,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,123,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,255,255,255,255,255,223,149,64,26,18,8,87,16,127,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,116,132,64,26,19,8,87,16,128,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,126,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,59,158,64,26,19,8,87,16,130,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,84,134,64,26,19,8,87,16,131,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,129,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,90,159,64,26,19,8,87,16,133,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,172,136,64,26,19,8,87,16,134,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,132,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,236,137,64,26,19,8,87,16,137,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,97,159,64,26,19,8,87,16,136,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,135,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,75,157,64,26,19,8,87,16,139,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,60,143,64,26,19,8,87,16,140,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,138,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,221,155,64,26,19,8,87,16,142,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,138,209,88,144,64,26,19,8,87,16,143,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,141,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,166,153,64,26,19,8,87,16,145,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,138,209,228,144,64,26,19,8,87,16,146,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,144,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,194,150,64,26,19,8,87,16,148,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,53,124,19,145,64,26,19,8,87,16,149,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,147,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,242,147,64,26,19,8,87,16,151,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,53,124,155,144,64,26,19,8,87,16,152,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,150,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,118,146,64,26,19,8,87,16,154,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,223,38,2,144,64,26,19,8,87,16,155,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,153,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,97,144,64,26,19,8,87,16,157,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,166,138,64,26,19,8,87,16,158,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,156,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,197,144,64,26,19,8,87,16,160,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,238,136,64,26,19,8,87,16,161,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,159,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,91,146,64,26,19,8,87,16,163,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,206,133,64,26,19,8,87,16,164,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,162,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,198,151,64,26,19,8,87,16,166,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,248,230,129,64,26,19,8,87,16,167,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,165,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,142,157,64,26,19,8,87,16,169,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,163,65,131,64,26,19,8,87,16,170,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,168,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,203,159,64,26,19,8,87,16,172,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,21,163,193,133,64,26,19,8,87,16,173,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,171,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,80,160,64,26,19,8,87,16,175,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,12,136,64,26,19,8,87,16,176,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,174,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,77,160,64,26,19,8,87,16,178,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,124,139,64,26,19,8,87,16,179,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,177,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,62,157,64,26,19,8,87,16,181,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,138,209,188,144,64,26,19,8,87,16,182,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,180,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,41,155,64,26,19,8,87,16,184,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,223,38,66,145,64,26,19,8,87,16,185,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,183,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,223,38,86,145,64,26,19,8,87,16,188,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,49,152,64,26,19,8,87,16,187,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,186,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,53,124,175,144,64,26,19,8,87,16,191,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,110,149,64,26,19,8,87,16,190,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,189,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,169,147,64,26,19,8,87,16,193,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,77,180,143,64,26,19,8,87,16,194,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,192,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,109,147,64,26,19,8,87,16,196,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,40,10,1,121,18,35,26,33,8,4,18,8,169,170,170,106,248,46,143,64,26,19,8,87,16,197,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,19,8,87,16,195,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,5,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,87,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,18,18,8,87,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,34,18,8,93,16,3,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,196,80,18,193,80,10,190,80,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,88,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,53,99,48,57,48,26,18,8,88,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,88,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,140,79,10,6,112,111,105,110,116,115,18,129,79,18,254,78,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,144,64,26,18,8,88,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,115,64,26,18,8,88,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,144,64,26,18,8,88,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,115,64,26,18,8,88,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,145,64,26,18,8,88,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,114,64,26,18,8,88,16,14,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,145,64,26,18,8,88,16,16,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,112,64,26,18,8,88,16,17,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,15,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,147,64,26,18,8,88,16,19,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,110,64,26,18,8,88,16,20,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,18,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,145,64,26,18,8,88,16,22,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,133,64,26,18,8,88,16,23,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,21,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,134,64,26,18,8,88,16,26,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,143,64,26,18,8,88,16,25,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,24,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,141,64,26,18,8,88,16,28,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,134,64,26,18,8,88,16,29,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,27,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,140,64,26,18,8,88,16,31,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,131,64,26,18,8,88,16,32,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,30,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,140,64,26,18,8,88,16,34,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,168,128,64,26,18,8,88,16,35,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,33,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,141,64,26,18,8,88,16,37,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,124,64,26,18,8,88,16,38,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,36,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,142,64,26,18,8,88,16,40,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,120,64,26,18,8,88,16,41,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,39,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,128,64,26,18,8,88,16,43,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,200,130,64,26,18,8,88,16,44,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,42,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,125,64,26,18,8,88,16,46,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,134,64,26,18,8,88,16,47,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,45,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,127,64,26,18,8,88,16,49,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,142,64,26,18,8,88,16,50,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,48,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,101,64,26,18,8,88,16,52,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,133,64,26,18,8,88,16,53,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,51,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,100,64,26,18,8,88,16,55,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,129,64,26,18,8,88,16,56,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,54,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,125,64,26,18,8,88,16,58,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,131,64,26,18,8,88,16,59,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,57,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,125,64,26,18,8,88,16,61,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,131,64,26,18,8,88,16,62,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,60,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,129,64,26,18,8,88,16,64,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,129,64,26,18,8,88,16,65,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,63,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,130,64,26,18,8,88,16,67,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,120,128,64,26,18,8,88,16,68,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,66,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,131,64,26,18,8,88,16,70,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,128,64,26,18,8,88,16,71,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,69,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,132,64,26,18,8,88,16,73,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,128,64,26,18,8,88,16,74,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,72,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,133,64,26,18,8,88,16,76,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,152,128,64,26,18,8,88,16,77,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,75,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,132,64,26,18,8,88,16,79,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,129,64,26,18,8,88,16,80,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,78,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,130,64,26,18,8,88,16,82,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,135,64,26,18,8,88,16,83,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,81,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,122,64,26,18,8,88,16,85,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,136,64,26,18,8,88,16,86,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,84,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,134,64,26,18,8,88,16,89,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,123,64,26,18,8,88,16,88,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,87,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,126,64,26,18,8,88,16,91,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,131,64,26,18,8,88,16,92,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,90,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,131,64,26,18,8,88,16,94,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,8,128,64,26,18,8,88,16,95,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,93,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,126,64,26,18,8,88,16,98,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,132,64,26,18,8,88,16,97,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,96,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,134,64,26,18,8,88,16,100,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,125,64,26,18,8,88,16,101,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,99,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,129,64,26,18,8,88,16,104,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,138,64,26,18,8,88,16,103,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,102,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,129,64,26,18,8,88,16,107,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,139,64,26,18,8,88,16,106,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,105,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,212,149,64,26,18,8,88,16,109,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,121,64,26,18,8,88,16,110,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,108,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,150,64,26,18,8,88,16,112,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,119,64,26,18,8,88,16,113,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,111,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,184,133,64,26,18,8,88,16,116,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,141,64,26,18,8,88,16,115,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,114,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,139,64,26,18,8,88,16,118,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,131,64,26,18,8,88,16,119,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,117,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,141,64,26,18,8,88,16,121,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,232,128,64,26,18,8,88,16,122,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,120,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,147,64,26,18,8,88,16,124,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,121,64,26,18,8,88,16,125,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,123,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,108,151,64,26,18,8,88,16,127,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,122,64,26,19,8,88,16,128,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,126,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,151,64,26,19,8,88,16,130,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,124,64,26,19,8,88,16,131,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,129,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,150,64,26,19,8,88,16,133,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,126,64,26,19,8,88,16,134,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,132,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,145,64,26,19,8,88,16,136,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,127,64,26,19,8,88,16,137,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,135,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,143,64,26,19,8,88,16,139,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,125,64,26,19,8,88,16,140,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,138,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,137,64,26,19,8,88,16,142,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,120,64,26,19,8,88,16,143,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,141,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,117,64,26,19,8,88,16,146,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,135,64,26,19,8,88,16,145,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,144,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,134,64,26,19,8,88,16,148,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,88,16,149,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,147,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,134,64,26,19,8,88,16,151,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,115,64,26,19,8,88,16,152,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,150,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,134,64,26,19,8,88,16,154,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,114,64,26,19,8,88,16,155,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,153,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,134,64,26,19,8,88,16,157,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,114,64,26,19,8,88,16,158,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,156,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,137,64,26,19,8,88,16,160,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,113,64,26,19,8,88,16,161,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,159,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,139,64,26,19,8,88,16,163,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,114,64,26,19,8,88,16,164,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,162,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,141,64,26,19,8,88,16,166,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,116,64,26,19,8,88,16,167,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,165,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,143,64,26,19,8,88,16,169,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,119,64,26,19,8,88,16,170,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,168,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,143,64,26,19,8,88,16,172,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,120,64,26,19,8,88,16,173,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,171,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,136,64,26,19,8,88,16,175,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,114,64,26,19,8,88,16,176,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,174,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,130,64,26,19,8,88,16,178,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,81,64,26,19,8,88,16,179,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,177,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,130,64,26,19,8,88,16,181,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,64,64,26,19,8,88,16,182,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,180,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,130,64,26,19,8,88,16,184,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,56,64,26,19,8,88,16,185,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,183,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,130,64,26,19,8,88,16,187,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,62,64,26,19,8,88,16,188,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,186,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,88,16,190,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,77,64,26,19,8,88,16,191,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,189,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,135,64,26,19,8,88,16,193,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,92,64,26,19,8,88,16,194,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,192,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,140,64,26,19,8,88,16,196,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,112,64,26,19,8,88,16,197,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,195,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,142,64,26,19,8,88,16,199,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,115,64,26,19,8,88,16,200,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,198,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,143,64,26,19,8,88,16,202,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,118,64,26,19,8,88,16,203,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,201,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,144,64,26,19,8,88,16,205,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,121,64,26,19,8,88,16,206,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,204,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,144,64,26,19,8,88,16,208,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,122,64,26,19,8,88,16,209,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,207,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,144,64,26,19,8,88,16,211,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,123,64,26,19,8,88,16,212,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,210,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,124,64,26,19,8,88,16,215,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,143,64,26,19,8,88,16,214,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,213,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,143,64,26,19,8,88,16,217,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,124,64,26,19,8,88,16,218,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,216,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,142,64,26,19,8,88,16,220,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,125,64,26,19,8,88,16,221,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,219,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,139,64,26,19,8,88,16,223,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,123,64,26,19,8,88,16,224,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,222,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,137,64,26,19,8,88,16,226,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,122,64,26,19,8,88,16,227,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,225,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,132,64,26,19,8,88,16,229,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,115,64,26,19,8,88,16,230,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,228,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,132,64,26,19,8,88,16,232,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,114,64,26,19,8,88,16,233,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,231,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,130,64,26,19,8,88,16,235,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,112,64,26,19,8,88,16,236,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,234,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,116,64,26,19,8,88,16,239,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,130,64,26,19,8,88,16,238,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,237,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,131,64,26,19,8,88,16,241,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,126,64,26,19,8,88,16,242,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,240,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,129,64,26,19,8,88,16,245,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,131,64,26,19,8,88,16,244,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,243,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,131,64,26,19,8,88,16,247,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,131,64,26,19,8,88,16,248,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,246,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,131,64,26,19,8,88,16,251,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,131,64,26,19,8,88,16,250,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,249,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,129,64,26,19,8,88,16,253,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,132,64,26,19,8,88,16,254,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,252,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,128,64,26,19,8,88,16,128,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,129,64,26,19,8,88,16,129,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,255,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,130,64,26,19,8,88,16,131,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,112,64,26,19,8,88,16,132,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,130,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,131,64,26,19,8,88,16,134,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,112,64,26,19,8,88,16,135,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,133,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,132,64,26,19,8,88,16,137,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,136,64,26,19,8,88,16,138,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,136,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,132,64,26,19,8,88,16,140,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,131,64,26,19,8,88,16,141,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,139,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,132,64,26,19,8,88,16,143,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,123,64,26,19,8,88,16,144,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,142,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,134,64,26,19,8,88,16,146,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,125,64,26,19,8,88,16,147,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,145,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,136,64,26,19,8,88,16,149,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,128,64,26,19,8,88,16,150,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,148,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,138,64,26,19,8,88,16,152,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,131,64,26,19,8,88,16,153,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,88,16,151,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,18,8,88,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,34,18,8,91,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,186,35,18,183,35,10,180,35,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,89,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,100,100,97,98,51,101,26,18,8,89,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,89,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,130,34,10,6,112,111,105,110,116,115,18,247,33,18,244,33,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,92,146,64,26,18,8,89,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,119,64,26,18,8,89,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,146,64,26,18,8,89,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,118,64,26,18,8,89,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,115,64,26,18,8,89,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,145,64,26,18,8,89,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,172,144,64,26,18,8,89,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,113,64,26,18,8,89,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,144,64,26,18,8,89,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,110,64,26,18,8,89,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,144,64,26,18,8,89,16,22,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,105,64,26,18,8,89,16,23,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,21,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,100,64,26,18,8,89,16,26,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,144,64,26,18,8,89,16,25,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,24,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,145,64,26,18,8,89,16,28,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,96,64,26,18,8,89,16,29,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,27,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,145,64,26,18,8,89,16,31,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,88,64,26,18,8,89,16,32,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,30,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,80,64,26,18,8,89,16,35,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,60,146,64,26,18,8,89,16,34,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,33,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,180,146,64,26,18,8,89,16,37,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,76,64,26,18,8,89,16,38,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,36,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,146,64,26,18,8,89,16,40,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,76,64,26,18,8,89,16,41,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,39,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,147,64,26,18,8,89,16,43,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,79,64,26,18,8,89,16,44,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,42,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,147,64,26,18,8,89,16,46,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,82,64,26,18,8,89,16,47,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,45,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,148,147,64,26,18,8,89,16,49,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,89,64,26,18,8,89,16,50,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,48,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,95,64,26,18,8,89,16,53,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,147,64,26,18,8,89,16,52,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,51,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,147,64,26,18,8,89,16,55,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,98,64,26,18,8,89,16,56,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,54,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,188,147,64,26,18,8,89,16,58,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,100,64,26,18,8,89,16,59,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,57,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,147,64,26,18,8,89,16,61,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,104,64,26,18,8,89,16,62,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,60,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,147,64,26,18,8,89,16,64,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,105,64,26,18,8,89,16,65,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,63,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,76,147,64,26,18,8,89,16,67,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,107,64,26,18,8,89,16,68,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,66,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,252,146,64,26,18,8,89,16,70,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,108,64,26,18,8,89,16,71,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,69,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,156,146,64,26,18,8,89,16,73,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,109,64,26,18,8,89,16,74,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,72,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,28,146,64,26,18,8,89,16,76,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,110,64,26,18,8,89,16,77,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,75,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,145,64,26,18,8,89,16,79,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,110,64,26,18,8,89,16,80,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,78,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,144,64,26,18,8,89,16,82,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,110,64,26,18,8,89,16,83,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,81,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,144,64,26,18,8,89,16,85,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,109,64,26,18,8,89,16,86,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,84,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,143,64,26,18,8,89,16,88,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,32,107,64,26,18,8,89,16,89,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,87,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,143,64,26,18,8,89,16,91,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,105,64,26,18,8,89,16,92,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,90,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,142,64,26,18,8,89,16,94,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,103,64,26,18,8,89,16,95,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,93,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,141,64,26,18,8,89,16,97,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,100,64,26,18,8,89,16,98,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,96,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,98,64,26,18,8,89,16,101,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,141,64,26,18,8,89,16,100,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,99,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,141,64,26,18,8,89,16,103,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,95,64,26,18,8,89,16,104,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,102,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,141,64,26,18,8,89,16,106,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,89,64,26,18,8,89,16,107,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,105,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,141,64,26,18,8,89,16,109,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,77,64,26,18,8,89,16,110,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,108,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,68,64,26,18,8,89,16,113,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,142,64,26,18,8,89,16,112,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,111,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,142,64,26,18,8,89,16,115,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,54,64,26,18,8,89,16,116,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,114,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,142,64,26,18,8,89,16,118,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,40,64,26,18,8,89,16,119,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,117,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,143,64,26,18,8,89,16,121,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,0,64,26,18,8,89,16,122,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,120,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,240,63,26,18,8,89,16,125,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,143,64,26,18,8,89,16,124,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,123,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,89,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,34,18,8,92,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,138,31,18,135,31,10,132,31,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,90,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,100,100,97,98,51,101,26,18,8,90,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,90,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,230,29,10,6,112,111,105,110,116,115,18,219,29,18,216,29,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,188,144,64,26,18,8,90,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,54,192,26,18,8,90,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,24,64,26,18,8,90,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,144,64,26,18,8,90,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,108,145,64,26,18,8,90,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,42,192,26,18,8,90,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,145,64,26,18,8,90,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,240,63,26,18,8,90,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,236,144,64,26,18,8,90,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,46,64,26,18,8,90,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,16,192,26,18,8,90,16,23,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,180,145,64,26,18,8,90,16,22,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,21,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,164,145,64,26,18,8,90,16,25,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,240,63,26,18,8,90,16,26,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,24,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,28,145,64,26,18,8,90,16,28,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,54,64,26,18,8,90,16,29,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,27,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,44,145,64,26,18,8,90,16,31,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,55,64,26,18,8,90,16,32,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,30,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,145,64,26,18,8,90,16,34,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,54,64,26,18,8,90,16,35,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,33,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,142,64,26,18,8,90,16,37,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,28,192,26,18,8,90,16,38,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,36,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,144,64,26,18,8,90,16,40,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,65,192,26,18,8,90,16,41,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,39,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,20,144,64,26,18,8,90,16,43,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,73,192,26,18,8,90,16,44,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,42,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,141,64,26,18,8,90,16,46,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,82,192,26,18,8,90,16,47,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,45,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,140,64,26,18,8,90,16,49,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,82,192,26,18,8,90,16,50,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,48,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,140,64,26,18,8,90,16,52,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,82,192,26,18,8,90,16,53,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,51,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,140,64,26,18,8,90,16,55,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,80,192,26,18,8,90,16,56,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,54,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,142,64,26,18,8,90,16,58,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,72,192,26,18,8,90,16,59,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,57,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,142,64,26,18,8,90,16,61,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,62,192,26,18,8,90,16,62,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,60,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,142,64,26,18,8,90,16,64,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,71,192,26,18,8,90,16,65,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,63,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,142,64,26,18,8,90,16,67,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,65,192,26,18,8,90,16,68,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,66,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,142,64,26,18,8,90,16,70,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,62,192,26,18,8,90,16,71,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,69,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,142,64,26,18,8,90,16,73,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,65,192,26,18,8,90,16,74,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,72,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,143,64,26,18,8,90,16,76,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,36,192,26,18,8,90,16,77,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,75,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,143,64,26,18,8,90,16,79,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,90,16,80,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,78,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,28,64,26,18,8,90,16,83,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,143,64,26,18,8,90,16,82,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,81,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,143,64,26,18,8,90,16,85,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,40,64,26,18,8,90,16,86,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,84,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,240,63,26,18,8,90,16,89,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,143,64,26,18,8,90,16,88,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,87,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,144,64,26,18,8,90,16,91,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,74,192,26,18,8,90,16,92,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,90,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,36,144,64,26,18,8,90,16,94,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,89,192,26,18,8,90,16,95,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,93,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,80,192,26,18,8,90,16,98,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,143,64,26,18,8,90,16,97,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,96,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,0,0,26,18,8,90,16,101,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,142,64,26,18,8,90,16,100,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,99,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,139,64,26,18,8,90,16,103,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,88,64,26,18,8,90,16,104,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,102,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,143,64,26,18,8,90,16,106,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,64,64,26,18,8,90,16,107,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,105,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,143,64,26,18,8,90,16,109,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,36,64,26,18,8,90,16,110,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,108,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,18,8,90,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,158,3,18,155,3,10,152,3,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,86,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,145,64,26,18,8,86,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,117,64,26,18,8,86,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,86,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,130,64,26,18,8,86,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,106,64,26,18,8,86,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,86,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,86,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,86,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,53,54,101,97,98,54,26,18,8,86,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,86,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,18,8,77,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,34,18,8,105,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,32,10,6,115,104,97,112,101,115,18,22,18,20,18,18,8,74,16,1,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,204,129,13,10,6,115,104,97,112,101,115,18,192,129,13,18,188,129,13,10,177,43,18,174,43,10,171,43,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,48,48,48,48,26,19,8,205,1,16,3,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,205,1,16,4,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,137,42,10,6,112,111,105,110,116,115,18,254,41,18,251,41,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,125,64,26,19,8,205,1,16,7,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,124,64,26,19,8,205,1,16,8,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,6,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,125,64,26,19,8,205,1,16,10,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,125,64,26,19,8,205,1,16,11,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,9,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,124,64,26,19,8,205,1,16,13,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,126,64,26,19,8,205,1,16,14,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,12,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,124,64,26,19,8,205,1,16,16,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,128,64,26,19,8,205,1,16,17,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,15,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,125,64,26,19,8,205,1,16,19,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,128,64,26,19,8,205,1,16,20,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,18,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,125,64,26,19,8,205,1,16,22,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,129,64,26,19,8,205,1,16,23,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,21,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,126,64,26,19,8,205,1,16,25,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,130,64,26,19,8,205,1,16,26,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,24,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,128,64,26,19,8,205,1,16,28,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,205,1,16,29,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,27,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,129,64,26,19,8,205,1,16,31,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,131,64,26,19,8,205,1,16,32,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,30,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,131,64,26,19,8,205,1,16,34,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,132,64,26,19,8,205,1,16,35,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,33,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,132,64,26,19,8,205,1,16,38,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,133,64,26,19,8,205,1,16,37,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,36,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,136,64,26,19,8,205,1,16,40,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,132,64,26,19,8,205,1,16,41,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,39,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,136,64,26,19,8,205,1,16,43,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,205,1,16,44,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,42,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,137,64,26,19,8,205,1,16,46,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,132,64,26,19,8,205,1,16,47,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,45,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,137,64,26,19,8,205,1,16,49,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,130,64,26,19,8,205,1,16,50,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,48,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,137,64,26,19,8,205,1,16,52,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,130,64,26,19,8,205,1,16,53,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,51,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,137,64,26,19,8,205,1,16,55,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,127,64,26,19,8,205,1,16,56,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,54,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,137,64,26,19,8,205,1,16,58,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,122,64,26,19,8,205,1,16,59,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,57,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,137,64,26,19,8,205,1,16,61,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,120,64,26,19,8,205,1,16,62,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,60,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,137,64,26,19,8,205,1,16,64,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,120,64,26,19,8,205,1,16,65,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,63,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,136,64,26,19,8,205,1,16,67,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,120,64,26,19,8,205,1,16,68,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,66,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,136,64,26,19,8,205,1,16,70,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,120,64,26,19,8,205,1,16,71,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,69,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,122,64,26,19,8,205,1,16,74,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,134,64,26,19,8,205,1,16,73,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,72,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,134,64,26,19,8,205,1,16,76,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,123,64,26,19,8,205,1,16,77,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,75,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,125,64,26,19,8,205,1,16,80,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,134,64,26,19,8,205,1,16,79,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,78,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,135,64,26,19,8,205,1,16,82,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,127,64,26,19,8,205,1,16,83,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,81,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,135,64,26,19,8,205,1,16,85,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,128,64,26,19,8,205,1,16,86,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,84,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,135,64,26,19,8,205,1,16,88,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,128,64,26,19,8,205,1,16,89,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,87,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,135,64,26,19,8,205,1,16,91,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,129,64,26,19,8,205,1,16,92,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,90,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,132,64,26,19,8,205,1,16,94,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,129,64,26,19,8,205,1,16,95,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,93,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,131,64,26,19,8,205,1,16,97,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,130,64,26,19,8,205,1,16,98,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,96,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,130,64,26,19,8,205,1,16,100,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,130,64,26,19,8,205,1,16,101,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,99,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,130,64,26,19,8,205,1,16,103,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,129,64,26,19,8,205,1,16,104,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,102,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,130,64,26,19,8,205,1,16,106,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,122,64,26,19,8,205,1,16,107,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,105,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,131,64,26,19,8,205,1,16,109,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,121,64,26,19,8,205,1,16,110,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,108,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,131,64,26,19,8,205,1,16,112,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,121,64,26,19,8,205,1,16,113,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,111,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,131,64,26,19,8,205,1,16,115,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,120,64,26,19,8,205,1,16,116,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,114,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,133,64,26,19,8,205,1,16,118,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,120,64,26,19,8,205,1,16,119,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,117,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,134,64,26,19,8,205,1,16,121,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,121,64,26,19,8,205,1,16,122,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,120,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,134,64,26,19,8,205,1,16,124,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,120,64,26,19,8,205,1,16,125,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,123,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,133,64,26,19,8,205,1,16,127,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,119,64,26,20,8,205,1,16,128,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,126,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,132,64,26,20,8,205,1,16,130,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,114,64,26,20,8,205,1,16,131,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,205,1,16,129,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,131,64,26,20,8,205,1,16,133,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,112,64,26,20,8,205,1,16,134,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,205,1,16,132,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,130,64,26,20,8,205,1,16,136,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,110,64,26,20,8,205,1,16,137,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,205,1,16,135,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,130,64,26,20,8,205,1,16,139,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,109,64,26,20,8,205,1,16,140,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,205,1,16,138,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,130,64,26,20,8,205,1,16,142,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,108,64,26,20,8,205,1,16,143,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,205,1,16,141,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,130,64,26,20,8,205,1,16,145,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,107,64,26,20,8,205,1,16,146,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,205,1,16,144,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,130,64,26,20,8,205,1,16,148,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,108,64,26,20,8,205,1,16,149,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,205,1,16,147,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,5,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,205,1,16,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,205,1,16,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,151,53,18,148,53,10,145,53,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,55,55,98,100,50,26,19,8,206,1,16,3,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,206,1,16,4,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,239,51,10,6,112,111,105,110,116,115,18,228,51,18,225,51,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,126,64,26,19,8,206,1,16,7,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,100,64,26,19,8,206,1,16,8,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,6,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,126,64,26,19,8,206,1,16,10,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,103,64,26,19,8,206,1,16,11,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,9,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,126,64,26,19,8,206,1,16,13,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,104,64,26,19,8,206,1,16,14,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,12,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,126,64,26,19,8,206,1,16,16,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,109,64,26,19,8,206,1,16,17,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,15,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,125,64,26,19,8,206,1,16,19,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,111,64,26,19,8,206,1,16,20,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,18,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,124,64,26,19,8,206,1,16,22,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,112,64,26,19,8,206,1,16,23,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,21,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,121,64,26,19,8,206,1,16,25,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,113,64,26,19,8,206,1,16,26,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,24,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,120,64,26,19,8,206,1,16,28,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,114,64,26,19,8,206,1,16,29,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,27,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,119,64,26,19,8,206,1,16,31,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,114,64,26,19,8,206,1,16,32,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,30,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,116,64,26,19,8,206,1,16,34,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,114,64,26,19,8,206,1,16,35,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,33,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,116,64,26,19,8,206,1,16,37,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,115,64,26,19,8,206,1,16,38,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,36,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,206,1,16,40,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,115,64,26,19,8,206,1,16,41,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,39,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,120,64,26,19,8,206,1,16,43,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,116,64,26,19,8,206,1,16,44,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,42,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,125,64,26,19,8,206,1,16,46,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,117,64,26,19,8,206,1,16,47,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,45,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,127,64,26,19,8,206,1,16,49,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,117,64,26,19,8,206,1,16,50,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,48,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,129,64,26,19,8,206,1,16,52,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,118,64,26,19,8,206,1,16,53,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,51,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,133,64,26,19,8,206,1,16,55,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,118,64,26,19,8,206,1,16,56,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,54,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,133,64,26,19,8,206,1,16,58,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,118,64,26,19,8,206,1,16,59,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,57,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,134,64,26,19,8,206,1,16,61,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,117,64,26,19,8,206,1,16,62,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,60,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,134,64,26,19,8,206,1,16,64,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,116,64,26,19,8,206,1,16,65,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,63,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,134,64,26,19,8,206,1,16,67,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,114,64,26,19,8,206,1,16,68,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,66,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,134,64,26,19,8,206,1,16,70,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,112,64,26,19,8,206,1,16,71,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,69,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,134,64,26,19,8,206,1,16,73,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,109,64,26,19,8,206,1,16,74,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,72,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,134,64,26,19,8,206,1,16,76,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,104,64,26,19,8,206,1,16,77,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,75,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,103,64,26,19,8,206,1,16,80,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,133,64,26,19,8,206,1,16,79,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,78,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,133,64,26,19,8,206,1,16,82,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,103,64,26,19,8,206,1,16,83,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,81,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,129,64,26,19,8,206,1,16,85,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,103,64,26,19,8,206,1,16,86,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,84,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,128,64,26,19,8,206,1,16,88,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,102,64,26,19,8,206,1,16,89,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,87,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,100,64,26,19,8,206,1,16,92,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,132,64,26,19,8,206,1,16,91,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,90,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,134,64,26,19,8,206,1,16,94,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,98,64,26,19,8,206,1,16,95,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,93,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,139,64,26,19,8,206,1,16,97,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,98,64,26,19,8,206,1,16,98,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,96,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,99,64,26,19,8,206,1,16,101,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,140,64,26,19,8,206,1,16,100,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,99,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,140,64,26,19,8,206,1,16,103,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,99,64,26,19,8,206,1,16,104,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,102,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,141,64,26,19,8,206,1,16,106,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,107,64,26,19,8,206,1,16,107,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,105,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,141,64,26,19,8,206,1,16,109,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,115,64,26,19,8,206,1,16,110,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,108,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,141,64,26,19,8,206,1,16,112,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,118,64,26,19,8,206,1,16,113,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,111,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,122,64,26,19,8,206,1,16,116,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,141,64,26,19,8,206,1,16,115,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,114,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,140,64,26,19,8,206,1,16,118,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,123,64,26,19,8,206,1,16,119,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,117,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,138,64,26,19,8,206,1,16,121,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,123,64,26,19,8,206,1,16,122,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,120,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,131,64,26,19,8,206,1,16,124,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,123,64,26,19,8,206,1,16,125,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,123,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,131,64,26,19,8,206,1,16,127,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,124,64,26,20,8,206,1,16,128,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,126,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,130,64,26,20,8,206,1,16,130,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,124,64,26,20,8,206,1,16,131,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,129,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,130,64,26,20,8,206,1,16,133,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,125,64,26,20,8,206,1,16,134,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,132,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,130,64,26,20,8,206,1,16,136,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,127,64,26,20,8,206,1,16,137,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,135,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,132,64,26,20,8,206,1,16,139,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,130,64,26,20,8,206,1,16,140,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,138,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,133,64,26,20,8,206,1,16,142,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,133,64,26,20,8,206,1,16,143,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,141,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,133,64,26,20,8,206,1,16,145,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,133,64,26,20,8,206,1,16,146,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,144,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,133,64,26,20,8,206,1,16,148,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,134,64,26,20,8,206,1,16,149,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,147,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,129,64,26,20,8,206,1,16,151,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,136,64,26,20,8,206,1,16,152,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,150,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,127,64,26,20,8,206,1,16,154,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,137,64,26,20,8,206,1,16,155,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,153,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,127,64,26,20,8,206,1,16,157,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,138,64,26,20,8,206,1,16,158,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,156,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,128,64,26,20,8,206,1,16,160,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,139,64,26,20,8,206,1,16,161,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,159,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,130,64,26,20,8,206,1,16,163,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,140,64,26,20,8,206,1,16,164,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,162,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,132,64,26,20,8,206,1,16,166,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,141,64,26,20,8,206,1,16,167,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,165,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,131,64,26,20,8,206,1,16,169,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,168,141,64,26,20,8,206,1,16,170,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,168,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,141,64,26,20,8,206,1,16,173,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,132,64,26,20,8,206,1,16,172,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,171,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,141,64,26,20,8,206,1,16,176,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,133,64,26,20,8,206,1,16,175,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,174,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,133,64,26,20,8,206,1,16,178,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,141,64,26,20,8,206,1,16,179,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,177,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,133,64,26,20,8,206,1,16,181,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,141,64,26,20,8,206,1,16,182,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,206,1,16,180,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,5,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,206,1,16,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,206,1,16,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,205,41,18,202,41,10,199,41,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,207,1,16,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,55,55,98,100,50,26,19,8,207,1,16,3,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,207,1,16,4,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,165,40,10,6,112,111,105,110,116,115,18,154,40,18,151,40,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,136,64,26,19,8,207,1,16,7,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,135,64,26,19,8,207,1,16,8,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,6,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,136,64,26,19,8,207,1,16,10,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,136,64,26,19,8,207,1,16,11,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,9,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,136,64,26,19,8,207,1,16,13,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,136,64,26,19,8,207,1,16,14,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,12,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,137,64,26,19,8,207,1,16,16,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,136,64,26,19,8,207,1,16,17,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,15,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,140,64,26,19,8,207,1,16,19,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,136,64,26,19,8,207,1,16,20,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,18,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,140,64,26,19,8,207,1,16,22,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,136,64,26,19,8,207,1,16,23,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,21,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,140,64,26,19,8,207,1,16,25,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,136,64,26,19,8,207,1,16,26,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,24,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,140,64,26,19,8,207,1,16,28,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,135,64,26,19,8,207,1,16,29,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,27,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,140,64,26,19,8,207,1,16,31,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,134,64,26,19,8,207,1,16,32,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,30,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,140,64,26,19,8,207,1,16,34,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,133,64,26,19,8,207,1,16,35,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,33,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,139,64,26,19,8,207,1,16,37,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,131,64,26,19,8,207,1,16,38,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,36,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,138,64,26,19,8,207,1,16,40,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,130,64,26,19,8,207,1,16,41,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,39,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,138,64,26,19,8,207,1,16,43,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,130,64,26,19,8,207,1,16,44,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,42,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,131,64,26,19,8,207,1,16,47,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,137,64,26,19,8,207,1,16,46,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,45,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,132,64,26,19,8,207,1,16,50,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,137,64,26,19,8,207,1,16,49,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,48,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,137,64,26,19,8,207,1,16,52,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,132,64,26,19,8,207,1,16,53,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,51,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,131,64,26,19,8,207,1,16,56,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,138,64,26,19,8,207,1,16,55,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,54,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,138,64,26,19,8,207,1,16,58,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,207,1,16,59,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,57,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,139,64,26,19,8,207,1,16,61,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,130,64,26,19,8,207,1,16,62,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,60,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,139,64,26,19,8,207,1,16,64,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,129,64,26,19,8,207,1,16,65,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,63,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,138,64,26,19,8,207,1,16,67,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,128,64,26,19,8,207,1,16,68,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,66,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,137,64,26,19,8,207,1,16,70,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,207,1,16,71,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,69,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,137,64,26,19,8,207,1,16,73,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,126,64,26,19,8,207,1,16,74,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,72,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,136,64,26,19,8,207,1,16,76,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,126,64,26,19,8,207,1,16,77,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,75,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,136,64,26,19,8,207,1,16,79,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,126,64,26,19,8,207,1,16,80,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,78,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,137,64,26,19,8,207,1,16,82,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,125,64,26,19,8,207,1,16,83,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,81,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,138,64,26,19,8,207,1,16,85,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,125,64,26,19,8,207,1,16,86,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,84,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,126,64,26,19,8,207,1,16,89,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,138,64,26,19,8,207,1,16,88,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,87,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,139,64,26,19,8,207,1,16,91,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,126,64,26,19,8,207,1,16,92,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,90,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,139,64,26,19,8,207,1,16,94,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,126,64,26,19,8,207,1,16,95,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,93,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,138,64,26,19,8,207,1,16,97,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,128,64,26,19,8,207,1,16,98,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,96,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,138,64,26,19,8,207,1,16,100,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,128,64,26,19,8,207,1,16,101,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,99,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,129,64,26,19,8,207,1,16,104,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,139,64,26,19,8,207,1,16,103,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,102,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,141,64,26,19,8,207,1,16,106,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,129,64,26,19,8,207,1,16,107,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,105,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,141,64,26,19,8,207,1,16,109,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,129,64,26,19,8,207,1,16,110,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,108,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,130,64,26,19,8,207,1,16,113,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,141,64,26,19,8,207,1,16,112,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,111,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,140,64,26,19,8,207,1,16,115,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,131,64,26,19,8,207,1,16,116,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,114,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,132,64,26,19,8,207,1,16,119,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,139,64,26,19,8,207,1,16,118,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,117,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,139,64,26,19,8,207,1,16,121,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,133,64,26,19,8,207,1,16,122,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,120,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,137,64,26,19,8,207,1,16,124,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,134,64,26,19,8,207,1,16,125,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,123,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,137,64,26,19,8,207,1,16,127,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,134,64,26,20,8,207,1,16,128,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,126,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,137,64,26,20,8,207,1,16,130,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,134,64,26,20,8,207,1,16,131,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,207,1,16,129,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,137,64,26,20,8,207,1,16,133,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,136,64,26,20,8,207,1,16,134,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,207,1,16,132,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,137,64,26,20,8,207,1,16,137,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,136,64,26,20,8,207,1,16,136,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,207,1,16,135,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,136,64,26,20,8,207,1,16,139,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,138,64,26,20,8,207,1,16,140,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,207,1,16,138,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,139,64,26,20,8,207,1,16,143,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,136,64,26,20,8,207,1,16,142,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,207,1,16,141,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,5,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,207,1,16,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,163,36,18,160,36,10,157,36,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,208,1,16,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,97,97,52,99,56,26,19,8,208,1,16,3,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,208,1,16,4,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,251,34,10,6,112,111,105,110,116,115,18,240,34,18,237,34,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,136,64,26,19,8,208,1,16,7,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,115,64,26,19,8,208,1,16,8,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,6,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,136,64,26,19,8,208,1,16,10,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,115,64,26,19,8,208,1,16,11,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,9,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,135,64,26,19,8,208,1,16,13,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,116,64,26,19,8,208,1,16,14,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,12,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,134,64,26,19,8,208,1,16,16,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,116,64,26,19,8,208,1,16,17,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,15,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,117,64,26,19,8,208,1,16,20,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,132,64,26,19,8,208,1,16,19,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,18,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,132,64,26,19,8,208,1,16,22,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,117,64,26,19,8,208,1,16,23,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,21,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,133,64,26,19,8,208,1,16,25,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,118,64,26,19,8,208,1,16,26,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,24,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,135,64,26,19,8,208,1,16,28,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,119,64,26,19,8,208,1,16,29,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,27,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,138,64,26,19,8,208,1,16,31,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,120,64,26,19,8,208,1,16,32,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,30,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,121,64,26,19,8,208,1,16,35,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,141,64,26,19,8,208,1,16,34,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,33,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,144,64,26,19,8,208,1,16,37,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,122,64,26,19,8,208,1,16,38,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,36,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,144,64,26,19,8,208,1,16,40,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,123,64,26,19,8,208,1,16,41,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,39,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,144,64,26,19,8,208,1,16,43,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,123,64,26,19,8,208,1,16,44,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,42,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,144,64,26,19,8,208,1,16,46,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,124,64,26,19,8,208,1,16,47,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,45,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,143,64,26,19,8,208,1,16,49,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,125,64,26,19,8,208,1,16,50,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,48,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,139,64,26,19,8,208,1,16,52,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,129,64,26,19,8,208,1,16,53,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,51,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,133,64,26,19,8,208,1,16,56,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,134,64,26,19,8,208,1,16,55,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,54,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,133,64,26,19,8,208,1,16,58,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,133,64,26,19,8,208,1,16,59,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,57,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,133,64,26,19,8,208,1,16,61,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,134,64,26,19,8,208,1,16,62,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,60,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,134,64,26,19,8,208,1,16,64,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,134,64,26,19,8,208,1,16,65,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,63,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,135,64,26,19,8,208,1,16,67,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,135,64,26,19,8,208,1,16,68,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,66,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,136,64,26,19,8,208,1,16,70,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,136,64,26,19,8,208,1,16,71,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,69,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,137,64,26,19,8,208,1,16,73,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,136,64,26,19,8,208,1,16,74,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,72,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,140,64,26,19,8,208,1,16,76,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,136,64,26,19,8,208,1,16,77,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,75,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,139,64,26,19,8,208,1,16,79,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,136,64,26,19,8,208,1,16,80,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,78,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,138,64,26,19,8,208,1,16,82,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,136,64,26,19,8,208,1,16,83,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,81,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,136,64,26,19,8,208,1,16,86,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,138,64,26,19,8,208,1,16,85,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,84,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,138,64,26,19,8,208,1,16,88,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,136,64,26,19,8,208,1,16,89,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,87,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,138,64,26,19,8,208,1,16,91,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,136,64,26,19,8,208,1,16,92,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,90,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,139,64,26,19,8,208,1,16,94,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,135,64,26,19,8,208,1,16,95,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,93,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,135,64,26,19,8,208,1,16,98,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,139,64,26,19,8,208,1,16,97,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,96,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,134,64,26,19,8,208,1,16,101,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,140,64,26,19,8,208,1,16,100,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,99,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,140,64,26,19,8,208,1,16,103,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,133,64,26,19,8,208,1,16,104,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,102,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,140,64,26,19,8,208,1,16,106,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,130,64,26,19,8,208,1,16,107,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,105,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,140,64,26,19,8,208,1,16,109,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,129,64,26,19,8,208,1,16,110,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,108,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,139,64,26,19,8,208,1,16,112,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,128,64,26,19,8,208,1,16,113,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,111,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,139,64,26,19,8,208,1,16,115,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,123,64,26,19,8,208,1,16,116,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,114,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,139,64,26,19,8,208,1,16,118,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,119,64,26,19,8,208,1,16,119,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,117,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,139,64,26,19,8,208,1,16,121,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,119,64,26,19,8,208,1,16,122,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,120,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,139,64,26,19,8,208,1,16,124,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,118,64,26,19,8,208,1,16,125,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,123,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,5,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,208,1,16,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,213,20,18,210,20,10,207,20,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,209,1,16,4,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,173,19,10,6,112,111,105,110,116,115,18,162,19,18,159,19,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,141,64,26,19,8,209,1,16,7,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,82,64,26,19,8,209,1,16,8,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,6,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,140,64,26,19,8,209,1,16,10,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,92,64,26,19,8,209,1,16,11,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,9,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,138,64,26,19,8,209,1,16,13,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,105,64,26,19,8,209,1,16,14,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,12,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,108,64,26,19,8,209,1,16,17,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,137,64,26,19,8,209,1,16,16,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,15,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,136,64,26,19,8,209,1,16,19,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,109,64,26,19,8,209,1,16,20,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,18,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,136,64,26,19,8,209,1,16,22,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,209,1,16,23,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,21,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,135,64,26,19,8,209,1,16,25,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,109,64,26,19,8,209,1,16,26,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,24,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,135,64,26,19,8,209,1,16,28,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,108,64,26,19,8,209,1,16,29,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,27,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,135,64,26,19,8,209,1,16,31,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,106,64,26,19,8,209,1,16,32,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,30,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,134,64,26,19,8,209,1,16,34,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,103,64,26,19,8,209,1,16,35,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,33,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,134,64,26,19,8,209,1,16,37,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,101,64,26,19,8,209,1,16,38,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,36,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,135,64,26,19,8,209,1,16,40,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,99,64,26,19,8,209,1,16,41,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,39,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,135,64,26,19,8,209,1,16,43,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,98,64,26,19,8,209,1,16,44,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,42,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,135,64,26,19,8,209,1,16,46,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,97,64,26,19,8,209,1,16,47,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,45,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,136,64,26,19,8,209,1,16,49,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,97,64,26,19,8,209,1,16,50,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,48,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,136,64,26,19,8,209,1,16,52,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,97,64,26,19,8,209,1,16,53,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,51,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,137,64,26,19,8,209,1,16,55,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,97,64,26,19,8,209,1,16,56,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,54,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,138,64,26,19,8,209,1,16,58,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,100,64,26,19,8,209,1,16,59,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,57,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,139,64,26,19,8,209,1,16,61,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,105,64,26,19,8,209,1,16,62,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,60,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,139,64,26,19,8,209,1,16,64,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,109,64,26,19,8,209,1,16,65,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,63,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,140,64,26,19,8,209,1,16,67,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,113,64,26,19,8,209,1,16,68,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,66,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,141,64,26,19,8,209,1,16,70,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,118,64,26,19,8,209,1,16,71,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,69,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,5,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,209,1,16,2,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,56,50,50,49,26,19,8,209,1,16,3,26,12,98,255,26,207,217,176,234,142,137,48,116,127,18,19,8,209,1,16,1,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,210,1,16,4,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,141,64,26,19,8,210,1,16,7,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,210,1,16,8,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,210,1,16,6,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,210,1,16,11,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,141,64,26,19,8,210,1,16,10,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,210,1,16,9,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,210,1,16,5,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,210,1,16,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,97,97,52,99,56,26,19,8,210,1,16,3,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,210,1,16,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,153,17,18,150,17,10,147,17,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,211,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,211,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,211,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,241,15,10,6,112,111,105,110,116,115,18,230,15,18,227,15,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,107,104,173,56,58,98,192,26,19,8,211,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,237,71,4,238,192,165,41,192,26,19,8,211,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,7,185,54,170,122,134,99,192,26,19,8,211,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,146,187,44,172,78,174,38,192,26,19,8,211,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,141,231,130,69,163,100,192,26,19,8,211,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,29,247,219,139,77,100,15,192,26,19,8,211,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,247,63,239,170,49,101,192,26,19,8,211,1,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,205,125,116,47,99,209,37,64,26,19,8,211,1,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,247,63,239,170,49,101,192,26,19,8,211,1,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,223,194,219,1,166,57,59,64,26,19,8,211,1,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,6,5,167,188,210,100,192,26,19,8,211,1,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,249,51,177,99,254,15,66,64,26,19,8,211,1,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,156,172,58,87,68,100,192,26,19,8,211,1,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,39,250,156,132,183,139,67,64,26,19,8,211,1,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,147,210,175,87,162,95,192,26,19,8,211,1,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,199,47,214,119,191,188,72,64,26,19,8,211,1,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,122,35,44,115,179,89,192,26,19,8,211,1,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,222,18,76,8,156,122,73,64,26,19,8,211,1,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,209,193,122,221,121,87,192,26,19,8,211,1,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,199,47,214,119,191,188,72,64,26,19,8,211,1,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,25,155,17,54,159,85,192,26,19,8,211,1,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,130,134,116,198,41,131,70,64,26,19,8,211,1,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,117,184,18,247,248,138,81,192,26,19,8,211,1,16,40,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,223,194,219,1,166,57,59,64,26,19,8,211,1,16,41,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,39,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,94,213,156,102,28,205,80,192,26,19,8,211,1,16,43,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,224,34,251,244,185,183,46,64,26,19,8,211,1,16,44,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,42,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,117,184,18,247,248,138,81,192,26,19,8,211,1,16,46,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,190,152,44,80,52,231,19,64,26,19,8,211,1,16,47,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,45,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,39,96,201,71,64,85,192,26,19,8,211,1,16,49,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,253,44,76,205,239,143,27,192,26,19,8,211,1,16,50,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,48,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,93,153,188,79,113,90,192,26,19,8,211,1,16,52,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,237,71,4,238,192,165,41,192,26,19,8,211,1,16,53,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,51,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,136,242,28,92,124,97,192,26,19,8,211,1,16,55,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,237,71,4,238,192,165,41,192,26,19,8,211,1,16,56,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,54,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,54,47,85,106,220,182,35,192,26,19,8,211,1,16,59,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,182,78,222,61,21,248,98,192,26,19,8,211,1,16,58,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,57,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,211,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,247,18,18,244,18,10,241,18,10,207,17,10,6,112,111,105,110,116,115,18,196,17,18,193,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,51,238,211,207,203,67,64,26,19,8,212,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,128,118,197,217,11,70,49,192,26,19,8,212,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,138,140,34,58,146,65,64,26,19,8,212,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,128,118,197,217,11,70,49,192,26,19,8,212,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,43,252,105,193,143,53,61,64,26,19,8,212,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,54,47,85,106,220,182,35,192,26,19,8,212,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,111,146,127,29,62,58,64,26,19,8,212,1,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,188,116,250,40,54,212,224,63,26,19,8,212,1,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,111,146,127,29,62,58,64,26,19,8,212,1,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,177,252,239,224,236,189,57,64,26,19,8,212,1,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,43,252,105,193,143,53,61,64,26,19,8,212,1,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,16,23,39,244,218,205,66,64,26,19,8,212,1,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,167,22,146,93,212,64,64,26,19,8,212,1,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,130,134,116,198,41,131,70,64,26,19,8,212,1,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,220,79,133,101,5,70,64,26,19,8,212,1,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,245,245,193,152,120,56,74,64,26,19,8,212,1,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,248,145,142,133,80,81,64,26,19,8,212,1,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,104,101,15,107,199,237,77,64,26,19,8,212,1,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,47,42,240,149,78,46,93,64,26,19,8,212,1,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,127,72,133,251,163,171,78,64,26,19,8,212,1,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,196,140,143,210,198,95,64,26,19,8,212,1,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,58,159,35,74,14,114,76,64,26,19,8,212,1,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,153,105,234,86,6,65,71,64,26,19,8,212,1,16,41,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,34,55,119,32,52,0,97,64,26,19,8,212,1,16,40,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,39,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,175,148,68,171,47,97,64,26,19,8,212,1,16,43,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,108,163,254,53,77,197,69,64,26,19,8,212,1,16,44,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,42,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,34,55,119,32,52,0,97,64,26,19,8,212,1,16,46,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,223,194,219,1,166,57,59,64,26,19,8,212,1,16,47,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,45,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,93,240,219,182,7,170,94,64,26,19,8,212,1,16,49,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,205,125,116,47,99,209,37,64,26,19,8,212,1,16,50,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,48,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,254,80,126,244,237,162,238,191,26,19,8,212,1,16,53,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,95,143,83,156,202,149,90,64,26,19,8,212,1,16,52,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,51,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,28,133,105,208,247,71,84,64,26,19,8,212,1,16,55,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,146,187,44,172,78,174,38,192,26,19,8,212,1,16,56,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,54,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,21,28,254,168,146,80,64,26,19,8,212,1,16,58,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,73,212,219,47,51,157,44,192,26,19,8,212,1,16,59,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,57,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,17,192,197,21,66,195,70,64,26,19,8,212,1,16,61,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,128,118,197,217,11,70,49,192,26,19,8,212,1,16,62,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,60,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,87,227,251,56,79,52,64,26,19,8,212,1,16,64,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,128,118,197,217,11,70,49,192,26,19,8,212,1,16,65,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,63,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,212,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,212,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,212,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,212,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,154,30,18,151,30,10,148,30,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,212,1,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,54,101,97,98,54,26,19,8,212,1,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,212,1,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,242,28,10,6,112,111,105,110,116,115,18,231,28,18,228,28,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,144,64,26,19,8,212,1,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,110,64,26,19,8,212,1,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,142,64,26,19,8,212,1,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,113,64,26,19,8,212,1,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,114,64,26,19,8,212,1,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,141,64,26,19,8,212,1,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,140,64,26,19,8,212,1,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,114,64,26,19,8,212,1,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,114,64,26,19,8,212,1,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,140,64,26,19,8,212,1,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,140,64,26,19,8,212,1,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,212,1,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,140,64,26,19,8,212,1,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,108,64,26,19,8,212,1,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,140,64,26,19,8,212,1,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,98,64,26,19,8,212,1,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,140,64,26,19,8,212,1,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,83,64,26,19,8,212,1,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,141,64,26,19,8,212,1,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,32,64,26,19,8,212,1,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,142,64,26,19,8,212,1,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,54,192,26,19,8,212,1,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,143,64,26,19,8,212,1,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,68,192,26,19,8,212,1,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,143,64,26,19,8,212,1,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,70,192,26,19,8,212,1,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,144,64,26,19,8,212,1,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,70,192,26,19,8,212,1,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,16,192,26,19,8,212,1,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,145,64,26,19,8,212,1,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,145,64,26,19,8,212,1,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,71,64,26,19,8,212,1,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,145,64,26,19,8,212,1,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,89,64,26,19,8,212,1,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,145,64,26,19,8,212,1,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,97,64,26,19,8,212,1,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,144,64,26,19,8,212,1,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,117,64,26,19,8,212,1,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,144,64,26,19,8,212,1,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,212,1,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,143,64,26,19,8,212,1,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,124,64,26,19,8,212,1,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,141,64,26,19,8,212,1,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,128,64,26,19,8,212,1,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,128,64,26,19,8,212,1,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,135,64,26,19,8,212,1,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,135,64,26,19,8,212,1,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,126,64,26,19,8,212,1,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,134,64,26,19,8,212,1,16,79,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,120,64,26,19,8,212,1,16,80,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,78,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,141,64,26,19,8,212,1,16,82,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,118,64,26,19,8,212,1,16,83,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,81,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,122,64,26,19,8,212,1,16,86,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,139,64,26,19,8,212,1,16,85,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,84,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,136,64,26,19,8,212,1,16,88,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,125,64,26,19,8,212,1,16,89,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,87,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,126,64,26,19,8,212,1,16,92,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,134,64,26,19,8,212,1,16,91,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,90,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,133,64,26,19,8,212,1,16,94,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,126,64,26,19,8,212,1,16,95,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,93,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,132,64,26,19,8,212,1,16,97,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,126,64,26,19,8,212,1,16,98,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,96,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,131,64,26,19,8,212,1,16,100,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,124,64,26,19,8,212,1,16,101,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,99,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,144,64,26,19,8,212,1,16,103,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,112,64,26,19,8,212,1,16,104,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,102,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,212,1,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,214,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,242,236,3,132,253,196,66,192,26,19,8,214,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,155,48,154,63,68,77,82,64,26,19,8,214,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,214,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,208,121,20,218,130,67,192,26,19,8,214,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,199,87,14,123,58,221,87,64,26,19,8,214,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,214,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,214,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,214,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,214,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,214,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,205,41,18,202,41,10,199,41,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,54,101,97,98,54,26,19,8,214,1,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,214,1,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,165,40,10,6,112,111,105,110,116,115,18,154,40,18,151,40,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,144,64,26,19,8,214,1,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,112,64,26,19,8,214,1,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,141,64,26,19,8,214,1,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,106,64,26,19,8,214,1,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,141,64,26,19,8,214,1,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,104,64,26,19,8,214,1,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,142,64,26,19,8,214,1,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,96,64,26,19,8,214,1,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,143,64,26,19,8,214,1,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,93,64,26,19,8,214,1,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,144,64,26,19,8,214,1,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,89,64,26,19,8,214,1,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,145,64,26,19,8,214,1,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,85,64,26,19,8,214,1,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,146,64,26,19,8,214,1,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,86,64,26,19,8,214,1,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,146,64,26,19,8,214,1,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,89,64,26,19,8,214,1,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,147,64,26,19,8,214,1,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,97,64,26,19,8,214,1,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,101,64,26,19,8,214,1,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,147,64,26,19,8,214,1,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,147,64,26,19,8,214,1,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,107,64,26,19,8,214,1,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,147,64,26,19,8,214,1,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,113,64,26,19,8,214,1,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,147,64,26,19,8,214,1,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,114,64,26,19,8,214,1,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,146,64,26,19,8,214,1,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,116,64,26,19,8,214,1,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,146,64,26,19,8,214,1,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,118,64,26,19,8,214,1,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,145,64,26,19,8,214,1,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,119,64,26,19,8,214,1,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,145,64,26,19,8,214,1,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,120,64,26,19,8,214,1,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,144,64,26,19,8,214,1,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,120,64,26,19,8,214,1,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,144,64,26,19,8,214,1,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,118,64,26,19,8,214,1,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,144,64,26,19,8,214,1,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,117,64,26,19,8,214,1,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,116,64,26,19,8,214,1,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,144,64,26,19,8,214,1,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,144,64,26,19,8,214,1,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,112,64,26,19,8,214,1,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,144,64,26,19,8,214,1,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,108,64,26,19,8,214,1,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,104,64,26,19,8,214,1,16,80,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,144,64,26,19,8,214,1,16,79,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,78,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,145,64,26,19,8,214,1,16,82,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,98,64,26,19,8,214,1,16,83,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,81,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,145,64,26,19,8,214,1,16,85,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,95,64,26,19,8,214,1,16,86,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,84,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,146,64,26,19,8,214,1,16,88,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,93,64,26,19,8,214,1,16,89,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,87,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,147,64,26,19,8,214,1,16,91,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,93,64,26,19,8,214,1,16,92,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,90,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,148,64,26,19,8,214,1,16,94,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,97,64,26,19,8,214,1,16,95,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,93,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,148,64,26,19,8,214,1,16,97,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,104,64,26,19,8,214,1,16,98,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,96,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,148,64,26,19,8,214,1,16,100,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,107,64,26,19,8,214,1,16,101,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,99,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,148,64,26,19,8,214,1,16,103,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,115,64,26,19,8,214,1,16,104,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,102,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,148,64,26,19,8,214,1,16,106,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,118,64,26,19,8,214,1,16,107,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,105,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,147,64,26,19,8,214,1,16,109,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,122,64,26,19,8,214,1,16,110,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,108,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,124,64,26,19,8,214,1,16,113,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,147,64,26,19,8,214,1,16,112,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,111,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,126,64,26,19,8,214,1,16,116,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,147,64,26,19,8,214,1,16,115,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,114,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,146,64,26,19,8,214,1,16,118,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,128,64,26,19,8,214,1,16,119,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,117,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,142,64,26,19,8,214,1,16,121,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,112,64,26,19,8,214,1,16,122,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,120,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,143,64,26,19,8,214,1,16,124,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,109,64,26,19,8,214,1,16,125,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,123,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,144,64,26,19,8,214,1,16,127,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,106,64,26,20,8,214,1,16,128,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,126,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,105,64,26,20,8,214,1,16,131,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,145,64,26,20,8,214,1,16,130,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,214,1,16,129,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,105,64,26,20,8,214,1,16,134,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,146,64,26,20,8,214,1,16,133,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,214,1,16,132,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,146,64,26,20,8,214,1,16,136,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,106,64,26,20,8,214,1,16,137,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,214,1,16,135,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,145,64,26,20,8,214,1,16,139,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,129,64,26,20,8,214,1,16,140,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,214,1,16,138,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,145,64,26,20,8,214,1,16,142,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,122,64,26,20,8,214,1,16,143,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,214,1,16,141,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,214,1,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,214,1,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,153,61,18,150,61,10,147,61,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,216,1,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,54,50,97,49,51,26,19,8,216,1,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,216,1,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,241,59,10,6,112,111,105,110,116,115,18,230,59,18,227,59,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,147,64,26,19,8,216,1,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,116,64,26,19,8,216,1,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,147,64,26,19,8,216,1,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,114,64,26,19,8,216,1,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,147,64,26,19,8,216,1,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,113,64,26,19,8,216,1,16,14,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,147,64,26,19,8,216,1,16,16,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,111,64,26,19,8,216,1,16,17,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,15,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,148,64,26,19,8,216,1,16,19,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,107,64,26,19,8,216,1,16,20,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,18,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,148,64,26,19,8,216,1,16,22,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,106,64,26,19,8,216,1,16,23,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,21,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,149,64,26,19,8,216,1,16,25,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,106,64,26,19,8,216,1,16,26,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,24,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,150,64,26,19,8,216,1,16,28,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,106,64,26,19,8,216,1,16,29,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,27,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,150,64,26,19,8,216,1,16,31,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,107,64,26,19,8,216,1,16,32,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,30,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,151,64,26,19,8,216,1,16,34,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,108,64,26,19,8,216,1,16,35,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,33,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,151,64,26,19,8,216,1,16,37,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,111,64,26,19,8,216,1,16,38,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,36,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,113,64,26,19,8,216,1,16,41,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,151,64,26,19,8,216,1,16,40,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,39,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,151,64,26,19,8,216,1,16,43,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,114,64,26,19,8,216,1,16,44,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,42,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,151,64,26,19,8,216,1,16,46,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,116,64,26,19,8,216,1,16,47,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,45,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,151,64,26,19,8,216,1,16,49,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,118,64,26,19,8,216,1,16,50,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,48,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,151,64,26,19,8,216,1,16,52,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,121,64,26,19,8,216,1,16,53,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,51,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,150,64,26,19,8,216,1,16,55,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,123,64,26,19,8,216,1,16,56,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,54,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,149,64,26,19,8,216,1,16,58,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,128,64,26,19,8,216,1,16,59,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,57,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,148,64,26,19,8,216,1,16,61,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,129,64,26,19,8,216,1,16,62,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,60,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,147,64,26,19,8,216,1,16,64,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,130,64,26,19,8,216,1,16,65,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,63,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,130,64,26,19,8,216,1,16,68,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,146,64,26,19,8,216,1,16,67,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,66,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,146,64,26,19,8,216,1,16,70,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,130,64,26,19,8,216,1,16,71,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,69,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,146,64,26,19,8,216,1,16,73,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,130,64,26,19,8,216,1,16,74,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,72,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,145,64,26,19,8,216,1,16,76,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,130,64,26,19,8,216,1,16,77,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,75,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,145,64,26,19,8,216,1,16,79,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,129,64,26,19,8,216,1,16,80,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,78,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,145,64,26,19,8,216,1,16,82,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,129,64,26,19,8,216,1,16,83,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,81,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,144,64,26,19,8,216,1,16,85,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,129,64,26,19,8,216,1,16,86,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,84,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,144,64,26,19,8,216,1,16,88,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,129,64,26,19,8,216,1,16,89,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,87,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,144,64,26,19,8,216,1,16,91,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,129,64,26,19,8,216,1,16,92,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,90,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,132,64,26,19,8,216,1,16,95,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,144,64,26,19,8,216,1,16,94,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,93,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,144,64,26,19,8,216,1,16,97,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,138,64,26,19,8,216,1,16,98,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,96,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,145,64,26,19,8,216,1,16,100,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,139,64,26,19,8,216,1,16,101,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,99,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,144,64,26,19,8,216,1,16,103,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,136,64,26,19,8,216,1,16,104,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,102,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,142,64,26,19,8,216,1,16,106,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,131,64,26,19,8,216,1,16,107,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,105,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,141,64,26,19,8,216,1,16,109,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,129,64,26,19,8,216,1,16,110,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,108,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,126,64,26,19,8,216,1,16,113,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,140,64,26,19,8,216,1,16,112,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,111,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,140,64,26,19,8,216,1,16,115,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,122,64,26,19,8,216,1,16,116,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,114,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,139,64,26,19,8,216,1,16,118,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,120,64,26,19,8,216,1,16,119,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,117,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,140,64,26,19,8,216,1,16,121,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,120,64,26,19,8,216,1,16,122,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,120,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,216,1,16,125,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,140,64,26,19,8,216,1,16,124,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,123,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,140,64,26,19,8,216,1,16,127,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,120,64,26,20,8,216,1,16,128,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,126,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,141,64,26,20,8,216,1,16,130,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,120,64,26,20,8,216,1,16,131,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,129,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,144,64,26,20,8,216,1,16,133,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,123,64,26,20,8,216,1,16,134,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,132,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,146,64,26,20,8,216,1,16,136,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,126,64,26,20,8,216,1,16,137,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,135,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,147,64,26,20,8,216,1,16,139,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,126,64,26,20,8,216,1,16,140,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,138,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,148,64,26,20,8,216,1,16,142,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,127,64,26,20,8,216,1,16,143,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,141,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,127,64,26,20,8,216,1,16,146,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,149,64,26,20,8,216,1,16,145,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,144,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,149,64,26,20,8,216,1,16,148,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,127,64,26,20,8,216,1,16,149,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,147,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,149,64,26,20,8,216,1,16,151,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,126,64,26,20,8,216,1,16,152,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,150,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,149,64,26,20,8,216,1,16,154,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,119,64,26,20,8,216,1,16,155,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,153,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,115,64,26,20,8,216,1,16,158,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,149,64,26,20,8,216,1,16,157,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,156,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,106,64,26,20,8,216,1,16,161,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,149,64,26,20,8,216,1,16,160,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,159,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,102,64,26,20,8,216,1,16,164,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,149,64,26,20,8,216,1,16,163,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,162,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,149,64,26,20,8,216,1,16,166,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,98,64,26,20,8,216,1,16,167,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,165,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,149,64,26,20,8,216,1,16,169,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,98,64,26,20,8,216,1,16,170,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,168,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,149,64,26,20,8,216,1,16,172,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,105,64,26,20,8,216,1,16,173,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,171,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,149,64,26,20,8,216,1,16,175,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,111,64,26,20,8,216,1,16,176,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,174,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,148,64,26,20,8,216,1,16,178,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,120,64,26,20,8,216,1,16,179,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,177,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,148,64,26,20,8,216,1,16,181,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,127,64,26,20,8,216,1,16,182,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,180,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,168,132,64,26,20,8,216,1,16,185,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,147,64,26,20,8,216,1,16,184,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,183,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,146,64,26,20,8,216,1,16,187,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,135,64,26,20,8,216,1,16,188,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,186,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,146,64,26,20,8,216,1,16,190,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,136,64,26,20,8,216,1,16,191,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,189,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,146,64,26,20,8,216,1,16,193,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,136,64,26,20,8,216,1,16,194,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,192,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,146,64,26,20,8,216,1,16,196,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,135,64,26,20,8,216,1,16,197,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,195,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,145,64,26,20,8,216,1,16,199,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,130,64,26,20,8,216,1,16,200,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,198,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,145,64,26,20,8,216,1,16,202,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,116,64,26,20,8,216,1,16,203,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,201,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,145,64,26,20,8,216,1,16,205,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,98,64,26,20,8,216,1,16,206,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,204,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,145,64,26,20,8,216,1,16,208,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,106,64,26,20,8,216,1,16,209,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,20,8,216,1,16,207,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,216,1,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,195,8,18,192,8,10,189,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,217,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,217,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,217,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,51,247,103,196,63,145,96,64,26,19,8,217,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,182,35,133,221,8,237,91,192,26,19,8,217,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,217,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,194,252,194,203,216,87,192,26,19,8,217,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,155,68,54,193,129,221,97,64,26,19,8,217,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,217,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,97,116,168,142,196,83,192,26,19,8,217,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,178,39,172,81,94,155,98,64,26,19,8,217,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,217,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,198,215,174,10,44,81,192,26,19,8,217,1,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,61,25,231,153,76,250,98,64,26,19,8,217,1,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,217,1,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,232,40,152,190,113,73,192,26,19,8,217,1,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,61,25,231,153,76,250,98,64,26,19,8,217,1,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,217,1,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,13,238,150,242,209,156,43,192,26,19,8,217,1,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,97,189,83,229,248,12,98,64,26,19,8,217,1,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,217,1,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,108,164,254,36,109,240,63,26,19,8,217,1,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,248,111,133,232,182,192,96,64,26,19,8,217,1,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,217,1,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,100,185,108,196,209,38,64,26,19,8,217,1,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,10,98,248,70,13,43,94,64,26,19,8,217,1,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,217,1,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,217,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,217,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,171,29,18,168,29,10,165,29,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,218,1,16,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,97,97,52,99,56,26,19,8,218,1,16,3,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,218,1,16,4,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,131,28,10,6,112,111,105,110,116,115,18,248,27,18,245,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,135,64,26,19,8,218,1,16,7,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,218,1,16,8,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,6,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,135,64,26,19,8,218,1,16,10,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,115,64,26,19,8,218,1,16,11,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,9,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,135,64,26,19,8,218,1,16,13,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,116,64,26,19,8,218,1,16,14,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,12,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,135,64,26,19,8,218,1,16,16,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,116,64,26,19,8,218,1,16,17,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,15,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,133,64,26,19,8,218,1,16,19,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,117,64,26,19,8,218,1,16,20,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,18,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,132,64,26,19,8,218,1,16,22,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,117,64,26,19,8,218,1,16,23,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,21,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,132,64,26,19,8,218,1,16,25,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,118,64,26,19,8,218,1,16,26,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,24,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,132,64,26,19,8,218,1,16,28,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,118,64,26,19,8,218,1,16,29,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,27,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,133,64,26,19,8,218,1,16,31,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,119,64,26,19,8,218,1,16,32,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,30,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,134,64,26,19,8,218,1,16,34,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,120,64,26,19,8,218,1,16,35,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,33,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,134,64,26,19,8,218,1,16,37,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,120,64,26,19,8,218,1,16,38,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,36,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,134,64,26,19,8,218,1,16,40,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,121,64,26,19,8,218,1,16,41,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,39,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,134,64,26,19,8,218,1,16,43,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,122,64,26,19,8,218,1,16,44,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,42,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,134,64,26,19,8,218,1,16,46,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,124,64,26,19,8,218,1,16,47,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,45,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,134,64,26,19,8,218,1,16,49,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,125,64,26,19,8,218,1,16,50,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,48,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,133,64,26,19,8,218,1,16,52,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,126,64,26,19,8,218,1,16,53,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,51,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,134,64,26,19,8,218,1,16,55,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,128,64,26,19,8,218,1,16,56,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,54,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,134,64,26,19,8,218,1,16,58,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,129,64,26,19,8,218,1,16,59,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,57,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,134,64,26,19,8,218,1,16,61,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,129,64,26,19,8,218,1,16,62,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,60,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,134,64,26,19,8,218,1,16,64,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,130,64,26,19,8,218,1,16,65,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,63,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,134,64,26,19,8,218,1,16,67,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,130,64,26,19,8,218,1,16,68,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,66,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,134,64,26,19,8,218,1,16,70,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,130,64,26,19,8,218,1,16,71,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,69,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,131,64,26,19,8,218,1,16,73,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,131,64,26,19,8,218,1,16,74,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,72,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,130,64,26,19,8,218,1,16,76,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,140,64,26,19,8,218,1,16,77,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,75,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,130,64,26,19,8,218,1,16,79,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,140,64,26,19,8,218,1,16,80,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,78,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,132,64,26,19,8,218,1,16,82,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,140,64,26,19,8,218,1,16,83,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,81,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,140,64,26,19,8,218,1,16,86,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,132,64,26,19,8,218,1,16,85,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,84,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,127,64,26,19,8,218,1,16,88,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,138,64,26,19,8,218,1,16,89,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,87,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,127,64,26,19,8,218,1,16,91,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,137,64,26,19,8,218,1,16,92,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,90,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,127,64,26,19,8,218,1,16,94,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,134,64,26,19,8,218,1,16,95,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,93,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,123,64,26,19,8,218,1,16,97,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,128,64,26,19,8,218,1,16,98,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,96,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,127,64,26,19,8,218,1,16,100,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,120,64,26,19,8,218,1,16,101,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,99,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,5,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,218,1,16,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,136,18,18,133,18,10,130,18,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,54,101,97,98,54,26,19,8,215,1,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,215,1,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,224,16,10,6,112,111,105,110,116,115,18,213,16,18,210,16,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,134,64,26,19,8,215,1,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,113,64,26,19,8,215,1,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,133,64,26,19,8,215,1,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,113,64,26,19,8,215,1,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,132,64,26,19,8,215,1,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,111,64,26,19,8,215,1,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,104,64,26,19,8,215,1,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,132,64,26,19,8,215,1,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,132,64,26,19,8,215,1,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,99,64,26,19,8,215,1,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,133,64,26,19,8,215,1,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,95,64,26,19,8,215,1,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,134,64,26,19,8,215,1,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,90,64,26,19,8,215,1,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,91,64,26,19,8,215,1,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,135,64,26,19,8,215,1,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,135,64,26,19,8,215,1,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,96,64,26,19,8,215,1,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,136,64,26,19,8,215,1,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,104,64,26,19,8,215,1,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,102,64,26,19,8,215,1,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,128,64,26,19,8,215,1,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,133,64,26,19,8,215,1,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,96,64,26,19,8,215,1,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,134,64,26,19,8,215,1,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,102,64,26,19,8,215,1,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,133,64,26,19,8,215,1,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,113,64,26,19,8,215,1,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,131,64,26,19,8,215,1,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,117,64,26,19,8,215,1,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,118,64,26,19,8,215,1,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,129,64,26,19,8,215,1,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,128,64,26,19,8,215,1,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,110,64,26,19,8,215,1,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,128,64,26,19,8,215,1,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,101,64,26,19,8,215,1,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,129,64,26,19,8,215,1,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,91,64,26,19,8,215,1,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,215,1,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,215,1,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,179,51,18,176,51,10,173,51,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,54,101,97,98,54,26,19,8,219,1,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,219,1,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,139,50,10,6,112,111,105,110,116,115,18,128,50,18,253,49,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,137,64,26,19,8,219,1,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,112,64,26,19,8,219,1,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,143,64,26,19,8,219,1,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,98,64,26,19,8,219,1,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,143,64,26,19,8,219,1,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,101,64,26,19,8,219,1,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,136,64,26,19,8,219,1,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,116,64,26,19,8,219,1,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,136,64,26,19,8,219,1,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,219,1,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,136,64,26,19,8,219,1,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,103,64,26,19,8,219,1,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,137,64,26,19,8,219,1,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,99,64,26,19,8,219,1,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,144,64,26,19,8,219,1,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,101,64,26,19,8,219,1,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,144,64,26,19,8,219,1,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,104,64,26,19,8,219,1,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,145,64,26,19,8,219,1,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,107,64,26,19,8,219,1,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,145,64,26,19,8,219,1,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,110,64,26,19,8,219,1,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,145,64,26,19,8,219,1,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,114,64,26,19,8,219,1,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,145,64,26,19,8,219,1,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,116,64,26,19,8,219,1,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,145,64,26,19,8,219,1,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,118,64,26,19,8,219,1,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,145,64,26,19,8,219,1,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,122,64,26,19,8,219,1,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,143,64,26,19,8,219,1,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,127,64,26,19,8,219,1,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,128,64,26,19,8,219,1,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,142,64,26,19,8,219,1,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,141,64,26,19,8,219,1,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,128,64,26,19,8,219,1,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,137,64,26,19,8,219,1,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,128,64,26,19,8,219,1,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,137,64,26,19,8,219,1,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,128,64,26,19,8,219,1,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,136,64,26,19,8,219,1,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,126,64,26,19,8,219,1,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,124,64,26,19,8,219,1,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,136,64,26,19,8,219,1,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,121,64,26,19,8,219,1,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,136,64,26,19,8,219,1,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,136,64,26,19,8,219,1,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,116,64,26,19,8,219,1,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,137,64,26,19,8,219,1,16,79,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,109,64,26,19,8,219,1,16,80,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,78,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,139,64,26,19,8,219,1,16,82,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,104,64,26,19,8,219,1,16,83,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,81,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,141,64,26,19,8,219,1,16,85,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,98,64,26,19,8,219,1,16,86,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,84,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,143,64,26,19,8,219,1,16,88,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,96,64,26,19,8,219,1,16,89,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,87,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,144,64,26,19,8,219,1,16,91,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,96,64,26,19,8,219,1,16,92,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,90,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,145,64,26,19,8,219,1,16,94,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,97,64,26,19,8,219,1,16,95,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,93,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,146,64,26,19,8,219,1,16,97,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,219,1,16,98,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,96,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,106,64,26,19,8,219,1,16,101,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,147,64,26,19,8,219,1,16,100,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,99,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,147,64,26,19,8,219,1,16,103,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,113,64,26,19,8,219,1,16,104,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,102,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,147,64,26,19,8,219,1,16,106,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,121,64,26,19,8,219,1,16,107,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,105,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,146,64,26,19,8,219,1,16,109,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,219,1,16,110,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,108,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,146,64,26,19,8,219,1,16,112,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,129,64,26,19,8,219,1,16,113,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,111,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,145,64,26,19,8,219,1,16,115,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,130,64,26,19,8,219,1,16,116,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,114,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,144,64,26,19,8,219,1,16,118,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,131,64,26,19,8,219,1,16,119,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,117,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,141,64,26,19,8,219,1,16,121,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,131,64,26,19,8,219,1,16,122,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,120,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,128,64,26,19,8,219,1,16,125,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,139,64,26,19,8,219,1,16,124,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,123,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,138,64,26,19,8,219,1,16,127,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,116,64,26,20,8,219,1,16,128,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,126,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,139,64,26,20,8,219,1,16,130,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,95,64,26,20,8,219,1,16,131,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,129,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,20,144,64,26,20,8,219,1,16,133,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,28,192,26,20,8,219,1,16,134,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,132,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,146,64,26,20,8,219,1,16,136,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,49,192,26,20,8,219,1,16,137,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,135,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,151,64,26,20,8,219,1,16,139,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,94,64,26,20,8,219,1,16,140,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,138,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,152,64,26,20,8,219,1,16,142,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,115,64,26,20,8,219,1,16,143,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,141,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,151,64,26,20,8,219,1,16,145,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,127,64,26,20,8,219,1,16,146,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,144,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,147,64,26,20,8,219,1,16,148,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,131,64,26,20,8,219,1,16,149,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,147,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,143,64,26,20,8,219,1,16,151,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,131,64,26,20,8,219,1,16,152,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,150,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,141,64,26,20,8,219,1,16,154,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,129,64,26,20,8,219,1,16,155,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,153,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,142,64,26,20,8,219,1,16,157,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,117,64,26,20,8,219,1,16,158,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,156,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,146,64,26,20,8,219,1,16,160,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,102,64,26,20,8,219,1,16,161,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,159,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,148,64,26,20,8,219,1,16,163,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,101,64,26,20,8,219,1,16,164,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,162,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,148,64,26,20,8,219,1,16,166,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,109,64,26,20,8,219,1,16,167,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,165,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,146,64,26,20,8,219,1,16,169,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,121,64,26,20,8,219,1,16,170,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,168,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,125,64,26,20,8,219,1,16,173,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,144,64,26,20,8,219,1,16,172,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,171,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,142,64,26,20,8,219,1,16,175,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,124,64,26,20,8,219,1,16,176,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,219,1,16,174,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,219,1,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,219,1,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,220,1,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,54,50,97,49,51,26,19,8,220,1,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,220,1,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,53,192,26,19,8,220,1,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,153,64,26,19,8,220,1,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,220,1,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,153,64,26,19,8,220,1,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,110,64,26,19,8,220,1,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,220,1,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,220,1,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,220,1,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,222,1,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,56,52,53,55,98,26,19,8,222,1,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,222,1,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,148,64,26,19,8,222,1,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,78,64,26,19,8,222,1,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,222,1,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,146,64,26,19,8,222,1,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,79,64,26,19,8,222,1,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,222,1,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,146,64,26,19,8,222,1,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,88,64,26,19,8,222,1,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,222,1,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,146,64,26,19,8,222,1,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,94,64,26,19,8,222,1,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,222,1,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,147,64,26,19,8,222,1,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,96,64,26,19,8,222,1,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,222,1,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,148,64,26,19,8,222,1,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,93,64,26,19,8,222,1,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,222,1,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,79,64,26,19,8,222,1,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,148,64,26,19,8,222,1,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,222,1,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,222,1,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,222,1,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,238,12,18,235,12,10,232,12,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,223,1,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,54,50,97,49,51,26,19,8,223,1,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,223,1,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,153,64,26,19,8,223,1,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,49,192,26,19,8,223,1,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,159,64,26,19,8,223,1,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,49,192,26,19,8,223,1,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,159,64,26,19,8,223,1,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,223,1,16,14,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,159,64,26,19,8,223,1,16,16,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,103,64,26,19,8,223,1,16,17,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,15,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,159,64,26,19,8,223,1,16,19,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,110,64,26,19,8,223,1,16,20,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,18,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,159,64,26,19,8,223,1,16,22,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,111,64,26,19,8,223,1,16,23,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,21,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,158,64,26,19,8,223,1,16,25,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,111,64,26,19,8,223,1,16,26,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,24,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,110,64,26,19,8,223,1,16,29,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,157,64,26,19,8,223,1,16,28,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,27,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,156,64,26,19,8,223,1,16,31,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,108,64,26,19,8,223,1,16,32,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,30,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,154,64,26,19,8,223,1,16,34,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,106,64,26,19,8,223,1,16,35,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,33,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,152,64,26,19,8,223,1,16,37,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,223,1,16,38,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,36,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,152,64,26,19,8,223,1,16,40,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,223,1,16,41,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,39,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,152,64,26,19,8,223,1,16,43,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,103,64,26,19,8,223,1,16,44,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,42,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,223,1,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,159,85,18,156,85,10,153,85,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,224,1,16,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,97,97,52,99,56,26,19,8,224,1,16,3,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,224,1,16,4,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,247,83,10,6,112,111,105,110,116,115,18,236,83,18,233,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,135,64,26,19,8,224,1,16,7,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,137,64,26,19,8,224,1,16,8,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,6,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,137,64,26,19,8,224,1,16,11,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,135,64,26,19,8,224,1,16,10,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,9,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,135,64,26,19,8,224,1,16,13,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,138,64,26,19,8,224,1,16,14,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,12,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,137,64,26,19,8,224,1,16,16,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,139,64,26,19,8,224,1,16,17,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,15,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,138,64,26,19,8,224,1,16,19,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,139,64,26,19,8,224,1,16,20,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,18,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,138,64,26,19,8,224,1,16,22,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,140,64,26,19,8,224,1,16,23,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,21,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,138,64,26,19,8,224,1,16,25,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,140,64,26,19,8,224,1,16,26,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,24,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,138,64,26,19,8,224,1,16,28,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,141,64,26,19,8,224,1,16,29,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,27,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,138,64,26,19,8,224,1,16,31,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,141,64,26,19,8,224,1,16,32,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,30,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,138,64,26,19,8,224,1,16,34,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,141,64,26,19,8,224,1,16,35,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,33,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,142,64,26,19,8,224,1,16,38,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,137,64,26,19,8,224,1,16,37,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,36,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,136,64,26,19,8,224,1,16,40,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,142,64,26,19,8,224,1,16,41,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,39,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,135,64,26,19,8,224,1,16,43,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,142,64,26,19,8,224,1,16,44,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,42,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,142,64,26,19,8,224,1,16,47,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,133,64,26,19,8,224,1,16,46,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,45,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,132,64,26,19,8,224,1,16,49,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,142,64,26,19,8,224,1,16,50,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,48,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,130,64,26,19,8,224,1,16,52,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,142,64,26,19,8,224,1,16,53,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,51,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,128,64,26,19,8,224,1,16,55,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,141,64,26,19,8,224,1,16,56,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,54,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,124,64,26,19,8,224,1,16,58,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,140,64,26,19,8,224,1,16,59,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,57,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,123,64,26,19,8,224,1,16,61,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,140,64,26,19,8,224,1,16,62,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,60,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,123,64,26,19,8,224,1,16,64,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,140,64,26,19,8,224,1,16,65,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,63,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,123,64,26,19,8,224,1,16,67,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,139,64,26,19,8,224,1,16,68,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,66,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,123,64,26,19,8,224,1,16,70,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,138,64,26,19,8,224,1,16,71,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,69,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,123,64,26,19,8,224,1,16,73,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,137,64,26,19,8,224,1,16,74,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,72,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,124,64,26,19,8,224,1,16,76,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,136,64,26,19,8,224,1,16,77,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,75,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,128,64,26,19,8,224,1,16,79,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,133,64,26,19,8,224,1,16,80,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,78,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,129,64,26,19,8,224,1,16,82,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,132,64,26,19,8,224,1,16,83,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,81,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,131,64,26,19,8,224,1,16,86,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,130,64,26,19,8,224,1,16,85,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,84,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,131,64,26,19,8,224,1,16,88,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,130,64,26,19,8,224,1,16,89,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,87,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,132,64,26,19,8,224,1,16,91,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,130,64,26,19,8,224,1,16,92,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,90,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,224,1,16,94,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,130,64,26,19,8,224,1,16,95,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,93,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,134,64,26,19,8,224,1,16,97,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,131,64,26,19,8,224,1,16,98,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,96,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,136,64,26,19,8,224,1,16,100,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,131,64,26,19,8,224,1,16,101,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,99,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,136,64,26,19,8,224,1,16,103,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,128,64,26,19,8,224,1,16,104,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,102,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,136,64,26,19,8,224,1,16,106,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,126,64,26,19,8,224,1,16,107,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,105,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,135,64,26,19,8,224,1,16,109,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,125,64,26,19,8,224,1,16,110,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,108,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,124,64,26,19,8,224,1,16,113,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,135,64,26,19,8,224,1,16,112,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,111,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,132,64,26,19,8,224,1,16,115,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,118,64,26,19,8,224,1,16,116,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,114,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,131,64,26,19,8,224,1,16,118,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,117,64,26,19,8,224,1,16,119,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,117,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,129,64,26,19,8,224,1,16,121,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,116,64,26,19,8,224,1,16,122,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,120,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,127,64,26,19,8,224,1,16,124,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,116,64,26,19,8,224,1,16,125,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,123,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,126,64,26,19,8,224,1,16,127,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,117,64,26,20,8,224,1,16,128,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,126,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,123,64,26,20,8,224,1,16,130,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,118,64,26,20,8,224,1,16,131,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,129,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,120,64,26,20,8,224,1,16,134,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,121,64,26,20,8,224,1,16,133,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,132,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,120,64,26,20,8,224,1,16,136,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,126,64,26,20,8,224,1,16,137,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,135,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,120,64,26,20,8,224,1,16,139,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,127,64,26,20,8,224,1,16,140,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,138,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,120,64,26,20,8,224,1,16,142,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,128,64,26,20,8,224,1,16,143,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,141,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,121,64,26,20,8,224,1,16,145,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,128,64,26,20,8,224,1,16,146,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,144,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,123,64,26,20,8,224,1,16,148,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,130,64,26,20,8,224,1,16,149,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,147,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,124,64,26,20,8,224,1,16,151,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,130,64,26,20,8,224,1,16,152,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,150,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,126,64,26,20,8,224,1,16,154,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,24,131,64,26,20,8,224,1,16,155,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,153,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,131,64,26,20,8,224,1,16,157,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,184,132,64,26,20,8,224,1,16,158,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,156,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,134,64,26,20,8,224,1,16,160,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,133,64,26,20,8,224,1,16,161,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,159,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,137,64,26,20,8,224,1,16,163,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,135,64,26,20,8,224,1,16,164,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,162,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,140,64,26,20,8,224,1,16,166,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,135,64,26,20,8,224,1,16,167,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,165,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,140,64,26,20,8,224,1,16,169,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,136,64,26,20,8,224,1,16,170,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,168,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,140,64,26,20,8,224,1,16,172,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,184,136,64,26,20,8,224,1,16,173,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,171,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,139,64,26,20,8,224,1,16,175,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,248,138,64,26,20,8,224,1,16,176,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,174,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,136,64,26,20,8,224,1,16,178,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,139,64,26,20,8,224,1,16,179,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,177,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,129,64,26,20,8,224,1,16,181,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,139,64,26,20,8,224,1,16,182,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,180,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,126,64,26,20,8,224,1,16,184,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,139,64,26,20,8,224,1,16,185,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,183,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,122,64,26,20,8,224,1,16,187,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,168,138,64,26,20,8,224,1,16,188,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,186,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,137,64,26,20,8,224,1,16,191,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,120,64,26,20,8,224,1,16,190,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,189,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,119,64,26,20,8,224,1,16,193,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,136,64,26,20,8,224,1,16,194,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,192,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,115,64,26,20,8,224,1,16,196,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,133,64,26,20,8,224,1,16,197,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,195,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,115,64,26,20,8,224,1,16,199,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,131,64,26,20,8,224,1,16,200,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,198,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,131,64,26,20,8,224,1,16,203,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,115,64,26,20,8,224,1,16,202,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,201,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,116,64,26,20,8,224,1,16,205,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,130,64,26,20,8,224,1,16,206,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,204,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,117,64,26,20,8,224,1,16,208,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,129,64,26,20,8,224,1,16,209,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,207,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,126,64,26,20,8,224,1,16,211,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,126,64,26,20,8,224,1,16,212,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,210,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,126,64,26,20,8,224,1,16,214,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,126,64,26,20,8,224,1,16,215,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,213,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,120,64,26,20,8,224,1,16,217,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,125,64,26,20,8,224,1,16,218,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,216,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,118,64,26,20,8,224,1,16,220,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,125,64,26,20,8,224,1,16,221,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,219,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,125,64,26,20,8,224,1,16,224,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,121,64,26,20,8,224,1,16,223,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,222,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,121,64,26,20,8,224,1,16,226,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,125,64,26,20,8,224,1,16,227,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,225,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,126,64,26,20,8,224,1,16,229,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,118,64,26,20,8,224,1,16,230,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,228,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,127,64,26,20,8,224,1,16,232,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,116,64,26,20,8,224,1,16,233,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,231,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,114,64,26,20,8,224,1,16,236,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,128,64,26,20,8,224,1,16,235,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,234,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,129,64,26,20,8,224,1,16,238,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,111,64,26,20,8,224,1,16,239,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,237,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,130,64,26,20,8,224,1,16,241,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,107,64,26,20,8,224,1,16,242,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,240,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,130,64,26,20,8,224,1,16,244,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,101,64,26,20,8,224,1,16,245,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,243,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,130,64,26,20,8,224,1,16,247,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,101,64,26,20,8,224,1,16,248,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,246,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,129,64,26,20,8,224,1,16,250,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,98,64,26,20,8,224,1,16,251,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,249,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,128,64,26,20,8,224,1,16,253,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,93,64,26,20,8,224,1,16,254,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,252,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,128,64,26,20,8,224,1,16,128,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,91,64,26,20,8,224,1,16,129,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,255,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,129,64,26,20,8,224,1,16,131,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,88,64,26,20,8,224,1,16,132,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,130,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,129,64,26,20,8,224,1,16,134,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,84,64,26,20,8,224,1,16,135,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,133,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,130,64,26,20,8,224,1,16,137,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,68,64,26,20,8,224,1,16,138,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,136,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,66,64,26,20,8,224,1,16,141,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,130,64,26,20,8,224,1,16,140,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,139,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,68,64,26,20,8,224,1,16,144,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,128,64,26,20,8,224,1,16,143,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,142,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,127,64,26,20,8,224,1,16,146,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,69,64,26,20,8,224,1,16,147,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,145,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,119,64,26,20,8,224,1,16,149,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,122,64,26,20,8,224,1,16,150,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,148,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,119,64,26,20,8,224,1,16,152,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,122,64,26,20,8,224,1,16,153,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,151,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,124,64,26,20,8,224,1,16,155,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,129,64,26,20,8,224,1,16,156,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,154,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,126,64,26,20,8,224,1,16,158,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,129,64,26,20,8,224,1,16,159,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,157,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,140,64,26,20,8,224,1,16,161,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,140,64,26,20,8,224,1,16,162,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,20,8,224,1,16,160,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,5,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,224,1,16,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,255,11,18,252,11,10,249,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,224,1,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,54,50,97,49,51,26,19,8,224,1,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,224,1,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,215,10,10,6,112,111,105,110,116,115,18,204,10,18,201,10,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,154,64,26,19,8,224,1,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,123,64,26,19,8,224,1,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,224,1,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,154,64,26,19,8,224,1,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,134,64,26,19,8,224,1,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,224,1,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,134,64,26,19,8,224,1,16,14,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,157,64,26,19,8,224,1,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,224,1,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,133,64,26,19,8,224,1,16,17,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,157,64,26,19,8,224,1,16,16,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,224,1,16,15,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,157,64,26,19,8,224,1,16,19,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,224,1,16,20,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,224,1,16,18,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,156,64,26,19,8,224,1,16,22,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,129,64,26,19,8,224,1,16,23,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,224,1,16,21,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,156,64,26,19,8,224,1,16,25,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,128,64,26,19,8,224,1,16,26,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,224,1,16,24,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,156,64,26,19,8,224,1,16,28,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,126,64,26,19,8,224,1,16,29,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,224,1,16,27,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,156,64,26,19,8,224,1,16,31,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,126,64,26,19,8,224,1,16,32,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,224,1,16,30,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,156,64,26,19,8,224,1,16,34,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,125,64,26,19,8,224,1,16,35,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,224,1,16,33,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,155,64,26,19,8,224,1,16,37,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,125,64,26,19,8,224,1,16,38,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,224,1,16,36,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,153,64,26,19,8,224,1,16,40,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,124,64,26,19,8,224,1,16,41,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,224,1,16,39,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,224,1,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,224,1,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,231,32,18,228,32,10,225,32,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,225,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,100,97,98,51,101,26,19,8,225,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,225,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,191,31,10,6,112,111,105,110,116,115,18,180,31,18,177,31,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,133,64,26,19,8,225,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,57,192,26,19,8,225,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,133,64,26,19,8,225,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,65,192,26,19,8,225,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,131,64,26,19,8,225,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,78,192,26,19,8,225,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,130,64,26,19,8,225,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,81,192,26,19,8,225,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,130,64,26,19,8,225,1,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,81,192,26,19,8,225,1,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,74,192,26,19,8,225,1,16,23,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,130,64,26,19,8,225,1,16,22,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,21,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,56,192,26,19,8,225,1,16,26,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,130,64,26,19,8,225,1,16,25,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,24,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,225,1,16,28,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,44,192,26,19,8,225,1,16,29,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,27,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,131,64,26,19,8,225,1,16,31,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,40,192,26,19,8,225,1,16,32,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,30,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,132,64,26,19,8,225,1,16,34,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,46,192,26,19,8,225,1,16,35,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,33,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,132,64,26,19,8,225,1,16,37,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,54,192,26,19,8,225,1,16,38,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,36,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,132,64,26,19,8,225,1,16,40,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,191,26,19,8,225,1,16,41,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,39,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,63,26,19,8,225,1,16,44,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,132,64,26,19,8,225,1,16,43,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,42,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,132,64,26,19,8,225,1,16,46,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,63,26,19,8,225,1,16,47,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,45,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,132,64,26,19,8,225,1,16,49,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,192,26,19,8,225,1,16,50,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,48,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,133,64,26,19,8,225,1,16,52,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,38,192,26,19,8,225,1,16,53,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,51,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,133,64,26,19,8,225,1,16,55,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,32,64,26,19,8,225,1,16,56,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,54,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,133,64,26,19,8,225,1,16,58,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,50,64,26,19,8,225,1,16,59,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,57,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,134,64,26,19,8,225,1,16,61,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,34,64,26,19,8,225,1,16,62,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,60,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,134,64,26,19,8,225,1,16,64,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,16,192,26,19,8,225,1,16,65,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,63,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,134,64,26,19,8,225,1,16,67,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,32,192,26,19,8,225,1,16,68,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,66,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,134,64,26,19,8,225,1,16,70,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,55,192,26,19,8,225,1,16,71,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,69,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,134,64,26,19,8,225,1,16,73,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,69,192,26,19,8,225,1,16,74,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,72,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,133,64,26,19,8,225,1,16,76,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,88,192,26,19,8,225,1,16,77,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,75,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,133,64,26,19,8,225,1,16,79,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,86,192,26,19,8,225,1,16,80,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,78,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,132,64,26,19,8,225,1,16,82,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,81,192,26,19,8,225,1,16,83,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,81,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,133,64,26,19,8,225,1,16,85,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,77,192,26,19,8,225,1,16,86,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,84,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,133,64,26,19,8,225,1,16,88,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,74,192,26,19,8,225,1,16,89,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,87,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,133,64,26,19,8,225,1,16,91,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,76,192,26,19,8,225,1,16,92,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,90,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,79,192,26,19,8,225,1,16,95,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,133,64,26,19,8,225,1,16,94,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,93,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,133,64,26,19,8,225,1,16,97,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,82,192,26,19,8,225,1,16,98,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,96,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,132,64,26,19,8,225,1,16,100,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,93,192,26,19,8,225,1,16,101,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,99,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,131,64,26,19,8,225,1,16,103,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,98,192,26,19,8,225,1,16,104,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,102,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,131,64,26,19,8,225,1,16,106,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,98,192,26,19,8,225,1,16,107,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,105,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,130,64,26,19,8,225,1,16,109,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,97,192,26,19,8,225,1,16,110,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,108,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,130,64,26,19,8,225,1,16,112,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,96,192,26,19,8,225,1,16,113,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,111,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,225,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,209,57,18,206,57,10,203,57,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,226,1,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,54,101,97,98,54,26,19,8,226,1,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,226,1,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,169,56,10,6,112,111,105,110,116,115,18,158,56,18,155,56,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,138,64,26,19,8,226,1,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,95,64,26,19,8,226,1,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,136,64,26,19,8,226,1,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,98,64,26,19,8,226,1,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,135,64,26,19,8,226,1,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,99,64,26,19,8,226,1,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,134,64,26,19,8,226,1,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,100,64,26,19,8,226,1,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,132,64,26,19,8,226,1,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,100,64,26,19,8,226,1,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,132,64,26,19,8,226,1,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,99,64,26,19,8,226,1,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,132,64,26,19,8,226,1,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,99,64,26,19,8,226,1,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,132,64,26,19,8,226,1,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,226,1,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,132,64,26,19,8,226,1,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,91,64,26,19,8,226,1,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,134,64,26,19,8,226,1,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,82,64,26,19,8,226,1,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,134,64,26,19,8,226,1,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,74,64,26,19,8,226,1,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,136,64,26,19,8,226,1,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,63,64,26,19,8,226,1,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,137,64,26,19,8,226,1,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,50,64,26,19,8,226,1,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,138,64,26,19,8,226,1,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,49,64,26,19,8,226,1,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,138,64,26,19,8,226,1,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,54,64,26,19,8,226,1,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,138,64,26,19,8,226,1,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,67,64,26,19,8,226,1,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,138,64,26,19,8,226,1,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,89,64,26,19,8,226,1,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,138,64,26,19,8,226,1,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,103,64,26,19,8,226,1,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,137,64,26,19,8,226,1,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,107,64,26,19,8,226,1,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,136,64,26,19,8,226,1,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,113,64,26,19,8,226,1,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,134,64,26,19,8,226,1,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,117,64,26,19,8,226,1,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,132,64,26,19,8,226,1,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,120,64,26,19,8,226,1,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,130,64,26,19,8,226,1,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,121,64,26,19,8,226,1,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,129,64,26,19,8,226,1,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,121,64,26,19,8,226,1,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,129,64,26,19,8,226,1,16,79,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,121,64,26,19,8,226,1,16,80,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,78,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,129,64,26,19,8,226,1,16,82,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,120,64,26,19,8,226,1,16,83,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,81,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,129,64,26,19,8,226,1,16,85,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,115,64,26,19,8,226,1,16,86,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,84,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,129,64,26,19,8,226,1,16,88,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,113,64,26,19,8,226,1,16,89,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,87,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,131,64,26,19,8,226,1,16,91,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,103,64,26,19,8,226,1,16,92,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,90,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,98,64,26,19,8,226,1,16,95,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,132,64,26,19,8,226,1,16,94,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,93,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,134,64,26,19,8,226,1,16,97,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,92,64,26,19,8,226,1,16,98,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,96,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,138,64,26,19,8,226,1,16,100,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,99,64,26,19,8,226,1,16,101,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,99,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,131,64,26,19,8,226,1,16,103,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,118,64,26,19,8,226,1,16,104,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,102,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,126,64,26,19,8,226,1,16,106,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,122,64,26,19,8,226,1,16,107,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,105,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,122,64,26,19,8,226,1,16,109,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,120,64,26,19,8,226,1,16,110,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,108,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,129,64,26,19,8,226,1,16,112,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,105,64,26,19,8,226,1,16,113,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,111,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,133,64,26,19,8,226,1,16,115,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,96,64,26,19,8,226,1,16,116,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,114,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,134,64,26,19,8,226,1,16,118,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,98,64,26,19,8,226,1,16,119,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,117,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,116,64,26,19,8,226,1,16,122,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,130,64,26,19,8,226,1,16,121,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,120,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,121,64,26,19,8,226,1,16,124,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,121,64,26,19,8,226,1,16,125,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,123,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,119,64,26,19,8,226,1,16,127,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,114,64,26,20,8,226,1,16,128,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,126,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,129,64,26,20,8,226,1,16,130,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,79,64,26,20,8,226,1,16,131,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,129,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,132,64,26,20,8,226,1,16,133,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,85,64,26,20,8,226,1,16,134,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,132,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,128,64,26,20,8,226,1,16,136,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,115,64,26,20,8,226,1,16,137,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,135,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,116,64,26,20,8,226,1,16,139,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,123,64,26,20,8,226,1,16,140,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,138,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,113,64,26,20,8,226,1,16,142,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,121,64,26,20,8,226,1,16,143,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,141,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,128,64,26,20,8,226,1,16,145,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,91,64,26,20,8,226,1,16,146,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,144,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,135,64,26,20,8,226,1,16,148,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,90,64,26,20,8,226,1,16,149,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,147,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,133,64,26,20,8,226,1,16,151,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,119,64,26,20,8,226,1,16,152,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,150,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,129,64,26,20,8,226,1,16,154,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,128,64,26,20,8,226,1,16,155,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,153,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,129,64,26,20,8,226,1,16,157,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,127,64,26,20,8,226,1,16,158,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,156,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,139,64,26,20,8,226,1,16,160,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,116,64,26,20,8,226,1,16,161,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,159,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,141,64,26,20,8,226,1,16,163,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,119,64,26,20,8,226,1,16,164,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,162,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,136,64,26,20,8,226,1,16,166,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,130,64,26,20,8,226,1,16,167,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,165,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,132,64,26,20,8,226,1,16,169,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,131,64,26,20,8,226,1,16,170,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,168,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,138,64,26,20,8,226,1,16,172,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,107,64,26,20,8,226,1,16,173,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,171,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,144,64,26,20,8,226,1,16,175,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,99,64,26,20,8,226,1,16,176,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,174,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,143,64,26,20,8,226,1,16,178,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,113,64,26,20,8,226,1,16,179,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,177,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,139,64,26,20,8,226,1,16,181,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,117,64,26,20,8,226,1,16,182,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,180,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,144,64,26,20,8,226,1,16,184,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,108,64,26,20,8,226,1,16,185,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,183,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,106,64,26,20,8,226,1,16,188,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,146,64,26,20,8,226,1,16,187,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,186,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,4,145,64,26,20,8,226,1,16,190,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,124,64,26,20,8,226,1,16,191,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,189,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,144,64,26,20,8,226,1,16,193,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,128,64,26,20,8,226,1,16,194,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,192,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,144,64,26,20,8,226,1,16,196,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,128,64,26,20,8,226,1,16,197,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,20,8,226,1,16,195,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,226,1,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,226,1,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,54,50,97,49,51,26,19,8,226,1,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,226,1,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,118,64,26,19,8,226,1,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,158,64,26,19,8,226,1,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,226,1,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,67,64,26,19,8,226,1,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,226,1,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,158,64,26,19,8,226,1,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,118,64,26,19,8,226,1,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,226,1,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,226,1,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,226,1,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,227,1,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,54,50,97,49,51,26,19,8,227,1,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,227,1,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,118,64,26,19,8,227,1,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,158,64,26,19,8,227,1,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,227,1,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,67,64,26,19,8,227,1,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,227,1,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,158,64,26,19,8,227,1,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,118,64,26,19,8,227,1,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,227,1,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,227,1,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,227,1,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,229,1,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,118,64,26,19,8,229,1,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,158,64,26,19,8,229,1,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,229,1,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,67,64,26,19,8,229,1,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,229,1,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,158,64,26,19,8,229,1,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,118,64,26,19,8,229,1,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,229,1,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,229,1,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,229,1,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,54,50,97,49,51,26,19,8,229,1,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,229,1,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,137,54,18,134,54,10,131,54,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,230,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,100,97,98,51,101,26,19,8,230,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,230,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,225,52,10,6,112,111,105,110,116,115,18,214,52,18,211,52,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,148,64,26,19,8,230,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,131,64,26,19,8,230,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,131,64,26,19,8,230,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,148,64,26,19,8,230,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,148,64,26,19,8,230,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,132,64,26,19,8,230,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,132,64,26,19,8,230,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,148,64,26,19,8,230,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,149,64,26,19,8,230,1,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,132,64,26,19,8,230,1,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,132,64,26,19,8,230,1,16,23,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,149,64,26,19,8,230,1,16,22,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,21,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,149,64,26,19,8,230,1,16,25,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,133,64,26,19,8,230,1,16,26,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,24,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,149,64,26,19,8,230,1,16,28,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,133,64,26,19,8,230,1,16,29,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,27,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,133,64,26,19,8,230,1,16,32,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,149,64,26,19,8,230,1,16,31,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,30,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,149,64,26,19,8,230,1,16,34,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,134,64,26,19,8,230,1,16,35,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,33,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,148,64,26,19,8,230,1,16,37,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,134,64,26,19,8,230,1,16,38,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,36,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,148,64,26,19,8,230,1,16,40,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,134,64,26,19,8,230,1,16,41,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,39,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,148,64,26,19,8,230,1,16,43,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,134,64,26,19,8,230,1,16,44,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,42,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,133,64,26,19,8,230,1,16,47,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,147,64,26,19,8,230,1,16,46,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,45,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,147,64,26,19,8,230,1,16,49,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,133,64,26,19,8,230,1,16,50,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,48,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,147,64,26,19,8,230,1,16,52,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,132,64,26,19,8,230,1,16,53,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,51,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,147,64,26,19,8,230,1,16,55,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,132,64,26,19,8,230,1,16,56,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,54,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,148,64,26,19,8,230,1,16,58,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,132,64,26,19,8,230,1,16,59,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,57,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,148,64,26,19,8,230,1,16,61,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,132,64,26,19,8,230,1,16,62,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,60,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,132,64,26,19,8,230,1,16,65,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,149,64,26,19,8,230,1,16,64,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,63,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,149,64,26,19,8,230,1,16,67,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,230,1,16,68,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,66,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,149,64,26,19,8,230,1,16,70,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,133,64,26,19,8,230,1,16,71,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,69,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,149,64,26,19,8,230,1,16,73,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,133,64,26,19,8,230,1,16,74,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,72,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,149,64,26,19,8,230,1,16,76,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,133,64,26,19,8,230,1,16,77,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,75,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,149,64,26,19,8,230,1,16,79,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,134,64,26,19,8,230,1,16,80,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,78,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,149,64,26,19,8,230,1,16,82,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,134,64,26,19,8,230,1,16,83,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,81,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,149,64,26,19,8,230,1,16,85,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,134,64,26,19,8,230,1,16,86,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,84,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,149,64,26,19,8,230,1,16,88,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,134,64,26,19,8,230,1,16,89,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,87,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,147,64,26,19,8,230,1,16,91,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,134,64,26,19,8,230,1,16,92,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,90,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,147,64,26,19,8,230,1,16,94,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,133,64,26,19,8,230,1,16,95,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,93,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,133,64,26,19,8,230,1,16,98,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,147,64,26,19,8,230,1,16,97,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,96,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,147,64,26,19,8,230,1,16,100,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,133,64,26,19,8,230,1,16,101,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,99,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,147,64,26,19,8,230,1,16,103,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,132,64,26,19,8,230,1,16,104,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,102,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,147,64,26,19,8,230,1,16,106,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,132,64,26,19,8,230,1,16,107,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,105,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,147,64,26,19,8,230,1,16,109,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,130,64,26,19,8,230,1,16,110,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,108,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,147,64,26,19,8,230,1,16,112,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,130,64,26,19,8,230,1,16,113,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,111,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,148,64,26,19,8,230,1,16,115,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,130,64,26,19,8,230,1,16,116,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,114,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,148,64,26,19,8,230,1,16,118,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,129,64,26,19,8,230,1,16,119,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,117,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,148,64,26,19,8,230,1,16,121,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,129,64,26,19,8,230,1,16,122,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,120,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,149,64,26,19,8,230,1,16,124,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,129,64,26,19,8,230,1,16,125,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,123,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,149,64,26,19,8,230,1,16,127,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,130,64,26,20,8,230,1,16,128,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,126,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,149,64,26,20,8,230,1,16,130,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,130,64,26,20,8,230,1,16,131,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,129,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,149,64,26,20,8,230,1,16,133,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,168,131,64,26,20,8,230,1,16,134,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,132,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,149,64,26,20,8,230,1,16,136,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,132,64,26,20,8,230,1,16,137,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,135,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,149,64,26,20,8,230,1,16,139,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,132,64,26,20,8,230,1,16,140,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,138,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,149,64,26,20,8,230,1,16,142,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,134,64,26,20,8,230,1,16,143,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,141,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,148,64,26,20,8,230,1,16,145,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,135,64,26,20,8,230,1,16,146,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,144,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,148,64,26,20,8,230,1,16,148,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,135,64,26,20,8,230,1,16,149,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,147,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,136,64,26,20,8,230,1,16,152,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,147,64,26,20,8,230,1,16,151,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,150,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,147,64,26,20,8,230,1,16,154,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,136,64,26,20,8,230,1,16,155,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,153,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,137,64,26,20,8,230,1,16,158,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,145,64,26,20,8,230,1,16,157,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,156,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,145,64,26,20,8,230,1,16,160,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,136,64,26,20,8,230,1,16,161,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,159,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,136,64,26,20,8,230,1,16,164,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,144,64,26,20,8,230,1,16,163,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,162,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,144,64,26,20,8,230,1,16,166,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,136,64,26,20,8,230,1,16,167,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,165,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,143,64,26,20,8,230,1,16,169,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,135,64,26,20,8,230,1,16,170,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,168,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,134,64,26,20,8,230,1,16,173,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,143,64,26,20,8,230,1,16,172,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,171,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,143,64,26,20,8,230,1,16,175,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,134,64,26,20,8,230,1,16,176,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,174,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,143,64,26,20,8,230,1,16,178,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,133,64,26,20,8,230,1,16,179,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,177,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,143,64,26,20,8,230,1,16,181,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,132,64,26,20,8,230,1,16,182,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,180,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,144,64,26,20,8,230,1,16,184,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,130,64,26,20,8,230,1,16,185,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,230,1,16,183,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,230,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,232,1,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,54,50,97,49,51,26,19,8,232,1,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,232,1,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,158,64,26,19,8,232,1,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,232,1,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,67,64,26,19,8,232,1,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,118,64,26,19,8,232,1,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,232,1,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,158,64,26,19,8,232,1,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,118,64,26,19,8,232,1,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,232,1,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,232,1,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,232,1,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,54,50,97,49,51,26,19,8,233,1,16,3,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,233,1,16,4,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,118,64,26,19,8,233,1,16,6,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,158,64,26,19,8,233,1,16,7,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,233,1,16,8,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,67,64,26,19,8,233,1,16,9,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,233,1,16,5,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,158,64,26,19,8,233,1,16,12,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,118,64,26,19,8,233,1,16,13,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,233,1,16,11,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,233,1,16,10,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,233,1,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,18,19,8,233,1,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,154,30,18,151,30,10,148,30,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,234,1,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,242,28,10,6,112,111,105,110,116,115,18,231,28,18,228,28,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,149,64,26,19,8,234,1,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,133,64,26,19,8,234,1,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,149,64,26,19,8,234,1,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,134,64,26,19,8,234,1,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,149,64,26,19,8,234,1,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,133,64,26,19,8,234,1,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,150,64,26,19,8,234,1,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,132,64,26,19,8,234,1,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,131,64,26,19,8,234,1,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,150,64,26,19,8,234,1,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,151,64,26,19,8,234,1,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,131,64,26,19,8,234,1,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,152,64,26,19,8,234,1,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,131,64,26,19,8,234,1,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,152,64,26,19,8,234,1,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,131,64,26,19,8,234,1,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,151,64,26,19,8,234,1,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,133,64,26,19,8,234,1,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,151,64,26,19,8,234,1,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,134,64,26,19,8,234,1,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,150,64,26,19,8,234,1,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,134,64,26,19,8,234,1,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,149,64,26,19,8,234,1,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,134,64,26,19,8,234,1,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,149,64,26,19,8,234,1,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,133,64,26,19,8,234,1,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,148,64,26,19,8,234,1,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,121,64,26,19,8,234,1,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,149,64,26,19,8,234,1,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,118,64,26,19,8,234,1,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,149,64,26,19,8,234,1,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,117,64,26,19,8,234,1,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,150,64,26,19,8,234,1,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,105,64,26,19,8,234,1,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,152,64,26,19,8,234,1,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,112,64,26,19,8,234,1,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,152,64,26,19,8,234,1,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,114,64,26,19,8,234,1,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,151,64,26,19,8,234,1,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,126,64,26,19,8,234,1,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,147,64,26,19,8,234,1,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,128,64,26,19,8,234,1,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,146,64,26,19,8,234,1,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,124,64,26,19,8,234,1,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,149,64,26,19,8,234,1,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,95,64,26,19,8,234,1,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,150,64,26,19,8,234,1,16,76,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,95,64,26,19,8,234,1,16,77,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,75,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,150,64,26,19,8,234,1,16,79,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,100,64,26,19,8,234,1,16,80,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,78,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,151,64,26,19,8,234,1,16,82,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,109,64,26,19,8,234,1,16,83,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,81,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,150,64,26,19,8,234,1,16,85,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,115,64,26,19,8,234,1,16,86,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,84,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,121,64,26,19,8,234,1,16,89,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,149,64,26,19,8,234,1,16,88,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,87,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,147,64,26,19,8,234,1,16,91,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,124,64,26,19,8,234,1,16,92,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,90,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,124,64,26,19,8,234,1,16,95,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,146,64,26,19,8,234,1,16,94,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,93,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,153,64,26,19,8,234,1,16,97,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,100,64,26,19,8,234,1,16,98,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,96,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,156,64,26,19,8,234,1,16,100,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,113,64,26,19,8,234,1,16,101,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,99,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,156,64,26,19,8,234,1,16,103,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,120,64,26,19,8,234,1,16,104,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,102,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,234,1,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,54,101,97,98,54,26,19,8,234,1,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,234,1,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,234,137,1,18,230,137,1,10,226,137,1,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,235,1,16,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,100,97,98,51,101,26,19,8,235,1,16,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,235,1,16,4,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,191,136,1,10,6,112,111,105,110,116,115,18,179,136,1,18,175,136,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,148,64,26,19,8,235,1,16,7,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,127,64,26,19,8,235,1,16,8,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,6,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,149,64,26,19,8,235,1,16,10,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,128,64,26,19,8,235,1,16,11,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,9,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,150,64,26,19,8,235,1,16,13,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,129,64,26,19,8,235,1,16,14,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,12,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,129,64,26,19,8,235,1,16,17,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,150,64,26,19,8,235,1,16,16,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,15,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,151,64,26,19,8,235,1,16,19,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,131,64,26,19,8,235,1,16,20,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,18,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,151,64,26,19,8,235,1,16,22,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,131,64,26,19,8,235,1,16,23,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,21,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,151,64,26,19,8,235,1,16,25,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,235,1,16,26,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,24,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,151,64,26,19,8,235,1,16,28,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,134,64,26,19,8,235,1,16,29,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,27,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,135,64,26,19,8,235,1,16,32,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,151,64,26,19,8,235,1,16,31,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,30,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,135,64,26,19,8,235,1,16,35,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,150,64,26,19,8,235,1,16,34,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,33,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,136,64,26,19,8,235,1,16,38,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,150,64,26,19,8,235,1,16,37,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,36,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,150,64,26,19,8,235,1,16,40,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,136,64,26,19,8,235,1,16,41,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,39,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,149,64,26,19,8,235,1,16,43,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,136,64,26,19,8,235,1,16,44,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,42,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,148,64,26,19,8,235,1,16,46,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,136,64,26,19,8,235,1,16,47,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,45,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,148,64,26,19,8,235,1,16,49,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,136,64,26,19,8,235,1,16,50,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,48,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,147,64,26,19,8,235,1,16,52,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,135,64,26,19,8,235,1,16,53,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,51,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,134,64,26,19,8,235,1,16,56,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,147,64,26,19,8,235,1,16,55,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,54,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,146,64,26,19,8,235,1,16,58,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,133,64,26,19,8,235,1,16,59,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,57,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,146,64,26,19,8,235,1,16,61,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,133,64,26,19,8,235,1,16,62,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,60,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,146,64,26,19,8,235,1,16,64,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,235,1,16,65,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,63,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,146,64,26,19,8,235,1,16,67,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,131,64,26,19,8,235,1,16,68,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,66,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,146,64,26,19,8,235,1,16,70,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,131,64,26,19,8,235,1,16,71,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,69,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,147,64,26,19,8,235,1,16,73,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,130,64,26,19,8,235,1,16,74,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,72,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,147,64,26,19,8,235,1,16,76,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,130,64,26,19,8,235,1,16,77,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,75,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,148,64,26,19,8,235,1,16,79,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,130,64,26,19,8,235,1,16,80,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,78,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,149,64,26,19,8,235,1,16,82,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,130,64,26,19,8,235,1,16,83,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,81,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,150,64,26,19,8,235,1,16,85,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,130,64,26,19,8,235,1,16,86,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,84,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,150,64,26,19,8,235,1,16,88,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,130,64,26,19,8,235,1,16,89,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,87,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,150,64,26,19,8,235,1,16,91,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,131,64,26,19,8,235,1,16,92,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,90,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,150,64,26,19,8,235,1,16,94,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,235,1,16,95,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,93,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,150,64,26,19,8,235,1,16,97,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,133,64,26,19,8,235,1,16,98,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,96,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,149,64,26,19,8,235,1,16,100,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,134,64,26,19,8,235,1,16,101,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,99,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,149,64,26,19,8,235,1,16,103,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,134,64,26,19,8,235,1,16,104,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,102,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,149,64,26,19,8,235,1,16,106,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,134,64,26,19,8,235,1,16,107,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,105,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,148,64,26,19,8,235,1,16,109,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,134,64,26,19,8,235,1,16,110,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,108,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,147,64,26,19,8,235,1,16,112,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,134,64,26,19,8,235,1,16,113,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,111,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,146,64,26,19,8,235,1,16,115,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,133,64,26,19,8,235,1,16,116,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,114,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,145,64,26,19,8,235,1,16,118,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,131,64,26,19,8,235,1,16,119,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,117,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,144,64,26,19,8,235,1,16,121,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,131,64,26,19,8,235,1,16,122,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,120,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,144,64,26,19,8,235,1,16,124,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,130,64,26,19,8,235,1,16,125,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,123,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,144,64,26,19,8,235,1,16,127,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,129,64,26,20,8,235,1,16,128,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,126,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,144,64,26,20,8,235,1,16,130,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,128,64,26,20,8,235,1,16,131,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,129,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,144,64,26,20,8,235,1,16,133,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,127,64,26,20,8,235,1,16,134,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,132,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,144,64,26,20,8,235,1,16,136,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,125,64,26,20,8,235,1,16,137,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,135,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,144,64,26,20,8,235,1,16,139,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,124,64,26,20,8,235,1,16,140,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,138,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,144,64,26,20,8,235,1,16,142,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,123,64,26,20,8,235,1,16,143,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,141,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,144,64,26,20,8,235,1,16,145,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,123,64,26,20,8,235,1,16,146,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,144,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,123,64,26,20,8,235,1,16,149,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,144,64,26,20,8,235,1,16,148,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,147,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,145,64,26,20,8,235,1,16,151,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,123,64,26,20,8,235,1,16,152,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,150,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,145,64,26,20,8,235,1,16,154,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,124,64,26,20,8,235,1,16,155,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,153,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,145,64,26,20,8,235,1,16,157,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,125,64,26,20,8,235,1,16,158,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,156,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,145,64,26,20,8,235,1,16,160,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,126,64,26,20,8,235,1,16,161,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,159,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,145,64,26,20,8,235,1,16,163,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,127,64,26,20,8,235,1,16,164,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,162,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,128,64,26,20,8,235,1,16,167,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,145,64,26,20,8,235,1,16,166,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,165,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,145,64,26,20,8,235,1,16,169,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,129,64,26,20,8,235,1,16,170,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,168,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,145,64,26,20,8,235,1,16,172,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,129,64,26,20,8,235,1,16,173,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,171,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,145,64,26,20,8,235,1,16,175,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,129,64,26,20,8,235,1,16,176,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,174,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,144,64,26,20,8,235,1,16,178,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,130,64,26,20,8,235,1,16,179,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,177,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,130,64,26,20,8,235,1,16,182,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,143,64,26,20,8,235,1,16,181,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,180,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,143,64,26,20,8,235,1,16,184,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,130,64,26,20,8,235,1,16,185,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,183,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,142,64,26,20,8,235,1,16,187,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,130,64,26,20,8,235,1,16,188,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,186,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,142,64,26,20,8,235,1,16,190,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,129,64,26,20,8,235,1,16,191,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,189,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,142,64,26,20,8,235,1,16,193,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,24,129,64,26,20,8,235,1,16,194,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,192,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,142,64,26,20,8,235,1,16,196,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,128,64,26,20,8,235,1,16,197,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,195,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,142,64,26,20,8,235,1,16,199,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,127,64,26,20,8,235,1,16,200,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,198,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,143,64,26,20,8,235,1,16,202,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,125,64,26,20,8,235,1,16,203,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,201,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,144,64,26,20,8,235,1,16,205,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,123,64,26,20,8,235,1,16,206,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,204,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,144,64,26,20,8,235,1,16,208,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,121,64,26,20,8,235,1,16,209,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,207,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,120,64,26,20,8,235,1,16,212,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,60,145,64,26,20,8,235,1,16,211,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,210,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,145,64,26,20,8,235,1,16,214,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,122,64,26,20,8,235,1,16,215,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,213,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,123,64,26,20,8,235,1,16,218,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,145,64,26,20,8,235,1,16,217,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,216,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,124,64,26,20,8,235,1,16,221,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,145,64,26,20,8,235,1,16,220,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,219,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,126,64,26,20,8,235,1,16,224,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,145,64,26,20,8,235,1,16,223,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,222,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,145,64,26,20,8,235,1,16,226,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,127,64,26,20,8,235,1,16,227,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,225,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,145,64,26,20,8,235,1,16,229,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,127,64,26,20,8,235,1,16,230,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,228,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,144,64,26,20,8,235,1,16,232,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,128,64,26,20,8,235,1,16,233,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,231,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,143,64,26,20,8,235,1,16,235,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,127,64,26,20,8,235,1,16,236,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,234,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,143,64,26,20,8,235,1,16,238,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,126,64,26,20,8,235,1,16,239,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,237,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,142,64,26,20,8,235,1,16,241,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,126,64,26,20,8,235,1,16,242,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,240,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,142,64,26,20,8,235,1,16,244,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,124,64,26,20,8,235,1,16,245,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,243,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,143,64,26,20,8,235,1,16,247,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,123,64,26,20,8,235,1,16,248,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,246,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,143,64,26,20,8,235,1,16,250,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,121,64,26,20,8,235,1,16,251,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,249,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,60,144,64,26,20,8,235,1,16,253,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,119,64,26,20,8,235,1,16,254,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,252,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,144,64,26,20,8,235,1,16,128,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,118,64,26,20,8,235,1,16,129,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,255,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,144,64,26,20,8,235,1,16,131,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,117,64,26,20,8,235,1,16,132,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,130,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,220,144,64,26,20,8,235,1,16,134,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,118,64,26,20,8,235,1,16,135,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,133,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,145,64,26,20,8,235,1,16,137,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,119,64,26,20,8,235,1,16,138,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,136,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,145,64,26,20,8,235,1,16,140,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,120,64,26,20,8,235,1,16,141,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,139,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,145,64,26,20,8,235,1,16,143,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,121,64,26,20,8,235,1,16,144,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,142,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,4,145,64,26,20,8,235,1,16,146,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,122,64,26,20,8,235,1,16,147,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,145,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,144,64,26,20,8,235,1,16,149,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,122,64,26,20,8,235,1,16,150,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,148,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,144,64,26,20,8,235,1,16,152,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,123,64,26,20,8,235,1,16,153,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,151,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,144,64,26,20,8,235,1,16,155,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,122,64,26,20,8,235,1,16,156,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,154,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,122,64,26,20,8,235,1,16,159,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,143,64,26,20,8,235,1,16,158,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,157,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,142,64,26,20,8,235,1,16,161,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,121,64,26,20,8,235,1,16,162,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,160,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,141,64,26,20,8,235,1,16,164,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,120,64,26,20,8,235,1,16,165,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,163,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,141,64,26,20,8,235,1,16,167,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,120,64,26,20,8,235,1,16,168,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,166,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,141,64,26,20,8,235,1,16,170,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,119,64,26,20,8,235,1,16,171,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,169,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,141,64,26,20,8,235,1,16,173,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,117,64,26,20,8,235,1,16,174,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,172,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,141,64,26,20,8,235,1,16,176,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,117,64,26,20,8,235,1,16,177,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,175,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,116,64,26,20,8,235,1,16,180,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,141,64,26,20,8,235,1,16,179,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,178,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,141,64,26,20,8,235,1,16,182,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,115,64,26,20,8,235,1,16,183,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,181,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,142,64,26,20,8,235,1,16,185,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,113,64,26,20,8,235,1,16,186,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,184,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,142,64,26,20,8,235,1,16,188,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,112,64,26,20,8,235,1,16,189,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,187,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,143,64,26,20,8,235,1,16,191,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,110,64,26,20,8,235,1,16,192,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,190,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,110,64,26,20,8,235,1,16,195,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,143,64,26,20,8,235,1,16,194,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,193,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,144,64,26,20,8,235,1,16,197,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,110,64,26,20,8,235,1,16,198,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,196,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,144,64,26,20,8,235,1,16,200,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,112,64,26,20,8,235,1,16,201,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,199,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,144,64,26,20,8,235,1,16,203,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,113,64,26,20,8,235,1,16,204,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,202,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,144,64,26,20,8,235,1,16,206,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,114,64,26,20,8,235,1,16,207,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,205,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,144,64,26,20,8,235,1,16,209,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,116,64,26,20,8,235,1,16,210,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,208,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,117,64,26,20,8,235,1,16,213,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,144,64,26,20,8,235,1,16,212,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,211,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,144,64,26,20,8,235,1,16,215,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,118,64,26,20,8,235,1,16,216,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,214,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,144,64,26,20,8,235,1,16,218,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,120,64,26,20,8,235,1,16,219,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,217,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,144,64,26,20,8,235,1,16,221,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,121,64,26,20,8,235,1,16,222,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,220,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,144,64,26,20,8,235,1,16,224,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,121,64,26,20,8,235,1,16,225,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,223,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,143,64,26,20,8,235,1,16,227,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,121,64,26,20,8,235,1,16,228,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,226,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,142,64,26,20,8,235,1,16,230,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,121,64,26,20,8,235,1,16,231,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,229,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,142,64,26,20,8,235,1,16,233,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,121,64,26,20,8,235,1,16,234,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,232,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,142,64,26,20,8,235,1,16,236,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,121,64,26,20,8,235,1,16,237,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,235,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,143,64,26,20,8,235,1,16,239,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,120,64,26,20,8,235,1,16,240,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,238,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,144,64,26,20,8,235,1,16,242,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,118,64,26,20,8,235,1,16,243,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,241,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,20,145,64,26,20,8,235,1,16,245,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,118,64,26,20,8,235,1,16,246,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,244,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,118,64,26,20,8,235,1,16,249,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,145,64,26,20,8,235,1,16,248,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,247,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,4,146,64,26,20,8,235,1,16,251,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,118,64,26,20,8,235,1,16,252,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,250,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,146,64,26,20,8,235,1,16,254,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,119,64,26,20,8,235,1,16,255,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,253,2,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,146,64,26,20,8,235,1,16,129,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,120,64,26,20,8,235,1,16,130,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,128,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,124,64,26,20,8,235,1,16,133,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,146,64,26,20,8,235,1,16,132,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,131,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,147,64,26,20,8,235,1,16,135,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,127,64,26,20,8,235,1,16,136,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,134,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,128,64,26,20,8,235,1,16,139,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,147,64,26,20,8,235,1,16,138,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,137,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,146,64,26,20,8,235,1,16,141,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,126,64,26,20,8,235,1,16,142,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,140,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,146,64,26,20,8,235,1,16,144,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,124,64,26,20,8,235,1,16,145,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,143,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,146,64,26,20,8,235,1,16,147,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,121,64,26,20,8,235,1,16,148,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,146,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,146,64,26,20,8,235,1,16,150,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,118,64,26,20,8,235,1,16,151,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,149,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,146,64,26,20,8,235,1,16,153,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,115,64,26,20,8,235,1,16,154,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,152,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,146,64,26,20,8,235,1,16,156,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,114,64,26,20,8,235,1,16,157,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,155,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,113,64,26,20,8,235,1,16,160,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,146,64,26,20,8,235,1,16,159,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,158,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,146,64,26,20,8,235,1,16,162,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,113,64,26,20,8,235,1,16,163,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,161,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,147,64,26,20,8,235,1,16,165,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,114,64,26,20,8,235,1,16,166,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,164,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,114,64,26,20,8,235,1,16,169,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,147,64,26,20,8,235,1,16,168,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,167,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,147,64,26,20,8,235,1,16,171,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,115,64,26,20,8,235,1,16,172,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,170,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,147,64,26,20,8,235,1,16,174,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,116,64,26,20,8,235,1,16,175,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,173,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,147,64,26,20,8,235,1,16,177,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,118,64,26,20,8,235,1,16,178,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,176,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,147,64,26,20,8,235,1,16,180,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,120,64,26,20,8,235,1,16,181,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,179,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,123,64,26,20,8,235,1,16,184,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,147,64,26,20,8,235,1,16,183,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,182,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,147,64,26,20,8,235,1,16,186,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,124,64,26,20,8,235,1,16,187,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,185,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,147,64,26,20,8,235,1,16,189,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,125,64,26,20,8,235,1,16,190,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,188,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,147,64,26,20,8,235,1,16,192,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,127,64,26,20,8,235,1,16,193,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,191,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,147,64,26,20,8,235,1,16,195,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,127,64,26,20,8,235,1,16,196,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,194,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,147,64,26,20,8,235,1,16,198,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,128,64,26,20,8,235,1,16,199,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,197,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,128,64,26,20,8,235,1,16,202,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,146,64,26,20,8,235,1,16,201,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,200,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,146,64,26,20,8,235,1,16,204,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,128,64,26,20,8,235,1,16,205,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,203,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,146,64,26,20,8,235,1,16,207,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,127,64,26,20,8,235,1,16,208,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,206,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,145,64,26,20,8,235,1,16,210,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,127,64,26,20,8,235,1,16,211,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,20,8,235,1,16,209,3,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,5,26,12,98,255,26,128,217,176,234,142,137,48,70,241,18,19,8,235,1,16,1,26,12,98,255,26,128,217,176,234,142,137,48,70,241,10,213,20,18,210,20,10,207,20,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,236,1,16,2,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,97,97,52,99,56,26,19,8,236,1,16,3,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,236,1,16,4,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,173,19,10,6,112,111,105,110,116,115,18,162,19,18,159,19,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,142,64,26,19,8,236,1,16,7,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,139,64,26,19,8,236,1,16,8,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,6,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,142,64,26,19,8,236,1,16,10,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,140,64,26,19,8,236,1,16,11,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,9,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,141,64,26,19,8,236,1,16,13,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,142,64,26,19,8,236,1,16,14,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,12,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,140,64,26,19,8,236,1,16,16,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,142,64,26,19,8,236,1,16,17,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,15,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,141,64,26,19,8,236,1,16,20,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,133,64,26,19,8,236,1,16,19,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,18,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,130,64,26,19,8,236,1,16,22,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,140,64,26,19,8,236,1,16,23,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,21,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,129,64,26,19,8,236,1,16,25,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,139,64,26,19,8,236,1,16,26,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,24,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,115,64,26,19,8,236,1,16,28,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,139,64,26,19,8,236,1,16,29,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,27,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,115,64,26,19,8,236,1,16,31,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,139,64,26,19,8,236,1,16,32,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,30,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,115,64,26,19,8,236,1,16,34,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,140,64,26,19,8,236,1,16,35,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,33,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,119,64,26,19,8,236,1,16,37,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,92,144,64,26,19,8,236,1,16,38,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,36,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,236,1,16,40,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,144,64,26,19,8,236,1,16,41,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,39,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,125,64,26,19,8,236,1,16,43,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,144,64,26,19,8,236,1,16,44,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,42,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,128,64,26,19,8,236,1,16,46,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,172,144,64,26,19,8,236,1,16,47,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,45,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,129,64,26,19,8,236,1,16,49,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,188,144,64,26,19,8,236,1,16,50,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,48,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,129,64,26,19,8,236,1,16,52,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,144,64,26,19,8,236,1,16,53,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,51,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,130,64,26,19,8,236,1,16,55,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,212,144,64,26,19,8,236,1,16,56,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,54,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,138,64,26,19,8,236,1,16,58,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,144,64,26,19,8,236,1,16,59,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,57,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,139,64,26,19,8,236,1,16,61,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,144,64,26,19,8,236,1,16,62,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,60,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,144,64,26,19,8,236,1,16,65,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,140,64,26,19,8,236,1,16,64,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,63,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,140,64,26,19,8,236,1,16,67,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,144,64,26,19,8,236,1,16,68,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,66,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,143,64,26,19,8,236,1,16,70,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,144,64,26,19,8,236,1,16,71,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,69,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,5,26,12,98,255,26,212,217,176,234,142,137,48,119,140,18,19,8,236,1,16,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,161,10,18,158,10,10,155,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,235,1,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,54,101,97,98,54,26,19,8,235,1,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,235,1,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,154,64,26,19,8,235,1,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,82,64,26,19,8,235,1,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,235,1,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,154,64,26,19,8,235,1,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,127,64,26,19,8,235,1,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,235,1,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,153,64,26,19,8,235,1,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,110,64,26,19,8,235,1,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,235,1,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,151,64,26,19,8,235,1,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,86,64,26,19,8,235,1,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,235,1,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,154,64,26,19,8,235,1,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,75,64,26,19,8,235,1,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,235,1,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,154,64,26,19,8,235,1,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,82,64,26,19,8,235,1,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,235,1,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,154,64,26,19,8,235,1,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,90,64,26,19,8,235,1,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,235,1,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,152,64,26,19,8,235,1,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,97,64,26,19,8,235,1,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,235,1,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,149,64,26,19,8,235,1,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,97,64,26,19,8,235,1,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,235,1,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,151,64,26,19,8,235,1,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,78,192,26,19,8,235,1,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,235,1,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,235,1,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,17,18,19,8,235,1,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,17,10,161,10,18,158,10,10,155,10,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,238,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,161,207,140,153,142,97,64,26,19,8,238,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,163,124,70,245,90,78,129,64,26,19,8,238,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,238,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,163,124,70,245,90,78,129,64,26,19,8,238,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,173,40,178,104,34,95,97,64,26,19,8,238,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,238,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,89,246,245,64,105,99,64,26,19,8,238,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,163,124,70,245,90,78,129,64,26,19,8,238,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,238,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,157,244,160,90,59,104,64,26,19,8,238,1,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,24,139,11,173,108,239,128,64,26,19,8,238,1,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,238,1,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,209,129,64,247,154,114,64,26,19,8,238,1,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,208,73,142,83,178,37,128,64,26,19,8,238,1,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,238,1,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,227,88,100,28,128,107,114,64,26,19,8,238,1,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,248,126,186,9,229,108,128,64,26,19,8,238,1,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,238,1,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,163,124,70,245,90,78,129,64,26,19,8,238,1,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,182,146,120,251,198,239,112,64,26,19,8,238,1,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,238,1,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,51,61,134,0,200,250,109,64,26,19,8,238,1,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,160,228,42,77,54,190,130,64,26,19,8,238,1,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,238,1,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,84,27,10,2,22,106,64,26,19,8,238,1,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,165,117,234,183,188,242,131,64,26,19,8,238,1,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,238,1,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,128,106,49,55,249,104,64,26,19,8,238,1,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,156,76,15,165,17,46,132,64,26,19,8,238,1,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,238,1,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,238,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,238,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,238,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,238,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,239,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,239,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,239,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,109,196,104,220,80,203,109,64,26,19,8,239,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,93,52,109,94,2,41,131,64,26,19,8,239,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,239,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,60,243,243,216,46,26,112,64,26,19,8,239,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,183,199,160,221,18,124,131,64,26,19,8,239,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,239,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,224,70,248,8,60,114,64,26,19,8,239,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,116,23,227,238,222,230,131,64,26,19,8,239,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,239,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,239,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,239,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,240,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,240,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,240,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,16,139,133,39,70,116,64,26,19,8,240,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,172,165,33,8,6,19,129,64,26,19,8,240,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,240,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,114,60,231,233,49,19,120,64,26,19,8,240,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,172,165,33,8,6,19,129,64,26,19,8,240,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,240,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,114,60,231,233,49,19,120,64,26,19,8,240,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,222,3,41,209,227,30,129,64,26,19,8,240,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,240,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,23,176,15,168,191,27,117,64,26,19,8,240,1,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,160,228,42,77,54,190,130,64,26,19,8,240,1,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,240,1,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,156,85,138,196,83,114,64,26,19,8,240,1,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,31,21,111,218,84,200,132,64,26,19,8,240,1,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,240,1,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,240,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,240,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,241,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,241,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,241,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,11,146,75,87,100,131,64,26,19,8,241,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,180,243,0,22,4,4,117,64,26,19,8,241,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,241,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,243,11,163,92,19,9,118,64,26,19,8,241,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,165,117,234,183,188,242,131,64,26,19,8,241,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,241,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,167,50,10,91,52,175,118,64,26,19,8,241,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,156,76,15,165,17,46,132,64,26,19,8,241,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,241,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,241,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,241,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,242,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,242,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,242,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,13,225,96,114,179,15,124,64,26,19,8,242,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,163,124,70,245,90,78,129,64,26,19,8,242,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,242,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,13,225,96,114,179,15,124,64,26,19,8,242,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,107,238,7,220,51,34,132,64,26,19,8,242,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,242,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,242,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,242,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,243,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,243,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,243,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,142,170,76,93,134,124,64,26,19,8,243,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,200,25,87,3,105,5,131,64,26,19,8,243,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,243,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,47,230,85,216,156,54,127,64,26,19,8,243,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,200,25,87,3,105,5,131,64,26,19,8,243,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,243,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,243,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,243,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,187,15,18,184,15,10,181,15,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,244,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,244,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,244,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,147,14,10,6,112,111,105,110,116,115,18,136,14,18,133,14,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,153,180,243,252,236,157,133,64,26,19,8,244,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,167,50,10,91,52,175,118,64,26,19,8,244,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,5,94,89,130,105,146,117,64,26,19,8,244,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,202,18,251,197,202,169,133,64,26,19,8,244,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,197,69,183,59,90,141,116,64,26,19,8,244,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,86,4,54,14,185,8,134,64,26,19,8,244,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,205,153,23,227,93,116,64,26,19,8,244,1,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,234,30,76,105,82,44,134,64,26,19,8,244,1,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,100,190,208,139,234,1,135,64,26,19,8,244,1,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,174,98,65,171,125,207,115,64,26,19,8,244,1,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,98,65,171,125,207,115,64,26,19,8,244,1,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,123,161,70,28,199,191,135,64,26,19,8,244,1,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,84,124,243,107,46,116,64,26,19,8,244,1,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,15,188,92,119,96,227,135,64,26,19,8,244,1,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,180,243,0,22,4,4,117,64,26,19,8,244,1,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,163,214,114,210,249,6,136,64,26,19,8,244,1,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,213,52,122,155,215,18,136,64,26,19,8,244,1,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,127,253,221,164,1,104,118,64,26,19,8,244,1,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,208,103,54,17,103,246,118,64,26,19,8,244,1,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,163,214,114,210,249,6,136,64,26,19,8,244,1,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,172,195,201,197,186,227,119,64,26,19,8,244,1,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,73,67,63,83,233,179,135,64,26,19,8,244,1,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,113,19,160,100,90,120,64,26,19,8,244,1,16,40,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,149,28,216,84,200,13,135,64,26,19,8,244,1,16,41,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,39,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,45,34,50,32,114,120,64,26,19,8,244,1,16,43,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,176,151,105,141,201,91,134,64,26,19,8,244,1,16,44,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,42,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,4,54,14,185,8,134,64,26,19,8,244,1,16,47,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,213,248,245,123,237,42,120,64,26,19,8,244,1,16,46,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,45,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,248,156,98,199,153,61,119,64,26,19,8,244,1,16,49,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,202,18,251,197,202,169,133,64,26,19,8,244,1,16,50,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,48,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,185,236,54,189,127,118,64,26,19,8,244,1,16,52,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,54,248,228,106,49,134,133,64,26,19,8,244,1,16,53,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,51,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,244,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,144,11,18,141,11,10,138,11,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,152,124,196,194,77,167,137,64,26,19,8,245,1,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,97,118,120,192,50,159,142,64,26,19,8,245,1,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,245,1,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,165,81,36,116,247,250,144,64,26,19,8,245,1,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,152,124,196,194,77,167,137,64,26,19,8,245,1,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,245,1,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,32,157,254,251,137,122,145,64,26,19,8,245,1,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,90,7,153,24,186,73,142,64,26,19,8,245,1,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,245,1,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,33,137,101,145,173,145,64,26,19,8,245,1,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,128,168,251,242,123,86,142,64,26,19,8,245,1,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,245,1,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,210,89,160,79,120,185,146,64,26,19,8,245,1,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,81,159,230,31,109,240,141,64,26,19,8,245,1,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,245,1,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,156,101,4,252,210,146,64,26,19,8,245,1,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,185,26,92,182,101,189,141,64,26,19,8,245,1,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,245,1,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,61,200,222,189,223,146,64,26,19,8,245,1,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,205,235,89,159,141,23,141,64,26,19,8,245,1,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,245,1,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,61,200,222,189,223,146,64,26,19,8,245,1,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,64,208,26,38,97,229,139,64,26,19,8,245,1,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,245,1,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,135,23,219,154,244,159,146,64,26,19,8,245,1,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,132,171,198,217,37,77,138,64,26,19,8,245,1,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,245,1,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,79,242,132,219,171,147,64,26,19,8,245,1,16,34,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,114,219,97,232,139,154,137,64,26,19,8,245,1,16,35,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,245,1,16,33,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,247,249,105,50,172,30,148,64,26,19,8,245,1,16,37,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,1,248,57,89,70,116,137,64,26,19,8,245,1,16,38,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,245,1,16,36,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,245,1,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,245,1,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,245,1,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,245,1,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,245,1,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,178,9,18,175,9,10,172,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,246,1,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,246,1,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,246,1,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,122,173,246,178,139,247,148,64,26,19,8,246,1,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,226,189,240,127,67,25,139,64,26,19,8,246,1,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,246,1,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,230,91,44,206,156,73,150,64,26,19,8,246,1,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,75,57,102,22,60,230,138,64,26,19,8,246,1,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,246,1,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,121,172,93,187,253,79,150,64,26,19,8,246,1,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,41,253,234,77,29,60,143,64,26,19,8,246,1,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,246,1,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,76,39,158,49,181,151,64,26,19,8,246,1,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,41,253,234,77,29,60,143,64,26,19,8,246,1,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,246,1,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,222,186,37,153,153,34,143,64,26,19,8,246,1,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,142,175,130,49,176,135,152,64,26,19,8,246,1,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,246,1,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,94,81,68,79,129,152,64,26,19,8,246,1,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,241,139,35,130,193,124,142,64,26,19,8,246,1,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,246,1,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,226,189,240,127,67,25,139,64,26,19,8,246,1,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,171,232,50,19,37,59,152,64,26,19,8,246,1,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,246,1,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,147,170,192,245,173,152,64,26,19,8,246,1,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,188,28,142,165,129,12,139,64,26,19,8,246,1,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,246,1,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,23,151,104,46,54,141,153,64,26,19,8,246,1,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,255,246,160,97,184,204,138,64,26,19,8,246,1,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,246,1,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,246,1,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,246,1,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,229,6,18,226,6,10,223,6,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,247,1,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,219,193,82,72,197,18,147,64,26,19,8,247,1,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,233,40,109,84,223,16,144,64,26,19,8,247,1,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,247,1,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,97,110,178,25,121,251,143,64,26,19,8,247,1,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,53,160,35,114,60,178,147,64,26,19,8,247,1,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,247,1,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,79,242,132,219,171,147,64,26,19,8,247,1,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,147,125,92,175,128,246,144,64,26,19,8,247,1,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,247,1,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,45,195,174,82,75,148,64,26,19,8,247,1,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,147,125,92,175,128,246,144,64,26,19,8,247,1,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,247,1,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,138,74,155,31,13,37,148,64,26,19,8,247,1,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,124,121,158,65,64,23,144,64,26,19,8,247,1,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,247,1,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,165,130,178,9,244,48,149,64,26,19,8,247,1,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,124,121,158,65,64,23,144,64,26,19,8,247,1,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,247,1,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,247,1,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,247,1,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,247,1,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,247,1,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,248,1,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,248,1,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,248,1,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,216,191,32,89,169,195,149,64,26,19,8,248,1,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,138,21,170,182,51,157,144,64,26,19,8,248,1,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,248,1,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,216,191,32,89,169,195,149,64,26,19,8,248,1,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,29,102,219,163,148,163,144,64,26,19,8,248,1,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,248,1,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,148,228,116,165,228,91,151,64,26,19,8,248,1,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,29,102,219,163,148,163,144,64,26,19,8,248,1,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,248,1,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,248,1,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,248,1,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,144,11,18,141,11,10,138,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,249,1,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,249,1,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,249,1,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,132,21,169,171,216,80,149,64,26,19,8,249,1,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,52,106,153,17,213,130,145,64,26,19,8,249,1,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,249,1,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,132,21,169,171,216,80,149,64,26,19,8,249,1,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,97,114,21,237,85,65,147,64,26,19,8,249,1,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,249,1,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,22,102,218,152,57,87,149,64,26,19,8,249,1,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,64,5,12,143,58,97,147,64,26,19,8,249,1,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,249,1,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,247,55,67,144,207,150,64,26,19,8,249,1,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,59,209,178,18,148,52,147,64,26,19,8,249,1,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,249,1,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,247,55,67,144,207,150,64,26,19,8,249,1,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,46,53,167,157,160,174,146,64,26,19,8,249,1,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,249,1,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,206,86,213,104,206,194,150,64,26,19,8,249,1,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,141,72,106,59,76,34,146,64,26,19,8,249,1,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,249,1,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,239,195,222,198,233,162,150,64,26,19,8,249,1,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,165,77,193,160,26,169,145,64,26,19,8,249,1,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,249,1,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,16,49,232,36,5,131,150,64,26,19,8,249,1,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,236,91,45,217,247,149,145,64,26,19,8,249,1,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,249,1,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,7,201,53,44,184,41,150,64,26,19,8,249,1,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,236,91,45,217,247,149,145,64,26,19,8,249,1,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,249,1,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,74,163,72,232,238,233,149,64,26,19,8,249,1,16,34,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,127,172,94,198,88,156,145,64,26,19,8,249,1,16,35,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,249,1,16,33,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,234,100,2,65,138,149,64,26,19,8,249,1,16,37,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,94,63,85,104,61,188,145,64,26,19,8,249,1,16,38,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,249,1,16,36,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,249,1,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,249,1,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,152,4,18,149,4,10,146,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,250,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,250,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,171,185,88,108,220,103,64,26,19,8,250,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,68,253,118,164,211,139,109,64,26,19,8,250,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,250,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,84,124,243,107,46,116,64,26,19,8,250,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,68,253,118,164,211,139,109,64,26,19,8,250,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,250,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,244,13,83,217,237,121,64,26,19,8,250,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,207,238,177,236,193,234,109,64,26,19,8,250,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,250,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,250,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,250,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,250,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,204,14,18,201,14,10,198,14,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,251,1,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,251,1,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,251,1,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,152,1,38,196,52,152,64,26,19,8,251,1,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,223,191,33,100,4,16,145,64,26,19,8,251,1,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,232,50,19,37,59,152,64,26,19,8,251,1,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,165,77,193,160,26,169,145,64,26,19,8,251,1,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,57,100,0,134,65,152,64,26,19,8,251,1,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,80,163,73,243,73,54,145,64,26,19,8,251,1,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,152,1,38,196,52,152,64,26,19,8,251,1,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,223,191,33,100,4,16,145,64,26,19,8,251,1,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,232,50,19,37,59,152,64,26,19,8,251,1,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,76,111,240,118,163,9,145,64,26,19,8,251,1,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,57,100,0,134,65,152,64,26,19,8,251,1,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,76,111,240,118,163,9,145,64,26,19,8,251,1,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,223,191,33,100,4,16,145,64,26,19,8,251,1,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,171,232,50,19,37,59,152,64,26,19,8,251,1,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,28,204,90,162,106,97,152,64,26,19,8,251,1,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,223,191,33,100,4,16,145,64,26,19,8,251,1,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,180,80,229,11,114,148,152,64,26,19,8,251,1,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,185,30,191,137,66,3,145,64,26,19,8,251,1,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,57,100,0,134,65,152,64,26,19,8,251,1,16,34,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,223,191,33,100,4,16,145,64,26,19,8,251,1,16,35,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,33,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,137,149,237,230,71,152,64,26,19,8,251,1,16,37,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,76,111,240,118,163,9,145,64,26,19,8,251,1,16,38,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,36,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,76,111,240,118,163,9,145,64,26,19,8,251,1,16,41,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,24,152,1,38,196,52,152,64,26,19,8,251,1,16,40,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,39,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,152,1,38,196,52,152,64,26,19,8,251,1,16,43,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,223,191,33,100,4,16,145,64,26,19,8,251,1,16,44,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,42,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,71,208,56,99,46,152,64,26,19,8,251,1,16,46,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,67,7,62,126,86,176,144,64,26,19,8,251,1,16,47,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,45,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,152,1,38,196,52,152,64,26,19,8,251,1,16,49,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,76,111,240,118,163,9,145,64,26,19,8,251,1,16,50,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,48,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,251,1,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,170,16,18,167,16,10,164,16,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,252,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,252,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,252,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,130,15,10,6,112,111,105,110,116,115,18,247,14,18,244,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,134,177,54,251,62,72,64,26,19,8,252,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,6,142,26,4,166,58,120,64,26,19,8,252,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,132,47,19,232,144,120,74,64,26,19,8,252,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,227,233,173,184,249,39,121,64,26,19,8,252,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,247,158,96,186,223,45,78,64,26,19,8,252,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,250,204,35,73,214,229,121,64,26,19,8,252,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,53,7,87,70,151,241,80,64,26,19,8,252,1,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,34,2,80,255,8,45,122,64,26,19,8,252,1,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,142,244,182,162,70,253,87,64,26,19,8,252,1,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,34,2,80,255,8,45,122,64,26,19,8,252,1,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,93,137,50,219,145,253,121,64,26,19,8,252,1,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,24,71,122,5,114,112,92,64,26,19,8,252,1,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,225,22,255,245,8,95,64,26,19,8,252,1,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,209,151,247,146,163,158,121,64,26,19,8,252,1,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,118,128,101,100,171,98,64,26,19,8,252,1,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,227,233,173,184,249,39,121,64,26,19,8,252,1,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,181,137,170,148,86,100,64,26,19,8,252,1,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,70,166,188,74,181,63,121,64,26,19,8,252,1,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,137,58,131,95,115,101,64,26,19,8,252,1,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,93,137,50,219,145,253,121,64,26,19,8,252,1,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,78,94,235,91,42,144,102,64,26,19,8,252,1,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,75,55,124,181,59,116,122,64,26,19,8,252,1,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,124,36,215,124,227,11,104,64,26,19,8,252,1,16,40,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,115,108,168,107,110,187,122,64,26,19,8,252,1,16,41,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,39,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,113,165,121,37,88,105,64,26,19,8,252,1,16,43,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,17,176,153,217,178,163,122,64,26,19,8,252,1,16,44,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,42,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,254,124,187,151,79,108,64,26,19,8,252,1,16,46,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,250,204,35,73,214,229,121,64,26,19,8,252,1,16,47,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,45,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,167,75,75,184,217,155,109,64,26,19,8,252,1,16,49,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,52,84,6,37,95,182,121,64,26,19,8,252,1,16,50,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,48,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,52,84,6,37,95,182,121,64,26,19,8,252,1,16,53,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,16,153,25,181,27,232,110,64,26,19,8,252,1,16,52,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,51,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,16,153,25,181,27,232,110,64,26,19,8,252,1,16,55,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,151,16,21,183,26,206,121,64,26,19,8,252,1,16,56,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,54,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,252,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,221,13,18,218,13,10,215,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,253,1,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,253,1,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,253,1,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,138,21,170,182,51,157,144,64,26,19,8,253,1,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,115,70,221,177,204,81,143,64,26,19,8,253,1,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,153,231,63,140,142,94,143,64,26,19,8,253,1,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,138,21,170,182,51,157,144,64,26,19,8,253,1,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,153,231,63,140,142,94,143,64,26,19,8,253,1,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,126,171,197,206,202,244,146,64,26,19,8,253,1,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,61,200,222,189,223,146,64,26,19,8,253,1,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,235,90,148,225,105,238,146,64,26,19,8,253,1,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,61,200,222,189,223,146,64,26,19,8,253,1,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,155,228,117,176,63,168,146,64,26,19,8,253,1,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,170,209,60,217,191,146,64,26,19,8,253,1,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,199,186,202,254,53,137,145,64,26,19,8,253,1,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,91,12,149,227,36,55,144,64,26,19,8,253,1,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,101,170,209,60,217,191,146,64,26,19,8,253,1,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,52,179,11,175,121,146,64,26,19,8,253,1,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,91,12,149,227,36,55,144,64,26,19,8,253,1,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,235,94,247,180,70,64,146,64,26,19,8,253,1,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,129,173,247,189,230,67,144,64,26,19,8,253,1,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,138,212,85,108,174,144,64,26,19,8,253,1,16,34,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,29,102,219,163,148,163,144,64,26,19,8,253,1,16,35,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,33,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,41,5,65,18,120,143,64,26,19,8,253,1,16,37,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,109,220,249,212,190,233,144,64,26,19,8,253,1,16,38,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,36,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,153,231,63,140,142,94,143,64,26,19,8,253,1,16,40,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,109,220,249,212,190,233,144,64,26,19,8,253,1,16,41,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,39,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,180,234,101,13,156,214,144,64,26,19,8,253,1,16,44,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,115,70,221,177,204,81,143,64,26,19,8,253,1,16,43,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,42,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,39,4,24,253,72,56,143,64,26,19,8,253,1,16,46,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,33,154,52,32,59,208,144,64,26,19,8,253,1,16,47,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,45,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,253,1,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,178,9,18,175,9,10,172,9,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,254,1,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,254,1,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,20,209,253,232,39,114,135,64,26,19,8,254,1,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,50,101,157,70,106,149,143,64,26,19,8,254,1,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,254,1,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,165,77,193,160,26,169,145,64,26,19,8,254,1,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,20,209,253,232,39,114,135,64,26,19,8,254,1,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,254,1,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,179,188,161,83,238,86,137,64,26,19,8,254,1,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,90,11,252,235,150,143,145,64,26,19,8,254,1,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,254,1,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,6,102,128,9,49,34,139,64,26,19,8,254,1,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,232,39,212,92,81,105,145,64,26,19,8,254,1,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,254,1,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,216,224,204,26,137,138,64,26,19,8,254,1,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,59,205,79,63,183,238,143,64,26,19,8,254,1,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,254,1,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,149,27,24,151,111,138,64,26,19,8,254,1,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,99,111,75,17,7,163,142,64,26,19,8,254,1,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,254,1,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,122,220,158,106,61,137,64,26,19,8,254,1,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,212,82,115,160,76,201,142,64,26,19,8,254,1,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,254,1,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,237,213,89,226,75,135,64,26,19,8,254,1,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,3,92,136,115,91,47,143,64,26,19,8,254,1,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,254,1,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,237,213,89,226,75,135,64,26,19,8,254,1,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,41,253,234,77,29,60,143,64,26,19,8,254,1,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,254,1,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,254,1,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,254,1,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,254,1,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,195,8,18,192,8,10,189,8,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,181,137,170,148,86,100,64,26,19,8,255,1,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,121,2,207,54,4,212,139,64,26,19,8,255,1,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,255,1,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,121,2,207,54,4,212,139,64,26,19,8,255,1,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,39,124,143,69,248,165,111,64,26,19,8,255,1,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,255,1,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,93,248,232,62,24,65,115,64,26,19,8,255,1,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,13,29,229,145,157,247,139,64,26,19,8,255,1,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,255,1,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,53,195,188,136,229,249,114,64,26,19,8,255,1,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,112,217,243,35,89,15,140,64,26,19,8,255,1,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,255,1,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,74,159,100,110,202,114,64,26,19,8,255,1,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,103,176,24,17,174,74,140,64,26,19,8,255,1,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,255,1,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,209,129,64,247,154,114,64,26,19,8,255,1,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,76,53,135,216,172,252,140,64,26,19,8,255,1,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,255,1,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,178,136,208,149,117,47,144,64,26,19,8,255,1,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,70,21,115,174,59,131,114,64,26,19,8,255,1,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,255,1,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,70,21,115,174,59,131,114,64,26,19,8,255,1,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,154,217,76,177,134,41,144,64,26,19,8,255,1,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,255,1,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,255,1,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,255,1,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,255,1,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,255,1,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,255,1,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,161,10,18,158,10,10,155,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,128,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,128,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,128,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,123,135,161,49,160,215,127,64,26,19,8,128,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,14,197,211,99,54,48,142,64,26,19,8,128,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,128,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,123,135,161,49,160,215,127,64,26,19,8,128,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,133,225,80,58,141,112,144,64,26,19,8,128,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,128,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,43,131,17,29,69,128,64,26,19,8,128,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,227,243,122,224,170,60,145,64,26,19,8,128,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,128,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,71,194,138,73,119,129,64,26,19,8,128,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,5,97,132,62,198,28,145,64,26,19,8,128,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,128,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,127,78,165,110,60,142,132,64,26,19,8,128,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,114,16,83,81,101,22,145,64,26,19,8,128,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,128,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,156,135,85,80,177,65,132,64,26,19,8,128,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,70,54,155,47,146,239,142,64,26,19,8,128,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,128,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,230,242,117,239,52,132,64,26,19,8,128,2,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,72,55,52,39,32,151,141,64,26,19,8,128,2,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,128,2,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,79,62,102,202,53,131,64,26,19,8,128,2,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,109,216,150,1,226,163,141,64,26,19,8,128,2,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,128,2,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,99,154,251,3,81,129,64,26,19,8,128,2,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,128,168,251,242,123,86,142,64,26,19,8,128,2,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,128,2,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,123,233,189,92,153,43,128,64,26,19,8,128,2,16,34,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,99,111,75,17,7,163,142,64,26,19,8,128,2,16,35,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,128,2,16,33,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,128,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,128,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,238,12,18,235,12,10,232,12,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,129,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,129,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,3,114,33,129,118,111,64,26,19,8,129,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,184,25,144,0,252,99,145,64,26,19,8,129,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,3,114,33,129,118,111,64,26,19,8,129,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,131,35,109,143,249,199,146,64,26,19,8,129,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,39,124,143,69,248,165,111,64,26,19,8,129,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,155,210,240,115,232,205,146,64,26,19,8,129,2,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,70,21,115,174,59,131,114,64,26,19,8,129,2,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,106,116,233,170,10,194,146,64,26,19,8,129,2,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,200,177,238,206,32,118,64,26,19,8,129,2,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,238,8,87,52,96,164,146,64,26,19,8,129,2,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,189,170,79,107,130,152,146,64,26,19,8,129,2,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,167,50,10,91,52,175,118,64,26,19,8,129,2,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,10,239,24,237,239,198,118,64,26,19,8,129,2,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,65,63,189,244,215,122,146,64,26,19,8,129,2,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,200,177,238,206,32,118,64,26,19,8,129,2,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,207,252,5,145,216,33,146,64,26,19,8,129,2,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,161,74,240,173,122,117,64,26,19,8,129,2,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,175,240,180,237,80,159,145,64,26,19,8,129,2,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,180,243,0,22,4,4,117,64,26,19,8,129,2,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,2,39,27,174,200,117,145,64,26,19,8,129,2,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,60,174,253,137,81,70,145,64,26,19,8,129,2,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,215,151,109,97,176,22,116,64,26,19,8,129,2,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,35,255,121,165,98,64,145,64,26,19,8,129,2,16,41,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,233,233,35,135,6,160,115,64,26,19,8,129,2,16,40,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,39,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,203,239,183,3,134,174,108,64,26,19,8,129,2,16,43,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,60,174,253,137,81,70,145,64,26,19,8,129,2,16,44,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,42,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,129,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,129,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,136,18,18,133,18,10,130,18,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,130,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,224,16,10,6,112,111,105,110,116,115,18,213,16,18,210,16,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,16,144,121,223,168,122,64,26,19,8,130,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,158,226,68,204,126,177,140,64,26,19,8,130,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,17,169,118,120,32,247,120,64,26,19,8,130,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,158,226,68,204,126,177,140,64,26,19,8,130,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,150,93,156,240,141,119,120,64,26,19,8,130,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,120,65,226,241,188,164,140,64,26,19,8,130,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,84,135,29,127,17,120,64,26,19,8,130,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,7,94,186,98,119,126,140,64,26,19,8,130,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,132,34,44,229,94,119,64,26,19,8,130,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,102,113,125,0,35,242,139,64,26,19,8,130,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,255,151,194,221,43,119,64,26,19,8,130,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,8,95,83,90,5,38,139,64,26,19,8,130,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,66,93,119,97,69,119,64,26,19,8,130,2,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,66,209,179,29,239,140,138,64,26,19,8,130,2,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,208,207,252,179,119,222,119,64,26,19,8,130,2,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,161,228,118,187,154,0,138,64,26,19,8,130,2,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,64,178,139,75,47,93,121,64,26,19,8,130,2,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,219,86,215,126,132,103,137,64,26,19,8,130,2,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,139,5,16,216,117,122,64,26,19,8,130,2,16,34,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,67,210,76,21,125,52,137,64,26,19,8,130,2,16,35,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,33,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,137,242,30,17,151,39,124,64,26,19,8,130,2,16,37,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,67,210,76,21,125,52,137,64,26,19,8,130,2,16,38,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,36,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,76,58,255,13,202,141,137,64,26,19,8,130,2,16,41,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,126,137,211,32,188,38,125,64,26,19,8,130,2,16,40,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,39,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,155,253,198,217,242,125,64,26,19,8,130,2,16,43,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,237,38,60,112,30,26,138,64,26,19,8,130,2,16,44,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,42,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,191,98,77,229,100,63,126,64,26,19,8,130,2,16,46,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,141,19,121,210,114,166,138,64,26,19,8,130,2,16,47,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,45,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,191,98,77,229,100,63,126,64,26,19,8,130,2,16,49,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,46,0,182,52,199,50,139,64,26,19,8,130,2,16,50,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,48,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,14,94,138,195,89,125,64,26,19,8,130,2,16,52,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,178,179,66,181,166,11,140,64,26,19,8,130,2,16,53,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,51,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,108,185,110,47,34,116,124,64,26,19,8,130,2,16,55,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,7,94,186,98,119,126,140,64,26,19,8,130,2,16,56,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,54,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,233,9,62,136,193,123,64,26,19,8,130,2,16,58,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,196,131,167,166,64,190,140,64,26,19,8,130,2,16,59,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,57,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,82,85,46,99,194,122,64,26,19,8,130,2,16,61,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,91,8,50,16,72,241,140,64,26,19,8,130,2,16,62,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,60,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,130,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,130,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,130,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,161,10,18,158,10,10,155,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,131,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,131,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,131,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,82,85,46,99,194,122,64,26,19,8,131,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,18,253,143,179,185,162,145,64,26,19,8,131,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,131,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,82,85,46,99,194,122,64,26,19,8,131,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,230,38,59,101,195,193,146,64,26,19,8,131,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,131,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,71,25,165,76,238,14,123,64,26,19,8,131,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,253,42,249,210,3,161,147,64,26,19,8,131,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,131,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,240,236,33,123,216,126,64,26,19,8,131,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,73,109,190,135,135,186,147,64,26,19,8,131,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,131,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,201,102,230,35,241,127,64,26,19,8,131,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,73,109,190,135,135,186,147,64,26,19,8,131,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,131,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,201,102,230,35,241,127,64,26,19,8,131,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,103,167,7,97,138,21,146,64,26,19,8,131,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,131,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,231,215,78,108,114,126,64,26,19,8,131,2,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,103,167,7,97,138,21,146,64,26,19,8,131,2,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,131,2,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,139,5,16,216,117,122,64,26,19,8,131,2,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,217,138,47,240,207,59,146,64,26,19,8,131,2,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,131,2,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,187,160,30,62,195,121,64,26,19,8,131,2,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,217,138,47,240,207,59,146,64,26,19,8,131,2,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,131,2,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,187,160,30,62,195,121,64,26,19,8,131,2,16,34,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,70,58,254,2,111,53,146,64,26,19,8,131,2,16,35,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,131,2,16,33,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,131,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,131,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,132,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,132,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,132,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,150,199,18,216,56,57,112,64,26,19,8,132,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,117,16,135,177,64,139,134,64,26,19,8,132,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,55,255,123,15,214,29,128,64,26,19,8,132,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,140,248,99,162,44,45,103,64,26,19,8,132,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,132,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,55,255,123,15,214,29,128,64,26,19,8,132,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,117,16,135,177,64,139,134,64,26,19,8,132,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,132,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,132,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,132,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,133,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,133,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,117,16,135,177,64,139,134,64,26,19,8,133,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,55,255,123,15,214,29,128,64,26,19,8,133,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,140,248,99,162,44,45,103,64,26,19,8,133,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,150,199,18,216,56,57,112,64,26,19,8,133,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,133,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,55,255,123,15,214,29,128,64,26,19,8,133,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,117,16,135,177,64,139,134,64,26,19,8,133,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,133,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,133,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,133,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,133,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,161,10,18,158,10,10,155,10,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,22,142,132,85,130,131,64,26,19,8,134,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,65,6,165,134,200,8,146,64,26,19,8,134,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,134,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,22,142,132,85,130,131,64,26,19,8,134,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,73,109,190,135,135,186,147,64,26,19,8,134,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,134,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,182,28,141,154,38,180,147,64,26,19,8,134,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,88,172,169,156,236,217,133,64,26,19,8,134,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,134,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,210,247,131,36,127,89,134,64,26,19,8,134,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,144,123,42,192,100,167,147,64,26,19,8,134,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,134,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,248,152,230,254,64,102,134,64,26,19,8,134,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,102,166,110,105,252,109,147,64,26,19,8,134,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,134,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,20,92,149,57,51,134,64,26,19,8,134,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,32,153,155,40,173,40,146,64,26,19,8,134,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,134,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,32,153,155,40,173,40,146,64,26,19,8,134,2,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,42,164,45,193,107,27,132,64,26,19,8,134,2,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,134,2,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,212,200,207,209,104,131,64,26,19,8,134,2,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,108,219,96,221,48,66,146,64,26,19,8,134,2,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,134,2,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,167,240,160,64,140,66,131,64,26,19,8,134,2,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,108,219,96,221,48,66,146,64,26,19,8,134,2,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,134,2,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,91,174,219,139,8,41,131,64,26,19,8,134,2,16,34,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,70,58,254,2,111,53,146,64,26,19,8,134,2,16,35,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,134,2,16,33,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,134,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,134,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,134,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,134,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,134,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,212,7,18,209,7,10,206,7,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,135,2,16,4,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,135,2,16,7,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,48,192,26,19,8,135,2,16,8,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,135,2,16,6,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,108,64,26,19,8,135,2,16,10,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,192,26,19,8,135,2,16,11,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,135,2,16,9,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,110,64,26,19,8,135,2,16,13,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,51,64,26,19,8,135,2,16,14,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,135,2,16,12,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,111,64,26,19,8,135,2,16,16,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,135,2,16,17,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,135,2,16,15,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,112,64,26,19,8,135,2,16,19,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,65,64,26,19,8,135,2,16,20,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,135,2,16,18,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,113,64,26,19,8,135,2,16,22,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,70,64,26,19,8,135,2,16,23,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,135,2,16,21,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,115,64,26,19,8,135,2,16,25,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,81,64,26,19,8,135,2,16,26,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,135,2,16,24,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,135,2,16,5,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,135,2,16,2,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,99,102,54,97,54,26,19,8,135,2,16,3,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,135,2,16,1,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,135,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,135,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,135,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,55,255,123,15,214,29,128,64,26,19,8,135,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,140,248,99,162,44,45,103,64,26,19,8,135,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,150,199,18,216,56,57,112,64,26,19,8,135,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,117,16,135,177,64,139,134,64,26,19,8,135,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,135,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,55,255,123,15,214,29,128,64,26,19,8,135,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,117,16,135,177,64,139,134,64,26,19,8,135,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,135,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,135,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,135,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,246,5,18,243,5,10,240,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,137,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,74,65,44,189,245,137,137,64,26,19,8,137,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,36,205,244,164,83,85,146,64,26,19,8,137,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,137,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,74,65,44,189,245,137,137,64,26,19,8,137,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,239,142,237,93,16,27,147,64,26,19,8,137,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,137,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,225,245,159,41,239,138,64,26,19,8,137,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,55,157,89,150,237,7,147,64,26,19,8,137,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,137,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,183,29,38,146,180,91,146,64,26,19,8,137,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,110,225,245,159,41,239,138,64,26,19,8,137,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,137,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,160,201,226,51,125,137,64,26,19,8,137,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,183,29,38,146,180,91,146,64,26,19,8,137,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,137,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,137,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,137,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,137,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,137,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,138,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,138,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,138,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,54,229,250,202,212,139,64,26,19,8,138,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,36,205,244,164,83,85,146,64,26,19,8,138,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,138,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,97,114,21,237,85,65,147,64,26,19,8,138,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,24,54,229,250,202,212,139,64,26,19,8,138,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,138,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,54,229,250,202,212,139,64,26,19,8,138,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,59,209,178,18,148,52,147,64,26,19,8,138,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,138,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,138,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,138,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,139,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,54,229,250,202,212,139,64,26,19,8,139,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,21,48,80,56,210,39,147,64,26,19,8,139,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,139,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,21,48,80,56,210,39,147,64,26,19,8,139,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,136,24,116,146,130,83,141,64,26,19,8,139,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,139,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,139,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,139,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,139,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,139,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,195,8,18,192,8,10,189,8,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,140,18,224,218,228,254,139,64,26,19,8,140,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,50,109,99,237,35,57,142,64,26,19,8,140,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,140,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,50,109,99,237,35,57,142,64,26,19,8,140,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,61,206,232,54,69,150,142,64,26,19,8,140,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,140,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,210,240,111,190,78,144,64,26,19,8,140,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,137,16,174,235,200,175,142,64,26,19,8,140,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,140,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,143,43,187,58,53,144,64,26,19,8,140,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,25,46,31,84,17,49,141,64,26,19,8,140,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,140,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,143,43,187,58,53,144,64,26,19,8,140,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,178,179,66,181,166,11,140,64,26,19,8,140,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,140,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,145,128,38,139,207,172,141,64,26,19,8,140,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,225,188,87,136,181,113,140,64,26,19,8,140,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,140,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,251,155,33,200,121,141,64,26,19,8,140,2,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,225,188,87,136,181,113,140,64,26,19,8,140,2,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,140,2,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,251,155,33,200,121,141,64,26,19,8,140,2,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,187,27,245,173,243,100,140,64,26,19,8,140,2,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,140,2,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,140,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,140,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,140,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,140,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,140,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,141,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,141,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,141,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,177,144,13,80,43,0,137,64,26,19,8,141,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,97,45,76,136,106,9,131,64,26,19,8,141,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,140,6,28,29,105,228,113,64,26,19,8,141,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,40,12,30,192,39,245,89,64,26,19,8,141,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,141,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,45,76,136,106,9,131,64,26,19,8,141,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,177,144,13,80,43,0,137,64,26,19,8,141,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,141,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,141,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,141,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,161,10,18,158,10,10,155,10,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,142,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,142,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,106,222,42,185,127,236,146,64,26,19,8,142,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,88,164,227,245,50,54,135,64,26,19,8,142,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,142,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,106,222,42,185,127,236,146,64,26,19,8,142,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,208,237,139,142,169,102,138,64,26,19,8,142,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,142,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,132,171,198,217,37,77,138,64,26,19,8,142,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,65,59,150,239,161,144,149,64,26,19,8,142,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,142,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,234,100,2,65,138,149,64,26,19,8,142,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,220,87,112,118,18,15,136,64,26,19,8,142,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,142,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,59,150,239,161,144,149,64,26,19,8,142,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,240,40,110,95,58,105,135,64,26,19,8,142,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,142,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,32,206,140,145,134,176,149,64,26,19,8,142,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,32,51,28,42,215,118,134,64,26,19,8,142,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,142,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,4,150,117,167,159,164,148,64,26,19,8,142,2,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,32,51,28,42,215,118,134,64,26,19,8,142,2,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,142,2,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,175,79,244,154,145,80,134,64,26,19,8,142,2,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,73,113,33,91,100,12,147,64,26,19,8,142,2,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,142,2,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,9,111,98,23,179,146,64,26,19,8,142,2,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,137,174,145,192,207,67,134,64,26,19,8,142,2,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,142,2,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,9,111,98,23,179,146,64,26,19,8,142,2,16,34,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,23,203,105,49,138,29,134,64,26,19,8,142,2,16,35,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,142,2,16,33,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,142,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,142,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,142,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,143,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,143,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,143,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,136,176,166,22,136,141,127,64,26,19,8,143,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,133,43,229,176,181,212,136,64,26,19,8,143,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,232,132,59,228,158,36,106,64,26,19,8,143,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,228,146,243,94,219,219,132,64,26,19,8,143,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,143,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,43,229,176,181,212,136,64,26,19,8,143,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,136,176,166,22,136,141,127,64,26,19,8,143,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,143,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,143,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,143,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,144,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,144,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,144,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,124,174,143,170,25,159,147,64,26,19,8,144,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,44,255,28,61,57,139,140,64,26,19,8,144,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,144,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,124,174,143,170,25,159,147,64,26,19,8,144,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,175,177,16,198,138,188,142,64,26,19,8,144,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,144,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,57,212,124,238,226,222,147,64,26,19,8,144,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,137,16,174,235,200,175,142,64,26,19,8,144,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,144,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,33,207,37,137,20,88,148,64,26,19,8,144,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,203,234,192,167,255,111,142,64,26,19,8,144,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,144,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,33,207,37,137,20,88,148,64,26,19,8,144,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,187,27,245,173,243,100,140,64,26,19,8,144,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,144,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,124,174,143,170,25,159,147,64,26,19,8,144,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,187,27,245,173,243,100,140,64,26,19,8,144,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,144,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,124,174,143,170,25,159,147,64,26,19,8,144,2,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,149,122,146,211,49,88,140,64,26,19,8,144,2,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,144,2,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,144,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,144,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,145,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,145,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,145,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,92,238,214,205,162,141,64,26,19,8,145,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,178,84,137,48,65,24,121,64,26,19,8,145,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,192,238,134,19,47,201,117,64,26,19,8,145,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,160,60,98,77,70,255,107,64,26,19,8,145,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,145,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,92,238,214,205,162,141,64,26,19,8,145,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,178,84,137,48,65,24,121,64,26,19,8,145,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,145,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,145,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,145,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,195,8,18,192,8,10,189,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,146,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,146,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,146,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,92,197,197,42,241,148,64,26,19,8,146,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,140,18,224,218,228,254,139,64,26,19,8,146,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,146,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,92,197,197,42,241,148,64,26,19,8,146,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,214,83,12,152,218,112,141,64,26,19,8,146,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,146,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,122,173,246,178,139,247,148,64,26,19,8,146,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,226,189,240,127,67,25,139,64,26,19,8,146,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,146,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,51,159,138,122,174,10,149,64,26,19,8,146,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,64,208,26,38,97,229,139,64,26,19,8,146,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,146,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,56,211,227,246,84,55,149,64,26,19,8,146,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,102,113,125,0,35,242,139,64,26,19,8,146,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,146,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,165,130,178,9,244,48,149,64,26,19,8,146,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,140,18,224,218,228,254,139,64,26,19,8,146,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,146,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,212,139,199,220,2,151,149,64,26,19,8,146,2,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,140,18,224,218,228,254,139,64,26,19,8,146,2,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,146,2,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,13,254,39,160,236,253,148,64,26,19,8,146,2,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,140,18,224,218,228,254,139,64,26,19,8,146,2,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,146,2,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,146,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,146,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,147,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,147,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,147,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,110,86,116,186,21,151,64,26,19,8,147,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,4,46,109,75,182,95,127,64,26,19,8,147,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,147,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,110,86,116,186,21,151,64,26,19,8,147,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,76,216,226,226,208,33,129,64,26,19,8,147,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,147,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,62,187,101,84,200,151,64,26,19,8,147,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,76,216,226,226,208,33,129,64,26,19,8,147,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,147,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,62,187,101,84,200,151,64,26,19,8,147,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,62,160,205,14,160,198,126,64,26,19,8,147,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,147,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,191,185,48,252,76,149,151,64,26,19,8,147,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,167,27,67,165,152,147,126,64,26,19,8,147,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,147,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,95,234,59,221,40,151,64,26,19,8,147,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,167,27,67,165,152,147,126,64,26,19,8,147,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,147,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,147,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,147,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,148,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,148,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,148,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,222,37,161,98,218,205,152,64,26,19,8,148,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,62,160,205,14,160,198,126,64,26,19,8,148,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,148,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,222,37,161,98,218,205,152,64,26,19,8,148,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,208,139,111,99,176,250,129,64,26,19,8,148,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,148,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,148,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,148,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,148,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,213,223,180,30,72,62,129,64,26,19,8,148,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,247,131,33,106,244,80,112,64,26,19,8,148,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,151,16,21,183,26,206,121,64,26,19,8,148,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,179,151,164,244,207,151,131,64,26,19,8,148,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,148,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,196,187,172,9,12,107,146,64,26,19,8,148,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,71,74,155,144,135,15,133,64,26,19,8,148,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,148,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,148,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,148,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,148,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,148,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,150,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,222,37,161,98,218,205,152,64,26,19,8,150,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,208,139,111,99,176,250,129,64,26,19,8,150,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,150,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,160,127,231,34,74,58,153,64,26,19,8,150,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,170,234,12,137,238,237,129,64,26,19,8,150,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,150,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,150,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,150,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,150,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,150,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,151,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,151,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,151,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,52,13,155,183,186,152,64,26,19,8,151,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,132,73,170,174,44,225,129,64,26,19,8,151,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,151,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,52,13,155,183,186,152,64,26,19,8,151,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,132,73,170,174,44,225,129,64,26,19,8,151,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,151,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,151,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,151,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,152,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,152,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,152,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,151,16,21,183,26,206,121,64,26,19,8,152,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,179,151,164,244,207,151,131,64,26,19,8,152,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,213,223,180,30,72,62,129,64,26,19,8,152,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,247,131,33,106,244,80,112,64,26,19,8,152,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,152,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,71,74,155,144,135,15,133,64,26,19,8,152,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,196,187,172,9,12,107,146,64,26,19,8,152,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,152,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,152,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,152,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,152,4,18,149,4,10,146,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,153,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,153,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,241,71,230,51,161,152,64,26,19,8,153,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,95,168,71,212,106,212,129,64,26,19,8,153,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,153,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,241,71,230,51,161,152,64,26,19,8,153,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,34,52,181,33,101,30,133,64,26,19,8,153,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,153,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,137,122,144,189,123,179,153,64,26,19,8,153,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,34,52,181,33,101,30,133,64,26,19,8,153,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,153,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,153,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,153,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,153,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,231,32,18,228,32,10,225,32,10,191,31,10,6,112,111,105,110,116,115,18,180,31,18,177,31,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,242,93,11,5,61,179,160,64,26,19,8,154,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,172,235,165,128,124,149,128,64,26,19,8,154,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,242,93,11,5,61,179,160,64,26,19,8,154,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,137,174,145,192,207,67,134,64,26,19,8,154,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,116,16,255,141,142,228,162,64,26,19,8,154,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,137,174,145,192,207,67,134,64,26,19,8,154,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,47,156,191,147,4,14,163,64,26,19,8,154,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,61,108,204,11,76,42,134,64,26,19,8,154,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,141,83,91,39,33,163,64,26,19,8,154,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,128,70,223,199,130,234,133,64,26,19,8,154,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,52,208,24,16,171,58,163,64,26,19,8,154,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,214,241,239,108,225,4,133,64,26,19,8,154,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,32,74,253,11,65,163,64,26,19,8,154,2,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,45,157,0,18,64,31,132,64,26,19,8,154,2,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,32,74,253,11,65,163,64,26,19,8,154,2,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,122,224,94,190,81,224,130,64,26,19,8,154,2,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,161,127,231,34,74,52,163,64,26,19,8,154,2,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,181,83,88,121,201,238,128,64,26,19,8,154,2,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,141,83,91,39,33,163,64,26,19,8,154,2,16,34,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,51,55,130,30,197,197,127,64,26,19,8,154,2,16,35,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,33,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,251,92,185,66,1,163,64,26,19,8,154,2,16,37,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,73,9,25,255,122,199,125,64,26,19,8,154,2,16,38,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,36,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,152,23,53,42,253,218,162,64,26,19,8,154,2,16,40,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,217,38,138,103,195,72,124,64,26,19,8,154,2,16,41,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,39,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,52,13,155,183,180,162,64,26,19,8,154,2,16,43,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,227,143,213,87,158,73,123,64,26,19,8,154,2,16,44,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,42,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,33,0,180,30,17,136,162,64,26,19,8,154,2,16,46,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,29,2,54,27,136,176,122,64,26,19,8,154,2,16,47,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,45,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,211,35,194,43,58,88,162,64,26,19,8,154,2,16,49,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,29,2,54,27,136,176,122,64,26,19,8,154,2,16,50,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,48,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,166,109,94,161,27,162,64,26,19,8,154,2,16,52,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,94,219,175,223,48,201,123,64,26,19,8,154,2,16,53,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,51,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,231,244,191,20,98,178,161,64,26,19,8,154,2,16,55,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,49,160,203,248,233,21,128,64,26,19,8,154,2,16,56,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,54,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,153,24,206,33,139,130,161,64,26,19,8,154,2,16,58,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,86,64,149,219,29,123,129,64,26,19,8,154,2,16,59,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,57,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,75,215,73,235,66,122,130,64,26,19,8,154,2,16,62,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,77,214,8,109,7,105,161,64,26,19,8,154,2,16,61,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,60,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,235,170,65,83,76,161,64,26,19,8,154,2,16,64,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,234,194,237,85,9,95,132,64,26,19,8,154,2,16,65,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,63,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,67,18,203,34,73,161,64,26,19,8,154,2,16,67,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,61,108,204,11,76,42,134,64,26,19,8,154,2,16,68,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,66,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,133,215,127,166,98,161,64,26,19,8,154,2,16,70,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,69,211,229,12,11,220,135,64,26,19,8,154,2,16,71,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,69,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,178,250,95,222,152,161,64,26,19,8,154,2,16,73,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,105,115,175,239,62,65,137,64,26,19,8,154,2,16,74,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,72,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,89,216,231,163,167,216,161,64,26,19,8,154,2,16,76,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,94,10,100,255,99,64,138,64,26,19,8,154,2,16,77,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,75,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,246,160,97,184,204,138,64,26,19,8,154,2,16,80,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,22,254,212,231,112,24,162,64,26,19,8,154,2,16,79,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,78,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,150,123,43,203,191,255,138,64,26,19,8,154,2,16,83,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,176,28,140,143,203,97,162,64,26,19,8,154,2,16,82,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,81,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,116,16,255,141,142,228,162,64,26,19,8,154,2,16,85,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,37,152,3,60,122,217,138,64,26,19,8,154,2,16,86,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,84,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,32,74,253,11,65,163,64,26,19,8,154,2,16,88,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,57,105,1,37,162,51,138,64,26,19,8,154,2,16,89,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,87,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,61,56,203,8,248,147,163,64,26,19,8,154,2,16,91,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,105,115,175,239,62,65,137,64,26,19,8,154,2,16,92,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,90,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,27,243,151,61,186,163,64,26,19,8,154,2,16,94,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,163,229,15,179,40,168,136,64,26,19,8,154,2,16,95,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,93,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,108,65,224,219,6,250,163,64,26,19,8,154,2,16,97,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,22,202,208,57,252,117,135,64,26,19,8,154,2,16,98,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,96,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,61,108,204,11,76,42,134,64,26,19,8,154,2,16,101,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,112,117,57,88,173,38,164,64,26,19,8,154,2,16,100,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,99,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,188,183,254,12,49,64,164,64,26,19,8,154,2,16,103,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,252,146,82,71,163,17,133,64,26,19,8,154,2,16,104,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,102,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,81,43,75,132,86,164,64,26,19,8,154,2,16,106,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,216,242,136,100,111,172,131,64,26,19,8,154,2,16,107,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,105,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,81,162,92,56,229,92,164,64,26,19,8,154,2,16,109,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,55,6,76,2,27,32,131,64,26,19,8,154,2,16,110,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,108,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,250,195,193,180,89,164,64,26,19,8,154,2,16,112,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,17,101,233,39,89,19,131,64,26,19,8,154,2,16,113,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,111,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,154,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,154,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,154,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,154,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,255,11,18,252,11,10,249,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,155,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,155,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,155,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,215,10,10,6,112,111,105,110,116,115,18,204,10,18,201,10,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,148,157,71,140,150,157,64,26,19,8,155,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,114,219,97,232,139,154,137,64,26,19,8,155,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,155,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,148,157,71,140,150,157,64,26,19,8,155,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,59,205,79,63,183,238,143,64,26,19,8,155,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,155,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,146,19,209,75,197,66,158,64,26,19,8,155,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,59,205,79,63,183,238,143,64,26,19,8,155,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,155,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,109,23,12,53,175,158,64,26,19,8,155,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,240,138,138,138,51,213,143,64,26,19,8,155,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,155,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,126,167,98,251,237,174,143,64,26,19,8,155,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,88,161,112,136,219,219,158,64,26,19,8,155,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,155,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,126,66,211,98,157,232,158,64,26,19,8,155,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,250,243,213,122,14,214,142,64,26,19,8,155,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,155,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,126,66,211,98,157,232,158,64,26,19,8,155,2,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,214,83,12,152,218,112,141,64,26,19,8,155,2,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,155,2,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,12,95,171,211,87,194,158,64,26,19,8,155,2,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,73,56,205,30,174,62,140,64,26,19,8,155,2,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,155,2,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,3,247,248,218,10,105,158,64,26,19,8,155,2,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,170,76,41,180,231,89,138,64,26,19,8,155,2,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,155,2,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,141,223,119,207,30,22,158,64,26,19,8,155,2,16,34,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,246,142,238,104,107,115,138,64,26,19,8,155,2,16,35,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,155,2,16,33,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,5,248,145,210,152,16,157,64,26,19,8,155,2,16,37,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,131,170,45,226,151,165,139,64,26,19,8,155,2,16,38,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,155,2,16,36,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,219,34,214,123,48,215,156,64,26,19,8,155,2,16,40,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,244,141,85,113,221,203,139,64,26,19,8,155,2,16,41,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,155,2,16,39,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,155,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,155,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,162,23,18,159,23,10,156,23,10,250,21,10,6,112,111,105,110,116,115,18,239,21,18,236,21,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,149,70,145,208,221,199,159,64,26,19,8,156,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,131,170,45,226,151,165,139,64,26,19,8,156,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,149,70,145,208,221,199,159,64,26,19,8,156,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,180,234,101,13,156,214,144,64,26,19,8,156,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,4,204,27,90,174,159,64,26,19,8,156,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,243,144,31,77,44,106,144,64,26,19,8,156,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,35,99,105,65,152,161,159,64,26,19,8,156,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,88,6,0,33,44,162,143,64,26,19,8,156,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,35,99,105,65,152,161,159,64,26,19,8,156,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,70,54,155,47,146,239,142,64,26,19,8,156,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,179,154,46,249,167,159,64,26,19,8,156,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,32,149,56,85,208,226,142,64,26,19,8,156,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,32,149,56,85,208,226,142,64,26,19,8,156,2,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,40,151,194,189,62,206,159,64,26,19,8,156,2,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,237,41,178,136,150,134,160,64,26,19,8,156,2,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,90,7,153,24,186,73,142,64,26,19,8,156,2,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,26,153,154,29,82,214,160,64,26,19,8,156,2,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,232,35,113,137,116,35,142,64,26,19,8,156,2,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,194,130,14,175,178,22,142,64,26,19,8,156,2,16,35,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,255,249,22,122,48,57,161,64,26,19,8,156,2,16,34,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,33,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,180,183,81,197,172,31,161,64,26,19,8,156,2,16,37,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,166,73,94,205,61,99,142,64,26,19,8,156,2,16,38,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,36,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,174,60,242,157,185,160,64,26,19,8,156,2,16,40,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,222,186,37,153,153,34,143,64,26,19,8,156,2,16,41,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,39,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,193,6,103,214,148,159,64,26,19,8,156,2,16,43,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,200,187,99,246,195,48,144,64,26,19,8,156,2,16,44,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,42,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,62,21,245,92,9,158,64,26,19,8,156,2,16,46,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,133,225,80,58,141,112,144,64,26,19,8,156,2,16,47,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,45,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,109,115,7,105,145,221,156,64,26,19,8,156,2,16,49,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,100,116,71,220,113,144,144,64,26,19,8,156,2,16,50,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,48,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,219,34,214,123,48,215,156,64,26,19,8,156,2,16,52,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,138,21,170,182,51,157,144,64,26,19,8,156,2,16,53,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,51,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,147,20,106,67,83,234,156,64,26,19,8,156,2,16,55,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,33,154,52,32,59,208,144,64,26,19,8,156,2,16,56,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,54,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,47,205,77,41,1,74,157,64,26,19,8,156,2,16,58,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,123,120,5,74,178,111,145,64,26,19,8,156,2,16,59,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,57,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,81,216,146,8,125,157,64,26,19,8,156,2,16,61,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,90,11,252,235,150,143,145,64,26,19,8,156,2,16,62,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,60,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,94,214,98,252,15,176,157,64,26,19,8,156,2,16,64,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,236,91,45,217,247,149,145,64,26,19,8,156,2,16,65,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,63,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,62,21,245,92,9,158,64,26,19,8,156,2,16,67,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,52,106,153,17,213,130,145,64,26,19,8,156,2,16,68,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,66,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,117,218,32,106,80,143,158,64,26,19,8,156,2,16,70,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,156,229,14,168,205,79,145,64,26,19,8,156,2,16,71,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,69,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,201,53,44,184,35,160,64,26,19,8,156,2,16,73,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,133,225,80,58,141,112,144,64,26,19,8,156,2,16,74,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,72,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,124,70,138,249,80,96,160,64,26,19,8,156,2,16,76,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,238,92,198,208,133,61,144,64,26,19,8,156,2,16,77,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,75,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,237,41,178,136,150,134,160,64,26,19,8,156,2,16,79,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,200,187,99,246,195,48,144,64,26,19,8,156,2,16,80,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,78,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,156,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,156,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,156,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,156,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,195,8,18,192,8,10,189,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,157,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,157,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,157,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,145,17,201,103,6,154,64,26,19,8,157,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,146,124,195,183,242,78,146,64,26,19,8,157,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,157,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,145,17,201,103,6,154,64,26,19,8,157,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,39,0,181,41,108,218,147,64,26,19,8,157,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,157,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,164,178,167,167,98,191,154,64,26,19,8,157,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,39,0,181,41,108,218,147,64,26,19,8,157,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,157,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,111,14,33,98,73,199,147,64,26,19,8,157,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,26,202,40,179,78,18,155,64,26,19,8,157,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,157,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,173,26,90,160,175,24,155,64,26,19,8,157,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,220,189,239,116,232,192,147,64,26,19,8,157,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,157,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,173,26,90,160,175,24,155,64,26,19,8,157,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,183,29,38,146,180,91,146,64,26,19,8,157,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,157,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,93,164,59,111,133,210,154,64,26,19,8,157,2,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,255,43,146,202,145,72,146,64,26,19,8,157,2,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,157,2,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,150,22,156,50,111,57,154,64,26,19,8,157,2,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,255,43,146,202,145,72,146,64,26,19,8,157,2,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,157,2,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,157,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,157,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,158,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,106,64,71,228,120,88,155,64,26,19,8,158,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,108,219,96,221,48,66,146,64,26,19,8,158,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,158,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,64,5,12,143,58,97,147,64,26,19,8,158,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,106,64,71,228,120,88,155,64,26,19,8,158,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,158,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,158,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,158,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,158,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,158,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,159,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,159,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,159,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,106,64,71,228,120,88,155,64,26,19,8,159,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,173,180,218,161,217,90,147,64,26,19,8,159,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,159,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,243,211,100,88,49,156,64,26,19,8,159,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,173,180,218,161,217,90,147,64,26,19,8,159,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,159,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,159,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,159,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,160,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,160,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,160,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,60,55,50,17,106,242,154,64,26,19,8,160,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,139,71,209,67,190,122,147,64,26,19,8,160,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,160,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,60,55,50,17,106,242,154,64,26,19,8,160,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,44,52,14,166,18,7,148,64,26,19,8,160,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,160,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,78,7,151,2,4,165,155,64,26,19,8,160,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,153,227,220,184,177,0,148,64,26,19,8,160,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,160,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,25,201,143,187,192,106,156,64,26,19,8,160,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,77,161,23,4,46,231,147,64,26,19,8,160,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,160,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,160,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,160,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,161,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,161,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,161,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,14,97,59,77,115,252,155,64,26,19,8,161,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,242,206,223,124,60,255,125,64,26,19,8,161,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,96,97,161,139,210,170,92,64,26,19,8,161,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,64,62,203,238,180,154,101,64,26,19,8,161,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,161,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,242,206,223,124,60,255,125,64,26,19,8,161,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,14,97,59,77,115,252,155,64,26,19,8,161,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,161,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,161,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,161,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,204,14,18,201,14,10,198,14,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,162,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,162,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,162,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,172,25,193,168,33,113,156,64,26,19,8,162,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,74,110,87,127,21,98,146,64,26,19,8,162,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,172,25,193,168,33,113,156,64,26,19,8,162,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,144,123,42,192,100,167,147,64,26,19,8,162,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,143,224,16,199,172,189,156,64,26,19,8,162,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,253,42,249,210,3,161,147,64,26,19,8,162,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,109,115,7,105,145,221,156,64,26,19,8,162,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,68,57,101,11,225,141,147,64,26,19,8,162,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,185,181,204,29,21,247,156,64,26,19,8,162,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,102,166,110,105,252,109,147,64,26,19,8,162,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,43,153,244,172,90,29,157,64,26,19,8,162,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,164,76,40,169,140,1,147,64,26,19,8,162,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,138,136,116,125,48,157,64,26,19,8,162,2,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,183,29,38,146,180,91,146,64,26,19,8,162,2,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,138,136,116,125,48,157,64,26,19,8,162,2,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,136,20,17,191,165,245,145,64,26,19,8,162,2,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,44,235,78,63,61,157,64,26,19,8,162,2,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,206,33,228,255,244,58,147,64,26,19,8,162,2,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,29,127,22,98,80,157,64,26,19,8,162,2,16,34,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,224,241,72,241,142,237,147,64,26,19,8,162,2,16,35,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,33,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,110,176,3,195,86,157,64,26,19,8,162,2,16,37,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,182,28,141,154,38,180,147,64,26,19,8,162,2,16,38,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,36,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,96,68,203,229,105,157,64,26,19,8,162,2,16,40,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,215,137,150,248,65,148,147,64,26,19,8,162,2,16,41,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,39,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,141,223,119,207,30,22,158,64,26,19,8,162,2,16,43,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,168,128,129,37,51,46,147,64,26,19,8,162,2,16,44,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,42,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,112,166,199,237,169,98,158,64,26,19,8,162,2,16,46,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,130,223,30,75,113,33,147,64,26,19,8,162,2,16,47,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,45,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,239,142,237,93,16,27,147,64,26,19,8,162,2,16,50,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,120,18,35,26,33,8,4,18,8,112,166,199,237,169,98,158,64,26,19,8,162,2,16,49,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,48,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,162,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,170,16,18,167,16,10,164,16,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,163,2,16,2,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,54,52,100,54,54,26,19,8,163,2,16,3,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,163,2,16,4,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,130,15,10,6,112,111,105,110,116,115,18,247,14,18,244,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,112,226,242,222,165,154,64,26,19,8,163,2,16,7,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,162,26,1,28,2,36,144,64,26,19,8,163,2,16,8,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,6,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,112,226,242,222,165,154,64,26,19,8,163,2,16,10,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,147,125,92,175,128,246,144,64,26,19,8,163,2,16,11,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,9,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,92,31,85,51,50,155,64,26,19,8,163,2,16,13,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,109,220,249,212,190,233,144,64,26,19,8,163,2,16,14,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,12,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,11,85,112,68,132,156,64,26,19,8,163,2,16,16,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,214,87,111,107,183,182,144,64,26,19,8,163,2,16,17,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,15,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,101,155,48,180,240,156,64,26,19,8,163,2,16,19,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,247,196,120,201,210,150,144,64,26,19,8,163,2,16,20,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,18,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,138,136,116,125,48,157,64,26,19,8,163,2,16,22,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,133,225,80,58,141,112,144,64,26,19,8,163,2,16,23,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,21,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,110,176,3,195,86,157,64,26,19,8,163,2,16,25,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,97,110,178,25,121,251,143,64,26,19,8,163,2,16,26,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,24,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,190,225,240,35,93,157,64,26,19,8,163,2,16,28,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,184,25,195,190,215,21,143,64,26,19,8,163,2,16,29,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,27,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,29,127,22,98,80,157,64,26,19,8,163,2,16,31,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,14,197,211,99,54,48,142,64,26,19,8,163,2,16,32,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,30,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,119,219,185,97,222,54,157,64,26,19,8,163,2,16,34,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,252,244,110,114,156,125,141,64,26,19,8,163,2,16,35,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,33,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,152,72,195,191,249,22,157,64,26,19,8,163,2,16,37,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,91,8,50,16,72,241,140,64,26,19,8,163,2,16,38,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,36,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,196,56,86,242,227,156,64,26,19,8,163,2,16,40,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,82,160,127,23,251,151,140,64,26,19,8,163,2,16,41,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,39,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,67,158,75,18,41,164,156,64,26,19,8,163,2,16,43,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,82,160,127,23,251,151,140,64,26,19,8,163,2,16,44,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,42,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,91,163,162,119,247,42,156,64,26,19,8,163,2,16,46,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,243,140,188,121,79,36,141,64,26,19,8,163,2,16,47,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,45,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,144,120,209,217,94,155,64,26,19,8,163,2,16,49,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,241,139,35,130,193,124,142,64,26,19,8,163,2,16,50,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,48,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,164,178,167,167,98,191,154,64,26,19,8,163,2,16,52,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,202,233,39,176,113,200,143,64,26,19,8,163,2,16,53,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,51,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,231,140,186,99,153,127,154,64,26,19,8,163,2,16,55,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,40,10,1,121,18,35,26,33,8,4,18,8,238,92,198,208,133,61,144,64,26,19,8,163,2,16,56,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,54,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,5,26,12,98,255,27,64,217,176,234,142,137,48,179,114,18,19,8,163,2,16,1,26,12,98,255,27,64,217,176,234,142,137,48,179,114,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,164,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,164,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,164,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,243,210,111,9,189,52,159,64,26,19,8,164,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,249,181,101,16,149,102,128,64,26,19,8,164,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,192,234,167,141,68,241,35,64,26,19,8,164,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,32,151,132,44,212,71,66,64,26,19,8,164,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,164,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,181,101,16,149,102,128,64,26,19,8,164,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,243,210,111,9,189,52,159,64,26,19,8,164,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,164,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,164,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,164,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,165,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,165,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,165,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,192,234,167,141,68,241,35,64,26,19,8,165,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,32,151,132,44,212,71,66,64,26,19,8,165,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,243,210,111,9,189,52,159,64,26,19,8,165,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,249,181,101,16,149,102,128,64,26,19,8,165,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,165,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,181,101,16,149,102,128,64,26,19,8,165,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,243,210,111,9,189,52,159,64,26,19,8,165,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,165,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,165,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,165,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,166,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,57,79,90,151,190,53,145,64,26,19,8,166,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,80,30,30,108,8,147,145,64,26,19,8,166,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,152,67,97,203,99,158,112,64,26,19,8,166,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,96,229,17,177,149,237,72,64,26,19,8,166,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,166,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,80,30,30,108,8,147,145,64,26,19,8,166,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,57,79,90,151,190,53,145,64,26,19,8,166,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,166,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,166,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,166,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,166,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,166,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,96,229,17,177,149,237,72,64,26,19,8,167,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,57,79,90,151,190,53,145,64,26,19,8,167,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,80,30,30,108,8,147,145,64,26,19,8,167,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,152,67,97,203,99,158,112,64,26,19,8,167,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,167,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,80,30,30,108,8,147,145,64,26,19,8,167,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,57,79,90,151,190,53,145,64,26,19,8,167,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,167,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,167,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,167,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,167,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,167,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,167,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,168,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,100,222,226,68,43,253,145,64,26,19,8,168,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,223,113,65,205,120,60,147,64,26,19,8,168,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,32,224,123,212,230,233,77,64,26,19,8,168,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,124,247,77,26,15,248,113,64,26,19,8,168,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,168,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,223,113,65,205,120,60,147,64,26,19,8,168,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,100,222,226,68,43,253,145,64,26,19,8,168,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,168,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,168,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,168,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,168,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,168,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,169,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,169,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,169,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,124,247,77,26,15,248,113,64,26,19,8,169,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,100,222,226,68,43,253,145,64,26,19,8,169,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,223,113,65,205,120,60,147,64,26,19,8,169,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,32,224,123,212,230,233,77,64,26,19,8,169,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,169,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,223,113,65,205,120,60,147,64,26,19,8,169,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,100,222,226,68,43,253,145,64,26,19,8,169,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,169,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,169,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,169,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,170,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,170,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,170,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,121,87,177,201,234,249,144,64,26,19,8,170,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,175,139,3,206,179,136,150,64,26,19,8,170,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,128,206,16,6,216,97,106,64,26,19,8,170,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,68,62,203,238,180,154,117,64,26,19,8,170,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,175,139,3,206,179,136,150,64,26,19,8,170,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,121,87,177,201,234,249,144,64,26,19,8,170,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,170,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,175,139,3,206,179,136,150,64,26,19,8,171,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,121,87,177,201,234,249,144,64,26,19,8,171,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,171,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,171,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,171,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,171,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,171,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,121,87,177,201,234,249,144,64,26,19,8,171,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,175,139,3,206,179,136,150,64,26,19,8,171,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,128,206,16,6,216,97,106,64,26,19,8,171,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,68,62,203,238,180,154,117,64,26,19,8,171,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,171,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,171,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,172,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,172,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,128,74,160,224,20,31,110,64,26,19,8,172,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,8,204,48,244,11,180,145,64,26,19,8,172,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,83,88,245,179,227,46,151,64,26,19,8,172,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,32,11,51,188,138,127,93,64,26,19,8,172,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,172,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,88,245,179,227,46,151,64,26,19,8,172,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,8,204,48,244,11,180,145,64,26,19,8,172,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,172,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,172,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,172,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,172,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,8,204,48,244,11,180,145,64,26,19,8,173,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,83,88,245,179,227,46,151,64,26,19,8,173,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,32,11,51,188,138,127,93,64,26,19,8,173,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,128,74,160,224,20,31,110,64,26,19,8,173,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,173,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,8,204,48,244,11,180,145,64,26,19,8,173,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,83,88,245,179,227,46,151,64,26,19,8,173,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,173,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,173,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,173,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,173,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,173,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,173,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,174,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,174,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,64,34,159,195,83,223,144,64,26,19,8,174,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,13,26,69,249,15,143,154,64,26,19,8,174,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,104,31,233,248,112,137,110,64,26,19,8,174,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,128,82,129,43,155,164,118,64,26,19,8,174,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,174,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,13,26,69,249,15,143,154,64,26,19,8,174,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,64,34,159,195,83,223,144,64,26,19,8,174,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,174,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,174,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,174,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,174,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,175,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,175,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,64,34,159,195,83,223,144,64,26,19,8,175,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,13,26,69,249,15,143,154,64,26,19,8,175,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,104,31,233,248,112,137,110,64,26,19,8,175,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,128,82,129,43,155,164,118,64,26,19,8,175,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,175,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,13,26,69,249,15,143,154,64,26,19,8,175,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,64,34,159,195,83,223,144,64,26,19,8,175,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,175,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,175,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,175,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,175,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,176,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,176,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,176,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,221,27,76,125,238,219,145,64,26,19,8,176,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,99,89,178,29,154,46,155,64,26,19,8,176,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,176,44,96,32,166,18,98,64,26,19,8,176,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,16,224,123,212,230,233,109,64,26,19,8,176,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,176,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,221,27,76,125,238,219,145,64,26,19,8,176,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,99,89,178,29,154,46,155,64,26,19,8,176,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,176,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,176,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,176,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,177,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,16,224,123,212,230,233,109,64,26,19,8,177,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,221,27,76,125,238,219,145,64,26,19,8,177,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,99,89,178,29,154,46,155,64,26,19,8,177,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,176,44,96,32,166,18,98,64,26,19,8,177,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,177,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,221,27,76,125,238,219,145,64,26,19,8,177,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,99,89,178,29,154,46,155,64,26,19,8,177,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,177,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,177,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,177,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,177,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,177,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,178,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,178,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,178,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,143,175,35,133,249,229,144,64,26,19,8,178,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,87,47,184,159,172,152,159,64,26,19,8,178,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,160,51,159,53,87,147,79,64,26,19,8,178,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,236,188,165,55,201,217,118,64,26,19,8,178,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,178,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,47,184,159,172,152,159,64,26,19,8,178,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,143,175,35,133,249,229,144,64,26,19,8,178,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,178,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,178,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,178,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,179,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,179,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,179,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,160,51,159,53,87,147,79,64,26,19,8,179,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,236,188,165,55,201,217,118,64,26,19,8,179,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,143,175,35,133,249,229,144,64,26,19,8,179,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,87,47,184,159,172,152,159,64,26,19,8,179,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,179,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,47,184,159,172,152,159,64,26,19,8,179,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,143,175,35,133,249,229,144,64,26,19,8,179,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,179,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,179,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,179,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,180,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,180,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,180,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,185,95,8,252,22,190,144,64,26,19,8,180,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,105,116,88,89,86,154,161,64,26,19,8,180,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,160,110,24,179,7,52,80,64,26,19,8,180,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,156,59,128,128,221,24,120,64,26,19,8,180,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,180,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,105,116,88,89,86,154,161,64,26,19,8,180,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,185,95,8,252,22,190,144,64,26,19,8,180,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,180,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,180,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,180,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,181,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,181,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,181,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,156,59,128,128,221,24,120,64,26,19,8,181,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,185,95,8,252,22,190,144,64,26,19,8,181,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,105,116,88,89,86,154,161,64,26,19,8,181,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,160,110,24,179,7,52,80,64,26,19,8,181,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,181,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,105,116,88,89,86,154,161,64,26,19,8,181,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,185,95,8,252,22,190,144,64,26,19,8,181,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,181,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,181,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,181,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,141,48,156,218,45,184,162,64,26,19,8,182,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,29,69,255,120,203,176,144,64,26,19,8,182,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,182,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,182,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,182,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,182,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,182,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,29,69,255,120,203,176,144,64,26,19,8,182,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,141,48,156,218,45,184,162,64,26,19,8,182,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,192,226,198,66,190,107,75,64,26,19,8,182,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,152,59,128,128,221,24,120,64,26,19,8,182,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,182,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,182,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,141,48,156,218,45,184,162,64,26,19,8,183,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,29,69,255,120,203,176,144,64,26,19,8,183,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,183,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,183,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,183,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,183,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,183,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,152,59,128,128,221,24,120,64,26,19,8,183,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,29,69,255,120,203,176,144,64,26,19,8,183,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,141,48,156,218,45,184,162,64,26,19,8,183,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,192,226,198,66,190,107,75,64,26,19,8,183,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,183,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,183,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,184,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,184,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,99,95,91,154,95,207,163,64,26,19,8,184,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,64,229,17,177,149,237,72,64,26,19,8,184,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,208,112,146,134,116,51,120,64,26,19,8,184,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,29,69,255,120,203,176,144,64,26,19,8,184,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,184,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,95,91,154,95,207,163,64,26,19,8,184,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,29,69,255,120,203,176,144,64,26,19,8,184,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,184,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,184,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,184,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,184,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,95,91,154,95,207,163,64,26,19,8,185,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,29,69,255,120,203,176,144,64,26,19,8,185,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,185,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,185,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,185,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,185,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,185,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,64,229,17,177,149,237,72,64,26,19,8,185,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,208,112,146,134,116,51,120,64,26,19,8,185,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,29,69,255,120,203,176,144,64,26,19,8,185,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,99,95,91,154,95,207,163,64,26,19,8,185,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,185,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,185,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,186,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,141,15,64,17,125,167,163,64,26,19,8,186,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,235,167,141,68,241,51,64,26,19,8,186,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,57,53,18,6,151,26,64,26,19,8,186,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,228,15,237,114,52,150,144,64,26,19,8,186,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,186,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,95,91,154,95,207,163,64,26,19,8,186,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,29,69,255,120,203,176,144,64,26,19,8,186,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,186,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,186,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,186,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,186,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,186,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,187,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,187,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,187,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,228,15,237,114,52,150,144,64,26,19,8,187,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,141,15,64,17,125,167,163,64,26,19,8,187,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,235,167,141,68,241,51,64,26,19,8,187,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,57,53,18,6,151,26,64,26,19,8,187,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,187,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,95,91,154,95,207,163,64,26,19,8,187,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,29,69,255,120,203,176,144,64,26,19,8,187,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,187,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,187,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,187,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,188,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,188,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,188,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,150,130,104,177,142,143,144,64,26,19,8,188,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,230,200,125,48,42,164,163,64,26,19,8,188,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,120,57,6,173,112,25,112,64,26,19,8,188,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,64,194,59,20,120,221,81,64,26,19,8,188,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,230,200,125,48,42,164,163,64,26,19,8,188,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,150,130,104,177,142,143,144,64,26,19,8,188,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,188,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,230,200,125,48,42,164,163,64,26,19,8,189,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,150,130,104,177,142,143,144,64,26,19,8,189,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,189,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,189,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,189,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,189,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,189,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,120,57,6,173,112,25,112,64,26,19,8,189,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,64,194,59,20,120,221,81,64,26,19,8,189,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,150,130,104,177,142,143,144,64,26,19,8,189,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,230,200,125,48,42,164,163,64,26,19,8,189,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,189,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,189,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,190,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,190,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,190,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,128,148,57,190,252,197,84,64,26,19,8,190,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,158,242,152,129,17,7,147,64,26,19,8,190,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,21,210,214,216,185,200,163,64,26,19,8,190,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,128,8,232,77,179,253,111,64,26,19,8,190,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,190,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,210,214,216,185,200,163,64,26,19,8,190,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,158,242,152,129,17,7,147,64,26,19,8,190,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,190,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,190,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,190,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,210,214,216,185,200,163,64,26,19,8,191,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,158,242,152,129,17,7,147,64,26,19,8,191,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,191,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,191,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,191,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,191,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,191,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,158,242,152,129,17,7,147,64,26,19,8,191,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,21,210,214,216,185,200,163,64,26,19,8,191,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,128,8,232,77,179,253,111,64,26,19,8,191,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,128,148,57,190,252,197,84,64,26,19,8,191,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,191,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,191,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,10,166,29,123,178,210,163,64,26,19,8,192,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,145,10,87,150,133,146,149,64,26,19,8,192,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,192,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,192,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,192,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,192,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,192,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,208,21,95,117,232,134,83,64,26,19,8,192,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,145,10,87,150,133,146,149,64,26,19,8,192,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,10,166,29,123,178,210,163,64,26,19,8,192,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,96,237,242,251,27,115,113,64,26,19,8,192,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,192,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,192,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,193,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,193,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,193,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,208,21,95,117,232,134,83,64,26,19,8,193,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,145,10,87,150,133,146,149,64,26,19,8,193,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,10,166,29,123,178,210,163,64,26,19,8,193,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,96,237,242,251,27,115,113,64,26,19,8,193,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,193,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,10,166,29,123,178,210,163,64,26,19,8,193,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,145,10,87,150,133,146,149,64,26,19,8,193,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,193,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,193,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,193,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,10,166,29,123,178,210,163,64,26,19,8,194,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,145,10,87,150,133,146,149,64,26,19,8,194,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,194,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,194,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,194,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,194,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,194,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,145,10,87,150,133,146,149,64,26,19,8,194,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,10,166,29,123,178,210,163,64,26,19,8,194,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,96,237,242,251,27,115,113,64,26,19,8,194,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,208,21,95,117,232,134,83,64,26,19,8,194,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,194,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,194,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,10,166,29,123,178,210,163,64,26,19,8,195,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,145,10,87,150,133,146,149,64,26,19,8,195,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,195,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,195,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,195,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,195,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,195,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,145,10,87,150,133,146,149,64,26,19,8,195,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,10,166,29,123,178,210,163,64,26,19,8,195,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,96,237,242,251,27,115,113,64,26,19,8,195,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,208,21,95,117,232,134,83,64,26,19,8,195,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,195,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,195,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,144,11,18,141,11,10,138,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,196,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,196,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,196,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,179,201,196,178,58,101,160,64,26,19,8,196,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,143,175,35,133,249,229,144,64,26,19,8,196,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,196,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,179,201,196,178,58,101,160,64,26,19,8,196,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,200,228,53,139,144,0,145,64,26,19,8,196,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,196,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,246,42,144,22,217,117,160,64,26,19,8,196,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,114,132,108,157,85,80,145,64,26,19,8,196,2,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,196,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,149,180,34,7,171,160,64,26,19,8,196,2,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,236,160,121,12,104,30,146,64,26,19,8,196,2,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,196,2,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,61,66,103,248,190,160,64,26,19,8,196,2,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,129,232,61,99,30,130,146,64,26,19,8,196,2,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,196,2,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,119,26,226,177,128,237,160,64,26,19,8,196,2,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,115,66,180,10,244,46,147,64,26,19,8,196,2,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,196,2,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,159,15,65,250,47,161,64,26,19,8,196,2,16,25,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,158,209,60,184,96,246,147,64,26,19,8,196,2,16,26,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,196,2,16,24,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,212,33,71,145,74,161,64,26,19,8,196,2,16,28,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,52,25,1,15,23,90,148,64,26,19,8,196,2,16,29,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,196,2,16,27,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,48,63,70,83,191,127,161,64,26,19,8,196,2,16,31,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,216,229,242,244,70,0,149,64,26,19,8,196,2,16,32,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,196,2,16,30,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,37,19,141,245,183,137,161,64,26,19,8,196,2,16,34,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,251,194,146,63,207,46,149,64,26,19,8,196,2,16,35,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,196,2,16,33,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,1,221,26,252,160,161,64,26,19,8,196,2,16,37,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,10,72,192,206,72,113,149,64,26,19,8,196,2,16,38,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,196,2,16,36,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,196,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,196,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,197,2,16,2,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,99,102,49,49,57,26,19,8,197,2,16,3,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,197,2,16,4,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,33,219,116,141,246,77,160,64,26,19,8,197,2,16,7,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,66,191,138,103,65,173,147,64,26,19,8,197,2,16,8,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,197,2,16,6,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,22,175,187,47,239,87,160,64,26,19,8,197,2,16,10,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,2,183,51,53,21,233,147,64,26,19,8,197,2,16,11,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,197,2,16,9,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,62,68,221,91,31,161,64,26,19,8,197,2,16,13,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,74,47,187,55,196,36,150,64,26,19,8,197,2,16,14,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,197,2,16,12,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,147,36,61,208,115,114,161,64,26,19,8,197,2,16,16,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,39,49,191,35,139,229,150,64,26,19,8,197,2,16,17,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,197,2,16,15,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,126,204,202,20,101,134,161,64,26,19,8,197,2,16,19,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,121,18,35,26,33,8,4,18,8,18,217,76,104,124,249,150,64,26,19,8,197,2,16,20,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,197,2,16,18,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,138,22,182,160,63,216,150,64,26,19,8,197,2,16,23,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,40,10,1,120,18,35,26,33,8,4,18,8,126,204,202,20,101,134,161,64,26,19,8,197,2,16,22,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,197,2,16,21,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,197,2,16,5,26,12,98,255,26,126,217,176,234,142,137,48,70,147,18,19,8,197,2,16,1,26,12,98,255,26,126,217,176,234,142,137,48,70,147,10,246,5,18,243,5,10,240,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,198,2,16,4,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,146,153,64,26,19,8,198,2,16,7,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,77,192,26,19,8,198,2,16,8,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,198,2,16,6,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,199,153,64,26,19,8,198,2,16,10,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,255,255,255,72,192,26,19,8,198,2,16,11,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,198,2,16,9,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,37,154,64,26,19,8,198,2,16,13,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,170,170,170,42,192,26,19,8,198,2,16,14,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,198,2,16,12,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,110,154,64,26,19,8,198,2,16,16,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,85,39,64,26,19,8,198,2,16,17,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,198,2,16,15,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,157,154,64,26,19,8,198,2,16,19,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,40,10,1,121,18,35,26,33,8,4,18,8,84,85,85,85,85,85,55,64,26,19,8,198,2,16,20,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,198,2,16,18,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,198,2,16,5,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,198,2,16,2,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,99,102,54,97,54,26,19,8,198,2,16,3,26,12,98,255,27,2,217,176,234,142,137,48,156,27,18,19,8,198,2,16,1,26,12,98,255,27,2,217,176,234,142,137,48,156,27,10,196,21,18,193,21,10,190,21,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,199,2,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,199,2,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,199,2,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,156,20,10,6,112,111,105,110,116,115,18,145,20,18,142,20,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,110,64,26,19,8,199,2,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,114,64,26,19,8,199,2,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,108,64,26,19,8,199,2,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,114,64,26,19,8,199,2,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,106,64,26,19,8,199,2,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,114,64,26,19,8,199,2,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,101,64,26,19,8,199,2,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,115,64,26,19,8,199,2,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,116,64,26,19,8,199,2,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,101,64,26,19,8,199,2,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,102,64,26,19,8,199,2,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,116,64,26,19,8,199,2,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,104,64,26,19,8,199,2,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,116,64,26,19,8,199,2,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,107,64,26,19,8,199,2,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,116,64,26,19,8,199,2,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,111,64,26,19,8,199,2,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,115,64,26,19,8,199,2,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,114,64,26,19,8,199,2,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,112,64,26,19,8,199,2,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,112,64,26,19,8,199,2,16,37,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,113,64,26,19,8,199,2,16,38,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,36,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,111,64,26,19,8,199,2,16,40,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,113,64,26,19,8,199,2,16,41,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,39,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,103,64,26,19,8,199,2,16,43,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,112,64,26,19,8,199,2,16,44,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,42,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,101,64,26,19,8,199,2,16,46,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,112,64,26,19,8,199,2,16,47,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,45,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,100,64,26,19,8,199,2,16,49,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,112,64,26,19,8,199,2,16,50,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,48,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,100,64,26,19,8,199,2,16,52,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,114,64,26,19,8,199,2,16,53,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,51,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,115,64,26,19,8,199,2,16,56,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,100,64,26,19,8,199,2,16,55,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,54,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,100,64,26,19,8,199,2,16,58,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,116,64,26,19,8,199,2,16,59,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,57,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,100,64,26,19,8,199,2,16,61,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,118,64,26,19,8,199,2,16,62,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,60,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,101,64,26,19,8,199,2,16,64,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,119,64,26,19,8,199,2,16,65,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,63,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,102,64,26,19,8,199,2,16,67,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,119,64,26,19,8,199,2,16,68,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,66,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,103,64,26,19,8,199,2,16,70,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,119,64,26,19,8,199,2,16,71,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,69,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,104,64,26,19,8,199,2,16,73,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,119,64,26,19,8,199,2,16,74,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,72,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,199,2,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,195,8,18,192,8,10,189,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,200,2,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,200,2,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,200,2,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,101,64,26,19,8,200,2,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,99,64,26,19,8,200,2,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,200,2,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,101,64,26,19,8,200,2,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,97,64,26,19,8,200,2,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,200,2,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,200,2,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,200,2,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,200,2,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,107,64,26,19,8,200,2,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,87,64,26,19,8,200,2,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,200,2,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,87,64,26,19,8,200,2,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,107,64,26,19,8,200,2,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,200,2,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,107,64,26,19,8,200,2,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,88,64,26,19,8,200,2,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,200,2,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,108,64,26,19,8,200,2,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,93,64,26,19,8,200,2,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,200,2,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,109,64,26,19,8,200,2,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,98,64,26,19,8,200,2,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,200,2,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,200,2,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,200,2,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,195,8,18,192,8,10,189,8,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,201,2,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,114,64,26,19,8,201,2,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,96,64,26,19,8,201,2,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,201,2,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,114,64,26,19,8,201,2,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,91,64,26,19,8,201,2,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,201,2,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,115,64,26,19,8,201,2,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,86,64,26,19,8,201,2,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,201,2,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,115,64,26,19,8,201,2,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,82,64,26,19,8,201,2,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,201,2,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,116,64,26,19,8,201,2,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,81,64,26,19,8,201,2,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,201,2,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,117,64,26,19,8,201,2,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,84,64,26,19,8,201,2,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,201,2,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,117,64,26,19,8,201,2,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,87,64,26,19,8,201,2,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,201,2,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,118,64,26,19,8,201,2,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,97,64,26,19,8,201,2,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,201,2,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,201,2,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,201,2,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,201,2,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,201,2,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,161,10,18,158,10,10,155,10,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,106,64,26,19,8,202,2,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,99,64,26,19,8,202,2,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,202,2,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,106,64,26,19,8,202,2,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,99,64,26,19,8,202,2,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,202,2,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,108,64,26,19,8,202,2,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,102,64,26,19,8,202,2,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,202,2,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,111,64,26,19,8,202,2,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,104,64,26,19,8,202,2,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,202,2,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,202,2,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,113,64,26,19,8,202,2,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,202,2,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,106,64,26,19,8,202,2,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,114,64,26,19,8,202,2,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,202,2,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,114,64,26,19,8,202,2,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,105,64,26,19,8,202,2,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,202,2,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,115,64,26,19,8,202,2,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,202,2,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,202,2,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,116,64,26,19,8,202,2,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,101,64,26,19,8,202,2,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,202,2,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,116,64,26,19,8,202,2,16,34,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,98,64,26,19,8,202,2,16,35,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,202,2,16,33,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,202,2,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,202,2,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,202,2,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,202,2,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,202,2,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,178,9,18,175,9,10,172,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,203,2,16,2,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,48,50,49,97,51,26,19,8,203,2,16,3,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,203,2,16,4,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,109,64,26,19,8,203,2,16,7,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,99,64,26,19,8,203,2,16,8,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,203,2,16,6,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,110,64,26,19,8,203,2,16,10,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,100,64,26,19,8,203,2,16,11,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,203,2,16,9,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,102,64,26,19,8,203,2,16,14,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,113,64,26,19,8,203,2,16,13,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,203,2,16,12,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,113,64,26,19,8,203,2,16,16,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,103,64,26,19,8,203,2,16,17,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,203,2,16,15,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,114,64,26,19,8,203,2,16,19,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,103,64,26,19,8,203,2,16,20,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,203,2,16,18,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,115,64,26,19,8,203,2,16,22,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,102,64,26,19,8,203,2,16,23,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,203,2,16,21,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,115,64,26,19,8,203,2,16,25,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,100,64,26,19,8,203,2,16,26,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,203,2,16,24,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,116,64,26,19,8,203,2,16,28,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,98,64,26,19,8,203,2,16,29,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,203,2,16,27,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,116,64,26,19,8,203,2,16,31,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,97,64,26,19,8,203,2,16,32,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,203,2,16,30,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,203,2,16,5,26,12,98,255,26,119,217,176,234,142,137,48,70,13,18,19,8,203,2,16,1,26,12,98,255,26,119,217,176,234,142,137,48,70,13,10,179,22,18,176,22,10,173,22,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,204,2,16,2,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,51,53,52,56,51,26,19,8,204,2,16,3,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,204,2,16,4,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,139,21,10,6,112,111,105,110,116,115,18,128,21,18,253,20,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,151,64,26,19,8,204,2,16,7,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,138,64,26,19,8,204,2,16,8,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,6,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,149,64,26,19,8,204,2,16,10,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,138,64,26,19,8,204,2,16,11,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,9,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,149,64,26,19,8,204,2,16,13,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,138,64,26,19,8,204,2,16,14,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,12,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,149,64,26,19,8,204,2,16,16,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,138,64,26,19,8,204,2,16,17,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,15,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,148,64,26,19,8,204,2,16,19,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,137,64,26,19,8,204,2,16,20,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,18,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,137,64,26,19,8,204,2,16,23,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,148,64,26,19,8,204,2,16,22,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,21,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,150,64,26,19,8,204,2,16,25,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,136,64,26,19,8,204,2,16,26,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,24,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,151,64,26,19,8,204,2,16,28,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,136,64,26,19,8,204,2,16,29,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,27,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,151,64,26,19,8,204,2,16,31,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,136,64,26,19,8,204,2,16,32,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,30,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,151,64,26,19,8,204,2,16,34,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,136,64,26,19,8,204,2,16,35,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,33,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,151,64,26,19,8,204,2,16,37,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,136,64,26,19,8,204,2,16,38,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,36,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,151,64,26,19,8,204,2,16,40,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,137,64,26,19,8,204,2,16,41,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,39,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,137,64,26,19,8,204,2,16,44,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,151,64,26,19,8,204,2,16,43,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,42,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,151,64,26,19,8,204,2,16,46,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,138,64,26,19,8,204,2,16,47,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,45,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,151,64,26,19,8,204,2,16,49,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,139,64,26,19,8,204,2,16,50,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,48,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,151,64,26,19,8,204,2,16,52,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,139,64,26,19,8,204,2,16,53,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,51,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,151,64,26,19,8,204,2,16,55,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,140,64,26,19,8,204,2,16,56,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,54,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,151,64,26,19,8,204,2,16,58,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,140,64,26,19,8,204,2,16,59,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,57,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,150,64,26,19,8,204,2,16,61,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,140,64,26,19,8,204,2,16,62,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,60,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,150,64,26,19,8,204,2,16,64,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,141,64,26,19,8,204,2,16,65,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,63,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,149,64,26,19,8,204,2,16,67,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,141,64,26,19,8,204,2,16,68,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,66,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,149,64,26,19,8,204,2,16,70,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,141,64,26,19,8,204,2,16,71,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,69,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,149,64,26,19,8,204,2,16,73,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,141,64,26,19,8,204,2,16,74,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,72,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,148,64,26,19,8,204,2,16,76,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,141,64,26,19,8,204,2,16,77,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,75,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,5,26,12,98,255,27,85,217,176,234,142,137,48,185,36,18,19,8,204,2,16,1,26,12,98,255,27,85,217,176,234,142,137,48,185,36,10,255,11,18,252,11,10,249,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,205,2,16,2,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,50,55,52,57,101,26,19,8,205,2,16,3,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,20,64,26,19,8,205,2,16,4,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,215,10,10,6,112,111,105,110,116,115,18,204,10,18,201,10,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,138,163,64,26,19,8,205,2,16,7,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,90,192,26,19,8,205,2,16,8,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,205,2,16,6,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,163,64,26,19,8,205,2,16,10,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,84,192,26,19,8,205,2,16,11,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,205,2,16,9,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,150,163,64,26,19,8,205,2,16,13,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,80,192,26,19,8,205,2,16,14,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,205,2,16,12,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,163,64,26,19,8,205,2,16,16,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,73,192,26,19,8,205,2,16,17,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,205,2,16,15,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,146,163,64,26,19,8,205,2,16,19,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,69,192,26,19,8,205,2,16,20,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,205,2,16,18,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,163,64,26,19,8,205,2,16,22,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,60,192,26,19,8,205,2,16,23,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,205,2,16,21,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,122,163,64,26,19,8,205,2,16,25,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,50,192,26,19,8,205,2,16,26,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,205,2,16,24,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,163,64,26,19,8,205,2,16,28,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,192,26,19,8,205,2,16,29,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,205,2,16,27,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,142,163,64,26,19,8,205,2,16,31,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,191,26,19,8,205,2,16,32,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,205,2,16,30,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,150,163,64,26,19,8,205,2,16,34,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,38,64,26,19,8,205,2,16,35,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,205,2,16,33,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,150,163,64,26,19,8,205,2,16,37,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,51,64,26,19,8,205,2,16,38,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,205,2,16,36,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,130,163,64,26,19,8,205,2,16,40,26,12,98,255,26,232,217,176,234,142,137,48,132,166,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,67,64,26,19,8,205,2,16,41,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,205,2,16,39,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,205,2,16,5,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,205,2,16,1,26,12,98,255,26,232,217,176,234,142,137,48,132,166,18,19,8,203,1,16,1,26,12,98,255,26,118,217,176,234,142,137,48,69,220,34,19,8,206,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,35,10,6,105,109,103,85,114,108,18,25,26,23,8,5,26,19,8,135,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,54,10,6,105,109,103,85,114,108,18,44,26,42,26,19,8,134,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,42,19,8,135,7,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,56,10,6,105,109,103,85,114,108,18,46,26,44,8,5,26,19,8,204,1,16,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,42,19,8,206,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,54,10,6,105,109,103,85,114,108,18,44,26,42,26,19,8,189,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,42,19,8,190,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,56,10,6,105,109,103,85,114,108,18,46,26,44,8,5,26,19,8,190,3,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,42,19,8,134,7,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,52,10,6,105,109,103,85,114,108,18,42,26,40,26,18,8,123,16,2,26,12,98,255,26,207,217,176,234,142,137,48,116,127,42,18,8,124,16,1,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,54,10,6,105,109,103,85,114,108,18,44,26,42,26,19,8,203,1,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,42,19,8,204,1,16,1,26,12,98,255,26,212,217,176,234,142,137,48,119,140,10,54,10,6,105,109,103,85,114,108,18,44,26,42,8,5,26,18,8,113,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,42,18,8,123,16,2,26,12,98,255,26,207,217,176,234,142,137,48,116,127,10,56,10,6,105,109,103,85,114,108,18,46,26,44,8,5,26,19,8,207,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,42,19,8,189,3,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,52,10,6,105,109,103,85,114,108,18,42,26,40,26,18,8,111,16,2,26,12,98,255,26,188,217,176,234,142,137,48,110,68,42,18,8,113,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,54,10,6,105,109,103,85,114,108,18,44,26,42,8,5,26,18,8,107,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,42,18,8,111,16,2,26,12,98,255,26,188,217,176,234,142,137,48,110,68,10,52,10,6,105,109,103,85,114,108,18,42,26,40,26,18,8,19,16,2,26,12,98,254,235,13,217,176,234,142,137,44,239,169,42,18,8,20,16,1,26,12,98,254,235,13,217,176,234,142,137,44,239,169,10,54,10,6,105,109,103,85,114,108,18,44,26,42,8,5,26,18,8,80,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,42,18,8,105,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,32,10,6,105,109,103,85,114,108,18,22,26,20,26,18,8,74,16,2,26,12,98,255,26,134,217,176,234,142,137,48,76,224,10,146,1,10,6,105,109,103,85,114,108,18,135,1,26,132,1,8,5,18,87,104,116,116,112,58,47,47,114,101,115,46,99,108,111,117,100,105,110,97,114,121,46,99,111,109,47,121,111,114,107,105,101,45,116,101,97,109,47,105,109,97,103,101,47,117,112,108,111,97,100,47,118,49,54,54,48,56,56,53,55,50,51,47,106,104,122,106,122,113,98,120,54,107,106,98,112,99,114,110,97,105,109,121,46,112,110,103,26,18,8,124,16,1,26,12,98,255,26,207,217,176,234,142,137,48,116,127,42,19,8,203,1,16,2,26,12,98,255,26,118,217,176,234,142,137,48,69,220,10,54,10,6,105,109,103,85,114,108,18,44,26,42,8,5,26,18,8,2,16,1,26,12,98,254,234,202,217,176,234,142,137,44,234,32,42,18,8,19,16,2,26,12,98,254,235,13,217,176,234,142,137,44,239,169,10,52,10,6,105,109,103,85,114,108,18,42,26,40,26,18,8,105,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,42,18,8,107,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,52,10,6,105,109,103,85,114,108,18,42,26,40,26,18,8,77,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,42,18,8,80,16,1,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,54,10,6,105,109,103,85,114,108,18,44,26,42,26,19,8,206,2,16,2,26,12,98,255,29,105,217,176,234,142,137,48,231,211,42,19,8,207,2,16,1,26,12,98,255,29,105,217,176,234,142,137,48,231,211,10,54,10,6,105,109,103,85,114,108,18,44,26,42,8,5,26,18,8,20,16,1,26,12,98,254,235,13,217,176,234,142,137,44,239,169,42,18,8,77,16,2,26,12,98,255,26,128,217,176,234,142,137,48,71,4,10,33,10,6,105,109,97,103,101,115,18,23,18,21,18,19,8,214,7,16,1,26,12,99,49,188,59,152,207,109,6,237,55,30,140,18,14,26,12,0,0,0,0,0,0,0,0,0,0,0,0'; diff --git a/test/bench/index.ts b/test/bench/index.ts deleted file mode 100644 index a18ae4909..000000000 --- a/test/bench/index.ts +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright 2022 The Yorkie Authors. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import * as Benchmark from 'benchmark'; -import documentTests from './document_test'; -import toonieTests from './toonie_test'; - -const suite = new Benchmark.Suite(); - -const runners = [...documentTests, ...toonieTests]; - -runners.forEach(({ name, run }) => { - suite.add(name, run); -}); - -suite - .on('cycle', (event: Benchmark.Event) => { - console.log(String(event.target)); - }) - .run({ async: true }); diff --git a/test/bench/nXIQ0KX_buffer.ts b/test/bench/nXIQ0KX_buffer.ts deleted file mode 100644 index 742ad8d23..000000000 --- a/test/bench/nXIQ0KX_buffer.ts +++ /dev/null @@ -1,2 +0,0 @@ -export const nXIQ0KXbuffer = - '10,213,220,67,10,243,206,67,10,6,115,104,97,112,101,115,18,231,206,67,18,227,206,67,10,246,4,18,243,4,10,240,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,5,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,5,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,5,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,122,143,64,26,18,8,5,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,32,114,64,26,18,8,5,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,5,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,208,113,64,26,18,8,5,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,6,144,64,26,18,8,5,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,5,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,101,113,64,26,18,8,5,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,84,145,64,26,18,8,5,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,5,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,145,64,26,18,8,5,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,101,113,64,26,18,8,5,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,5,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,5,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,5,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,226,5,18,223,5,10,220,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,6,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,6,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,6,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,13,144,64,26,18,8,6,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,117,112,64,26,18,8,6,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,6,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,143,64,26,18,8,6,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,5,114,64,26,18,8,6,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,6,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,149,143,64,26,18,8,6,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,165,114,64,26,18,8,6,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,6,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,242,143,64,26,18,8,6,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,42,115,64,26,18,8,6,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,6,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,144,64,26,18,8,6,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,176,115,64,26,18,8,6,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,6,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,6,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,6,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,186,7,18,183,7,10,180,7,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,7,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,7,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,7,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,150,6,10,6,112,111,105,110,116,115,18,139,6,18,136,6,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,170,145,64,26,18,8,7,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,85,108,64,26,18,8,7,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,7,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,157,145,64,26,18,8,7,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,202,109,64,26,18,8,7,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,7,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,157,145,64,26,18,8,7,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,90,112,64,26,18,8,7,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,7,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,190,145,64,26,18,8,7,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,21,113,64,26,18,8,7,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,7,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,145,64,26,18,8,7,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,21,113,64,26,18,8,7,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,7,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,146,64,26,18,8,7,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,224,112,64,26,18,8,7,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,7,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,224,112,64,26,18,8,7,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,1,146,64,26,18,8,7,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,7,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,7,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,7,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,138,4,18,135,4,10,132,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,8,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,8,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,145,64,26,18,8,8,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,224,112,64,26,18,8,8,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,8,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,230,145,64,26,18,8,8,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,224,112,64,26,18,8,8,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,8,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,5,114,64,26,18,8,8,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,237,145,64,26,18,8,8,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,8,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,8,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,8,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,8,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,246,4,18,243,4,10,240,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,9,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,9,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,9,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,164,145,64,26,18,8,9,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,245,114,64,26,18,8,9,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,9,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,210,145,64,26,18,8,9,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,165,114,64,26,18,8,9,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,9,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,112,114,64,26,18,8,9,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,108,146,64,26,18,8,9,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,9,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,108,146,64,26,18,8,9,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,85,114,64,26,18,8,9,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,9,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,9,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,9,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,246,4,18,243,4,10,240,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,10,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,121,146,64,26,18,8,10,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,0,110,64,26,18,8,10,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,10,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,146,64,26,18,8,10,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,202,109,64,26,18,8,10,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,10,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,221,146,64,26,18,8,10,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,202,109,64,26,18,8,10,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,10,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,241,146,64,26,18,8,10,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,96,109,64,26,18,8,10,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,10,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,10,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,10,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,10,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,10,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,206,6,18,203,6,10,200,6,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,11,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,11,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,170,5,10,6,112,111,105,110,116,115,18,159,5,18,156,5,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,54,146,64,26,18,8,11,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,245,108,64,26,18,8,11,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,11,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,146,64,26,18,8,11,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,117,111,64,26,18,8,11,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,11,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,146,64,26,18,8,11,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,117,112,64,26,18,8,11,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,11,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,154,146,64,26,18,8,11,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,224,112,64,26,18,8,11,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,11,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,214,146,64,26,18,8,11,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,197,112,64,26,18,8,11,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,11,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,117,112,64,26,18,8,11,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,201,146,64,26,18,8,11,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,11,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,11,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,11,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,11,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,158,3,18,155,3,10,152,3,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,12,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,101,146,64,26,18,8,12,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,170,111,64,26,18,8,12,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,12,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,18,147,64,26,18,8,12,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,37,112,64,26,18,8,12,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,12,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,12,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,12,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,12,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,12,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,138,4,18,135,4,10,132,4,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,114,146,64,26,18,8,13,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,112,114,64,26,18,8,13,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,13,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,32,114,64,26,18,8,13,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,161,146,64,26,18,8,13,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,13,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,5,114,64,26,18,8,13,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,38,147,64,26,18,8,13,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,13,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,13,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,13,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,13,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,13,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,13,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,138,4,18,135,4,10,132,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,14,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,14,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,14,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,224,106,64,26,18,8,14,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,65,147,64,26,18,8,14,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,14,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,78,147,64,26,18,8,14,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,96,109,64,26,18,8,14,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,14,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,117,111,64,26,18,8,14,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,147,64,26,18,8,14,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,14,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,14,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,14,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,15,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,15,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,15,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,98,147,64,26,18,8,15,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,106,110,64,26,18,8,15,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,15,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,185,147,64,26,18,8,15,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,42,109,64,26,18,8,15,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,15,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,15,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,15,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,246,4,18,243,4,10,240,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,16,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,198,147,64,26,18,8,16,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,32,108,64,26,18,8,16,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,16,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,147,64,26,18,8,16,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,202,109,64,26,18,8,16,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,16,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,178,147,64,26,18,8,16,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,213,110,64,26,18,8,16,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,16,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,158,147,64,26,18,8,16,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,117,111,64,26,18,8,16,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,16,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,16,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,16,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,16,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,16,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,17,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,17,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,17,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,147,64,26,18,8,17,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,224,111,64,26,18,8,17,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,17,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,185,147,64,26,18,8,17,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,224,111,64,26,18,8,17,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,17,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,17,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,17,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,158,3,18,155,3,10,152,3,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,58,147,64,26,18,8,18,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,64,112,64,26,18,8,18,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,18,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,117,112,64,26,18,8,18,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,147,64,26,18,8,18,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,18,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,18,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,18,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,18,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,18,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,18,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,19,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,19,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,19,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,117,112,64,26,18,8,19,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,145,147,64,26,18,8,19,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,19,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,132,147,64,26,18,8,19,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,101,113,64,26,18,8,19,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,19,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,19,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,19,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,166,8,18,163,8,10,160,8,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,20,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,20,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,20,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,130,7,10,6,112,111,105,110,116,115,18,247,6,18,244,6,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,78,147,64,26,18,8,20,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,74,113,64,26,18,8,20,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,20,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,158,147,64,26,18,8,20,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,101,113,64,26,18,8,20,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,20,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,205,147,64,26,18,8,20,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,154,113,64,26,18,8,20,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,20,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,212,147,64,26,18,8,20,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,181,113,64,26,18,8,20,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,20,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,205,147,64,26,18,8,20,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,181,113,64,26,18,8,20,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,20,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,198,147,64,26,18,8,20,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,32,114,64,26,18,8,20,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,20,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,192,114,64,26,18,8,20,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,198,147,64,26,18,8,20,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,20,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,205,147,64,26,18,8,20,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,165,114,64,26,18,8,20,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,20,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,20,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,20,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,138,4,18,135,4,10,132,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,21,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,21,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,21,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,76,148,64,26,18,8,21,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,245,108,64,26,18,8,21,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,21,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,148,64,26,18,8,21,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,10,112,64,26,18,8,21,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,21,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,148,64,26,18,8,21,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,224,111,64,26,18,8,21,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,21,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,21,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,21,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,254,9,18,251,9,10,248,9,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,22,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,22,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,218,8,10,6,112,111,105,110,116,115,18,207,8,18,204,8,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,148,64,26,18,8,22,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,245,108,64,26,18,8,22,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,22,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,192,108,64,26,18,8,22,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,122,148,64,26,18,8,22,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,22,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,169,148,64,26,18,8,22,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,245,108,64,26,18,8,22,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,22,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,202,148,64,26,18,8,22,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,106,110,64,26,18,8,22,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,22,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,169,148,64,26,18,8,22,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,90,112,64,26,18,8,22,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,22,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,148,64,26,18,8,22,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,117,112,64,26,18,8,22,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,22,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,156,148,64,26,18,8,22,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,37,112,64,26,18,8,22,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,22,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,182,148,64,26,18,8,22,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,37,112,64,26,18,8,22,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,22,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,64,112,64,26,18,8,22,16,32,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,189,148,64,26,18,8,22,16,31,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,22,16,30,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,182,148,64,26,18,8,22,16,34,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,90,112,64,26,18,8,22,16,35,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,22,16,33,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,22,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,22,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,22,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,23,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,23,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,23,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,117,112,64,26,18,8,23,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,149,148,64,26,18,8,23,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,23,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,148,64,26,18,8,23,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,234,113,64,26,18,8,23,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,23,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,23,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,23,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,138,4,18,135,4,10,132,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,24,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,129,148,64,26,18,8,24,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,234,113,64,26,18,8,24,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,24,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,236,148,64,26,18,8,24,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,181,113,64,26,18,8,24,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,24,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,6,149,64,26,18,8,24,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,128,113,64,26,18,8,24,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,24,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,24,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,24,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,24,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,24,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,138,4,18,135,4,10,132,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,25,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,25,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,149,64,26,18,8,25,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,192,108,64,26,18,8,25,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,25,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,149,64,26,18,8,25,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,245,108,64,26,18,8,25,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,25,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,106,149,64,26,18,8,25,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,192,108,64,26,18,8,25,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,25,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,25,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,25,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,25,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,186,7,18,183,7,10,180,7,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,26,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,26,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,26,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,150,6,10,6,112,111,105,110,116,115,18,139,6,18,136,6,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,13,149,64,26,18,8,26,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,192,108,64,26,18,8,26,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,26,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,6,149,64,26,18,8,26,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,245,108,64,26,18,8,26,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,26,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,26,149,64,26,18,8,26,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,117,111,64,26,18,8,26,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,26,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,53,149,64,26,18,8,26,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,37,112,64,26,18,8,26,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,26,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,73,149,64,26,18,8,26,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,64,112,64,26,18,8,26,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,26,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,149,64,26,18,8,26,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,64,112,64,26,18,8,26,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,26,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,106,149,64,26,18,8,26,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,170,111,64,26,18,8,26,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,26,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,26,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,26,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,138,4,18,135,4,10,132,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,27,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,27,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,27,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,106,149,64,26,18,8,27,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,213,110,64,26,18,8,27,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,27,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,106,149,64,26,18,8,27,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,160,110,64,26,18,8,27,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,27,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,173,149,64,26,18,8,27,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,106,110,64,26,18,8,27,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,27,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,27,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,27,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,28,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,28,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,28,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,180,149,64,26,18,8,28,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,202,109,64,26,18,8,28,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,28,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,170,111,64,26,18,8,28,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,193,149,64,26,18,8,28,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,28,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,28,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,28,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,138,4,18,135,4,10,132,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,29,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,29,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,29,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,220,149,64,26,18,8,29,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,192,108,64,26,18,8,29,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,29,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,149,64,26,18,8,29,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,53,110,64,26,18,8,29,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,29,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,149,64,26,18,8,29,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,10,112,64,26,18,8,29,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,29,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,29,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,29,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,186,7,18,183,7,10,180,7,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,30,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,30,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,30,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,150,6,10,6,112,111,105,110,116,115,18,139,6,18,136,6,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,146,149,64,26,18,8,30,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,224,112,64,26,18,8,30,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,30,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,10,150,64,26,18,8,30,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,224,112,64,26,18,8,30,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,30,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,149,64,26,18,8,30,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,101,113,64,26,18,8,30,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,30,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,181,113,64,26,18,8,30,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,193,149,64,26,18,8,30,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,30,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,186,149,64,26,18,8,30,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,5,114,64,26,18,8,30,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,30,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,193,149,64,26,18,8,30,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,32,114,64,26,18,8,30,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,30,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,50,150,64,26,18,8,30,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,58,114,64,26,18,8,30,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,30,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,30,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,30,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,214,11,18,211,11,10,208,11,10,178,10,10,6,112,111,105,110,116,115,18,167,10,18,164,10,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,77,150,64,26,18,8,31,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,138,108,64,26,18,8,31,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,31,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,117,150,64,26,18,8,31,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,85,108,64,26,18,8,31,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,31,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,150,150,64,26,18,8,31,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,138,108,64,26,18,8,31,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,31,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,157,150,64,26,18,8,31,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,53,110,64,26,18,8,31,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,31,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,150,64,26,18,8,31,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,160,110,64,26,18,8,31,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,31,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,160,110,64,26,18,8,31,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,77,150,64,26,18,8,31,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,31,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,57,150,64,26,18,8,31,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,10,111,64,26,18,8,31,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,31,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,57,150,64,26,18,8,31,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,10,112,64,26,18,8,31,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,31,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,70,150,64,26,18,8,31,16,31,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,64,112,64,26,18,8,31,16,32,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,31,16,30,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,150,150,64,26,18,8,31,16,34,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,117,112,64,26,18,8,31,16,35,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,31,16,33,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,177,150,64,26,18,8,31,16,37,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,117,112,64,26,18,8,31,16,38,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,31,16,36,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,150,64,26,18,8,31,16,40,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,10,112,64,26,18,8,31,16,41,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,31,16,39,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,31,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,31,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,31,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,31,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,31,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,226,5,18,223,5,10,220,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,32,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,32,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,32,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,177,150,64,26,18,8,32,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,74,107,64,26,18,8,32,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,32,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,150,64,26,18,8,32,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,173,170,170,170,170,74,107,64,26,18,8,32,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,32,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,150,64,26,18,8,32,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,2,0,0,0,0,32,108,64,26,18,8,32,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,32,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,210,150,64,26,18,8,32,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,87,85,85,85,85,213,110,64,26,18,8,32,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,32,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,210,150,64,26,18,8,32,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,37,112,64,26,18,8,32,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,32,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,32,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,32,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,214,11,18,211,11,10,208,11,10,178,10,10,6,112,111,105,110,116,115,18,167,10,18,164,10,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,150,150,64,26,18,8,33,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,250,112,64,26,18,8,33,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,33,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,190,150,64,26,18,8,33,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,224,112,64,26,18,8,33,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,33,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,150,64,26,18,8,33,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,48,113,64,26,18,8,33,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,33,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,244,150,64,26,18,8,33,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,208,113,64,26,18,8,33,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,33,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,237,150,64,26,18,8,33,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,112,114,64,26,18,8,33,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,33,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,86,85,85,85,85,165,114,64,26,18,8,33,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,150,64,26,18,8,33,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,33,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,170,150,64,26,18,8,33,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,192,114,64,26,18,8,33,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,33,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,150,64,26,18,8,33,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,32,114,64,26,18,8,33,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,33,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,137,150,64,26,18,8,33,16,31,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,74,113,64,26,18,8,33,16,32,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,33,16,30,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,150,150,64,26,18,8,33,16,34,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,250,112,64,26,18,8,33,16,35,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,33,16,33,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,190,150,64,26,18,8,33,16,37,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,172,170,170,170,170,250,112,64,26,18,8,33,16,38,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,33,16,36,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,210,150,64,26,18,8,33,16,40,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,1,0,0,0,0,48,113,64,26,18,8,33,16,41,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,33,16,39,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,33,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,33,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,33,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,33,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,33,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,226,5,18,223,5,10,220,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,34,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,34,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,34,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,162,143,64,26,18,8,34,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,202,141,64,26,18,8,34,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,34,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,66,144,64,26,18,8,34,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,122,141,64,26,18,8,34,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,34,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,70,145,64,26,18,8,34,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,245,140,64,26,18,8,34,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,34,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,70,145,64,26,18,8,34,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,231,140,64,26,18,8,34,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,34,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,44,145,64,26,18,8,34,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,245,140,64,26,18,8,34,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,34,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,34,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,34,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,226,5,18,223,5,10,220,5,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,6,144,64,26,18,8,35,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,218,140,64,26,18,8,35,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,35,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,143,64,26,18,8,35,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,175,141,64,26,18,8,35,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,35,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,143,64,26,18,8,35,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,242,141,64,26,18,8,35,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,35,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,189,143,64,26,18,8,35,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,26,142,64,26,18,8,35,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,35,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,144,64,26,18,8,35,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,66,142,64,26,18,8,35,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,35,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,35,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,35,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,35,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,35,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,35,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,246,4,18,243,4,10,240,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,36,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,36,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,36,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,141,139,64,26,18,8,36,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,117,145,64,26,18,8,36,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,36,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,137,145,64,26,18,8,36,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,127,139,64,26,18,8,36,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,36,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,230,145,64,26,18,8,36,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,141,139,64,26,18,8,36,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,36,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,28,146,64,26,18,8,36,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,101,139,64,26,18,8,36,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,36,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,36,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,36,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,186,7,18,183,7,10,180,7,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,37,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,37,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,37,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,150,6,10,6,112,111,105,110,116,115,18,139,6,18,136,6,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,150,145,64,26,18,8,37,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,114,139,64,26,18,8,37,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,37,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,137,145,64,26,18,8,37,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,234,139,64,26,18,8,37,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,37,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,157,145,64,26,18,8,37,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,71,140,64,26,18,8,37,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,37,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,190,145,64,26,18,8,37,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,98,140,64,26,18,8,37,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,37,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,14,146,64,26,18,8,37,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,98,140,64,26,18,8,37,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,37,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,146,64,26,18,8,37,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,58,140,64,26,18,8,37,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,37,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,28,146,64,26,18,8,37,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,45,140,64,26,18,8,37,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,37,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,37,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,37,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,246,4,18,243,4,10,240,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,38,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,38,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,204,145,64,26,18,8,38,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,71,140,64,26,18,8,38,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,38,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,204,145,64,26,18,8,38,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,231,140,64,26,18,8,38,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,38,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,190,145,64,26,18,8,38,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,42,141,64,26,18,8,38,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,38,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,145,64,26,18,8,38,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,42,141,64,26,18,8,38,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,38,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,38,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,38,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,38,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,246,4,18,243,4,10,240,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,39,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,39,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,39,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,145,64,26,18,8,39,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,29,141,64,26,18,8,39,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,39,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,41,146,64,26,18,8,39,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,29,141,64,26,18,8,39,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,39,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,61,146,64,26,18,8,39,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,15,141,64,26,18,8,39,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,39,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,146,64,26,18,8,39,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,231,140,64,26,18,8,39,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,39,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,39,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,39,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,206,6,18,203,6,10,200,6,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,40,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,40,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,40,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,170,5,10,6,112,111,105,110,116,115,18,159,5,18,156,5,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,54,146,64,26,18,8,40,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,197,138,64,26,18,8,40,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,40,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,74,146,64,26,18,8,40,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,234,139,64,26,18,8,40,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,40,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,121,146,64,26,18,8,40,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,71,140,64,26,18,8,40,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,40,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,154,146,64,26,18,8,40,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,71,140,64,26,18,8,40,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,40,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,161,146,64,26,18,8,40,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,45,140,64,26,18,8,40,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,40,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,154,146,64,26,18,8,40,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,247,139,64,26,18,8,40,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,40,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,40,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,40,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,246,4,18,243,4,10,240,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,41,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,41,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,194,139,64,26,18,8,41,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,146,64,26,18,8,41,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,41,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,134,146,64,26,18,8,41,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,181,139,64,26,18,8,41,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,41,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,234,146,64,26,18,8,41,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,167,139,64,26,18,8,41,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,41,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,5,147,64,26,18,8,41,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,127,139,64,26,18,8,41,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,41,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,41,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,41,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,41,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,246,4,18,243,4,10,240,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,42,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,42,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,42,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,146,64,26,18,8,42,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,7,139,64,26,18,8,42,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,42,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,5,147,64,26,18,8,42,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,114,139,64,26,18,8,42,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,42,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,5,147,64,26,18,8,42,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,247,139,64,26,18,8,42,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,42,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,71,140,64,26,18,8,42,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,146,64,26,18,8,42,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,42,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,42,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,42,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,226,5,18,223,5,10,220,5,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,43,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,43,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,12,147,64,26,18,8,43,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,18,140,64,26,18,8,43,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,43,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,194,146,64,26,18,8,43,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,151,140,64,26,18,8,43,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,43,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,231,140,64,26,18,8,43,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,174,146,64,26,18,8,43,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,43,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,174,146,64,26,18,8,43,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,245,140,64,26,18,8,43,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,43,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,188,146,64,26,18,8,43,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,245,140,64,26,18,8,43,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,43,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,43,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,43,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,43,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,44,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,44,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,44,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,147,64,26,18,8,44,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,165,140,64,26,18,8,44,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,44,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,218,140,64,26,18,8,44,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,147,64,26,18,8,44,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,44,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,44,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,44,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,138,5,18,135,5,10,132,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,45,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,45,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,45,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,42,148,64,26,18,8,45,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,223,138,64,26,18,8,45,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,45,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,76,148,64,26,18,8,45,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,237,138,64,26,18,8,45,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,45,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,122,148,64,26,18,8,45,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,47,139,64,26,18,8,45,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,45,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,122,148,64,26,18,8,45,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,74,139,64,26,18,8,45,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,45,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,45,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,45,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,81,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,166,9,18,163,9,10,160,9,10,238,7,10,6,112,111,105,110,116,115,18,227,7,18,224,7,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,22,148,64,26,18,8,46,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,114,139,64,26,18,8,46,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,46,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,167,139,64,26,18,8,46,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,102,148,64,26,18,8,46,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,46,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,129,148,64,26,18,8,46,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,207,139,64,26,18,8,46,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,46,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,148,64,26,18,8,46,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,18,140,64,26,18,8,46,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,46,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,148,64,26,18,8,46,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,85,140,64,26,18,8,46,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,46,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,111,140,64,26,18,8,46,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,76,148,64,26,18,8,46,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,46,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,42,148,64,26,18,8,46,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,71,140,64,26,18,8,46,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,46,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,42,148,64,26,18,8,46,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,207,139,64,26,18,8,46,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,46,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,62,148,64,26,18,8,46,16,31,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,181,139,64,26,18,8,46,16,32,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,46,16,30,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,46,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,46,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,46,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,46,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,46,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,80,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,158,4,18,155,4,10,152,4,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,148,64,26,18,8,47,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,154,139,64,26,18,8,47,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,47,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,182,148,64,26,18,8,47,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,98,140,64,26,18,8,47,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,47,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,111,140,64,26,18,8,47,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,169,148,64,26,18,8,47,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,47,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,47,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,47,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,47,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,47,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,47,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,79,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,178,3,18,175,3,10,172,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,48,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,48,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,48,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,182,148,64,26,18,8,48,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,234,139,64,26,18,8,48,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,48,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,6,149,64,26,18,8,48,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,234,139,64,26,18,8,48,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,48,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,48,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,48,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,79,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,166,9,18,163,9,10,160,9,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,49,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,49,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,238,7,10,6,112,111,105,110,116,115,18,227,7,18,224,7,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,13,149,64,26,18,8,49,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,127,139,64,26,18,8,49,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,49,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,60,149,64,26,18,8,49,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,127,139,64,26,18,8,49,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,49,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,106,149,64,26,18,8,49,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,154,139,64,26,18,8,49,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,49,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,86,149,64,26,18,8,49,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,221,139,64,26,18,8,49,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,49,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,5,140,64,26,18,8,49,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,86,149,64,26,18,8,49,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,49,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,53,149,64,26,18,8,49,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,58,140,64,26,18,8,49,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,49,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,20,149,64,26,18,8,49,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,85,140,64,26,18,8,49,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,49,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,13,149,64,26,18,8,49,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,98,140,64,26,18,8,49,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,49,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,20,149,64,26,18,8,49,16,31,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,111,140,64,26,18,8,49,16,32,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,49,16,30,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,49,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,49,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,49,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,78,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,158,4,18,155,4,10,152,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,50,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,50,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,50,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,149,64,26,18,8,50,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,85,140,64,26,18,8,50,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,50,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,111,140,64,26,18,8,50,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,113,149,64,26,18,8,50,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,50,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,113,149,64,26,18,8,50,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,98,140,64,26,18,8,50,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,50,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,50,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,50,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,82,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,246,5,18,243,5,10,240,5,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,149,64,26,18,8,51,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,114,139,64,26,18,8,51,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,51,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,141,139,64,26,18,8,51,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,193,149,64,26,18,8,51,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,51,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,149,64,26,18,8,51,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,98,140,64,26,18,8,51,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,51,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,220,149,64,26,18,8,51,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,178,140,64,26,18,8,51,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,51,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,151,140,64,26,18,8,51,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,213,149,64,26,18,8,51,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,51,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,51,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,51,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,51,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,51,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,51,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,78,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,158,4,18,155,4,10,152,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,52,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,52,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,52,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,149,64,26,18,8,52,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,61,139,64,26,18,8,52,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,52,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,253,149,64,26,18,8,52,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,87,139,64,26,18,8,52,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,52,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,10,150,64,26,18,8,52,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,207,139,64,26,18,8,52,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,52,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,52,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,52,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,83,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,186,8,18,183,8,10,180,8,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,53,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,53,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,130,7,10,6,112,111,105,110,116,115,18,247,6,18,244,6,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,17,150,64,26,18,8,53,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,74,139,64,26,18,8,53,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,53,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,50,150,64,26,18,8,53,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,74,139,64,26,18,8,53,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,53,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,150,64,26,18,8,53,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,114,139,64,26,18,8,53,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,53,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,57,150,64,26,18,8,53,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,221,139,64,26,18,8,53,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,53,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,17,150,64,26,18,8,53,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,5,140,64,26,18,8,53,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,53,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,149,64,26,18,8,53,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,247,139,64,26,18,8,53,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,53,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,57,150,64,26,18,8,53,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,234,139,64,26,18,8,53,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,53,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,90,150,64,26,18,8,53,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,194,139,64,26,18,8,53,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,53,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,53,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,53,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,53,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,77,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,178,3,18,175,3,10,172,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,54,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,54,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,54,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,150,64,26,18,8,54,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,87,139,64,26,18,8,54,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,54,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,150,64,26,18,8,54,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,221,139,64,26,18,8,54,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,54,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,54,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,54,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,76,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,178,3,18,175,3,10,172,3,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,55,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,150,64,26,18,8,55,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,207,139,64,26,18,8,55,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,55,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,197,150,64,26,18,8,55,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,194,139,64,26,18,8,55,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,55,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,55,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,55,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,55,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,55,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,84,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,138,5,18,135,5,10,132,5,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,56,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,56,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,97,150,64,26,18,8,56,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,85,140,64,26,18,8,56,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,56,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,205,140,64,26,18,8,56,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,110,150,64,26,18,8,56,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,56,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,170,150,64,26,18,8,56,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,178,140,64,26,18,8,56,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,56,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,177,150,64,26,18,8,56,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,138,140,64,26,18,8,56,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,56,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,56,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,56,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,56,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,76,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,194,13,18,191,13,10,188,13,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,57,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,57,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,57,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,138,12,10,6,112,111,105,110,116,115,18,255,11,18,252,11,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,151,64,26,18,8,57,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,183,138,64,26,18,8,57,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,108,151,64,26,18,8,57,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,210,138,64,26,18,8,57,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,148,151,64,26,18,8,57,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,21,139,64,26,18,8,57,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,148,151,64,26,18,8,57,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,61,139,64,26,18,8,57,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,108,151,64,26,18,8,57,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,114,139,64,26,18,8,57,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,81,151,64,26,18,8,57,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,127,139,64,26,18,8,57,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,81,151,64,26,18,8,57,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,141,139,64,26,18,8,57,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,151,64,26,18,8,57,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,247,139,64,26,18,8,57,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,174,151,64,26,18,8,57,16,31,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,31,140,64,26,18,8,57,16,32,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,30,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,151,64,26,18,8,57,16,34,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,85,140,64,26,18,8,57,16,35,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,33,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,154,151,64,26,18,8,57,16,37,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,111,140,64,26,18,8,57,16,38,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,36,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,134,151,64,26,18,8,57,16,40,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,125,140,64,26,18,8,57,16,41,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,39,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,74,151,64,26,18,8,57,16,43,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,125,140,64,26,18,8,57,16,44,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,42,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,74,151,64,26,18,8,57,16,46,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,111,140,64,26,18,8,57,16,47,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,45,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,57,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,85,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,138,5,18,135,5,10,132,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,58,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,58,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,58,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,214,151,64,26,18,8,58,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,237,138,64,26,18,8,58,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,58,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,234,151,64,26,18,8,58,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,154,139,64,26,18,8,58,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,58,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,234,151,64,26,18,8,58,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,45,140,64,26,18,8,58,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,58,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,228,151,64,26,18,8,58,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,247,139,64,26,18,8,58,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,58,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,58,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,58,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,86,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,146,10,18,143,10,10,140,10,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,59,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,59,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,59,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,218,8,10,6,112,111,105,110,116,115,18,207,8,18,204,8,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,7,139,64,26,18,8,59,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,221,151,64,26,18,8,59,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,59,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,241,151,64,26,18,8,59,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,250,138,64,26,18,8,59,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,59,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,25,152,64,26,18,8,59,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,21,139,64,26,18,8,59,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,59,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,38,152,64,26,18,8,59,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,47,139,64,26,18,8,59,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,59,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,152,64,26,18,8,59,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,154,139,64,26,18,8,59,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,59,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,78,152,64,26,18,8,59,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,31,140,64,26,18,8,59,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,59,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,152,64,26,18,8,59,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,85,140,64,26,18,8,59,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,59,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,58,152,64,26,18,8,59,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,111,140,64,26,18,8,59,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,59,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,18,152,64,26,18,8,59,16,31,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,125,140,64,26,18,8,59,16,32,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,59,16,30,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,194,151,64,26,18,8,59,16,34,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,111,140,64,26,18,8,59,16,35,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,59,16,33,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,59,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,59,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,18,8,85,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,206,6,18,203,6,10,200,6,10,170,5,10,6,112,111,105,110,116,115,18,159,5,18,156,5,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,144,64,26,18,8,60,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,251,151,64,26,18,8,60,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,60,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,193,144,64,26,18,8,60,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,251,151,64,26,18,8,60,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,60,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,193,144,64,26,18,8,60,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,15,152,64,26,18,8,60,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,60,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,144,64,26,18,8,60,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,69,152,64,26,18,8,60,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,60,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,109,143,64,26,18,8,60,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,189,152,64,26,18,8,60,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,60,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,149,143,64,26,18,8,60,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,202,152,64,26,18,8,60,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,60,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,60,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,60,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,60,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,60,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,60,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,139,5,18,136,5,10,133,5,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,61,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,61,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,69,143,64,26,18,8,61,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,75,152,64,26,18,8,61,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,61,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,245,142,64,26,18,8,61,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,195,152,64,26,18,8,61,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,61,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,2,143,64,26,18,8,61,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,209,152,64,26,18,8,61,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,61,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,46,144,64,26,18,8,61,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,242,152,64,26,18,8,61,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,61,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,61,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,61,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,61,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,19,8,190,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,167,9,18,164,9,10,161,9,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,62,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,62,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,62,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,238,7,10,6,112,111,105,110,116,115,18,227,7,18,224,7,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,145,64,26,18,8,62,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,131,151,64,26,18,8,62,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,62,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,118,151,64,26,18,8,62,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,84,145,64,26,18,8,62,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,62,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,164,145,64,26,18,8,62,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,131,151,64,26,18,8,62,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,62,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,145,64,26,18,8,62,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,165,151,64,26,18,8,62,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,62,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,230,145,64,26,18,8,62,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,218,151,64,26,18,8,62,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,62,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,245,151,64,26,18,8,62,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,217,145,64,26,18,8,62,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,62,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,170,145,64,26,18,8,62,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,49,152,64,26,18,8,62,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,62,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,145,64,26,18,8,62,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,69,152,64,26,18,8,62,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,62,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,130,145,64,26,18,8,62,16,31,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,69,152,64,26,18,8,62,16,32,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,62,16,30,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,62,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,62,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,19,8,185,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,159,4,18,156,4,10,153,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,63,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,63,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,63,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,145,64,26,18,8,63,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,238,151,64,26,18,8,63,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,63,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,244,145,64,26,18,8,63,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,231,151,64,26,18,8,63,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,63,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,28,146,64,26,18,8,63,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,205,151,64,26,18,8,63,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,63,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,63,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,63,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,19,8,185,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,247,5,18,244,5,10,241,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,64,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,64,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,64,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,118,151,64,26,18,8,64,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,146,64,26,18,8,64,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,64,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,81,146,64,26,18,8,64,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,151,151,64,26,18,8,64,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,64,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,146,64,26,18,8,64,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,218,151,64,26,18,8,64,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,64,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,81,146,64,26,18,8,64,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,15,152,64,26,18,8,64,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,64,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,146,64,26,18,8,64,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,29,152,64,26,18,8,64,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,64,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,64,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,64,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,19,8,186,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,226,5,18,223,5,10,220,5,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,81,146,64,26,18,8,65,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,2,152,64,26,18,8,65,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,65,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,81,146,64,26,18,8,65,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,251,151,64,26,18,8,65,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,65,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,101,146,64,26,18,8,65,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,251,151,64,26,18,8,65,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,65,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,188,146,64,26,18,8,65,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,218,151,64,26,18,8,65,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,65,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,194,146,64,26,18,8,65,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,198,151,64,26,18,8,65,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,65,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,65,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,65,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,65,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,65,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,65,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,159,4,18,156,4,10,153,4,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,241,146,64,26,18,8,66,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,131,151,64,26,18,8,66,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,66,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,254,146,64,26,18,8,66,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,238,151,64,26,18,8,66,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,66,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,146,64,26,18,8,66,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,9,152,64,26,18,8,66,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,66,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,66,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,66,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,66,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,66,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,66,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,19,8,184,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,147,10,18,144,10,10,141,10,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,67,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,67,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,218,8,10,6,112,111,105,110,116,115,18,207,8,18,204,8,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,147,64,26,18,8,67,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,145,151,64,26,18,8,67,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,67,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,58,147,64,26,18,8,67,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,138,151,64,26,18,8,67,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,67,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,98,147,64,26,18,8,67,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,145,151,64,26,18,8,67,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,67,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,147,64,26,18,8,67,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,171,151,64,26,18,8,67,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,67,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,105,147,64,26,18,8,67,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,211,151,64,26,18,8,67,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,67,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,52,147,64,26,18,8,67,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,22,152,64,26,18,8,67,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,67,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,18,147,64,26,18,8,67,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,42,152,64,26,18,8,67,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,67,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,234,146,64,26,18,8,67,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,42,152,64,26,18,8,67,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,67,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,29,152,64,26,18,8,67,16,32,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,78,147,64,26,18,8,67,16,31,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,67,16,30,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,98,147,64,26,18,8,67,16,34,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,15,152,64,26,18,8,67,16,35,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,67,16,33,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,67,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,67,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,67,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,19,8,184,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,138,4,18,135,4,10,132,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,68,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,68,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,68,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,125,147,64,26,18,8,68,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,231,151,64,26,18,8,68,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,68,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,225,151,64,26,18,8,68,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,125,147,64,26,18,8,68,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,68,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,198,147,64,26,18,8,68,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,198,151,64,26,18,8,68,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,68,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,68,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,68,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,246,4,18,243,4,10,240,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,69,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,69,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,69,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,205,147,64,26,18,8,69,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,178,151,64,26,18,8,69,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,69,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,218,147,64,26,18,8,69,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,205,151,64,26,18,8,69,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,69,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,218,147,64,26,18,8,69,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,22,152,64,26,18,8,69,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,69,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,218,147,64,26,18,8,69,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,15,152,64,26,18,8,69,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,69,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,69,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,69,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,158,3,18,155,3,10,152,3,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,70,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,191,151,64,26,18,8,70,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,252,147,64,26,18,8,70,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,70,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,22,148,64,26,18,8,70,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,22,152,64,26,18,8,70,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,70,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,70,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,70,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,70,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,70,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,235,11,18,232,11,10,229,11,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,71,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,71,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,71,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,178,10,10,6,112,111,105,110,116,115,18,167,10,18,164,10,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,76,148,64,26,18,8,71,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,85,151,64,26,18,8,71,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,71,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,156,148,64,26,18,8,71,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,111,151,64,26,18,8,71,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,71,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,169,148,64,26,18,8,71,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,125,151,64,26,18,8,71,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,71,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,169,148,64,26,18,8,71,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,138,151,64,26,18,8,71,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,71,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,148,64,26,18,8,71,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,171,151,64,26,18,8,71,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,71,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,102,148,64,26,18,8,71,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,191,151,64,26,18,8,71,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,71,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,225,151,64,26,18,8,71,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,148,64,26,18,8,71,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,71,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,2,152,64,26,18,8,71,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,109,148,64,26,18,8,71,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,71,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,122,148,64,26,18,8,71,16,31,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,15,152,64,26,18,8,71,16,32,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,71,16,30,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,9,152,64,26,18,8,71,16,35,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,182,148,64,26,18,8,71,16,34,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,71,16,33,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,209,148,64,26,18,8,71,16,37,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,245,151,64,26,18,8,71,16,38,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,71,16,36,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,225,151,64,26,18,8,71,16,41,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,202,148,64,26,18,8,71,16,40,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,71,16,39,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,71,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,71,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,19,8,186,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,159,4,18,156,4,10,153,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,72,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,72,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,72,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,148,64,26,18,8,72,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,105,151,64,26,18,8,72,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,72,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,236,148,64,26,18,8,72,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,2,152,64,26,18,8,72,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,72,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,229,148,64,26,18,8,72,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,231,151,64,26,18,8,72,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,72,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,72,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,72,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,19,8,186,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,159,4,18,156,4,10,153,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,73,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,73,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,73,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,229,148,64,26,18,8,73,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,178,151,64,26,18,8,73,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,73,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,20,149,64,26,18,8,73,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,165,151,64,26,18,8,73,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,73,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,106,149,64,26,18,8,73,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,158,151,64,26,18,8,73,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,73,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,73,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,73,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,19,8,191,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,167,9,18,164,9,10,161,9,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,74,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,238,7,10,6,112,111,105,110,116,115,18,227,7,18,224,7,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,173,149,64,26,18,8,74,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,251,151,64,26,18,8,74,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,74,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,193,149,64,26,18,8,74,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,225,151,64,26,18,8,74,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,74,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,220,149,64,26,18,8,74,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,145,151,64,26,18,8,74,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,74,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,150,64,26,18,8,74,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,71,151,64,26,18,8,74,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,74,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,37,150,64,26,18,8,74,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,71,151,64,26,18,8,74,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,74,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,50,150,64,26,18,8,74,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,85,151,64,26,18,8,74,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,74,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,110,150,64,26,18,8,74,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,178,151,64,26,18,8,74,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,74,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,150,64,26,18,8,74,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,171,151,64,26,18,8,74,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,74,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,150,64,26,18,8,74,16,31,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,158,151,64,26,18,8,74,16,32,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,74,16,30,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,74,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,74,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,74,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,74,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,19,8,186,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,167,9,18,164,9,10,161,9,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,75,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,75,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,75,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,238,7,10,6,112,111,105,110,116,115,18,227,7,18,224,7,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,178,151,64,26,18,8,75,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,204,150,64,26,18,8,75,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,75,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,204,150,64,26,18,8,75,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,185,151,64,26,18,8,75,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,75,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,237,150,64,26,18,8,75,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,98,151,64,26,18,8,75,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,75,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,21,151,64,26,18,8,75,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,71,151,64,26,18,8,75,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,75,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,151,64,26,18,8,75,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,78,151,64,26,18,8,75,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,75,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,61,151,64,26,18,8,75,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,105,151,64,26,18,8,75,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,75,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,141,151,64,26,18,8,75,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,191,151,64,26,18,8,75,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,75,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,151,64,26,18,8,75,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,191,151,64,26,18,8,75,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,75,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,228,151,64,26,18,8,75,16,31,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,111,151,64,26,18,8,75,16,32,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,75,16,30,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,75,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,75,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,34,19,8,186,1,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,154,14,18,151,14,10,148,14,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,87,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,87,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,87,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,246,12,10,6,112,111,105,110,116,115,18,235,12,18,232,12,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,157,138,64,26,18,8,87,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,171,170,170,170,170,138,147,64,26,18,8,87,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,185,147,64,26,18,8,87,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,90,138,64,26,18,8,87,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,212,147,64,26,18,8,87,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,77,138,64,26,18,8,87,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,29,148,64,26,18,8,87,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,90,138,64,26,18,8,87,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,148,64,26,18,8,87,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,157,138,64,26,18,8,87,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,49,148,64,26,18,8,87,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,197,138,64,26,18,8,87,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,250,138,64,26,18,8,87,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,22,148,64,26,18,8,87,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,225,147,64,26,18,8,87,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,47,139,64,26,18,8,87,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,148,64,26,18,8,87,16,31,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,141,139,64,26,18,8,87,16,32,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,30,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,207,139,64,26,18,8,87,16,35,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,36,148,64,26,18,8,87,16,34,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,33,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,58,140,64,26,18,8,87,16,38,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,148,64,26,18,8,87,16,37,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,36,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,147,64,26,18,8,87,16,40,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,125,140,64,26,18,8,87,16,41,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,39,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,225,147,64,26,18,8,87,16,43,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,151,140,64,26,18,8,87,16,44,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,42,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,225,147,64,26,18,8,87,16,46,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,178,140,64,26,18,8,87,16,47,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,45,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,147,64,26,18,8,87,16,49,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,178,140,64,26,18,8,87,16,50,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,48,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,87,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,226,5,18,223,5,10,220,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,88,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,88,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,88,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,50,138,64,26,18,8,88,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,142,148,64,26,18,8,88,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,88,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,149,148,64,26,18,8,88,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,50,138,64,26,18,8,88,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,88,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,169,148,64,26,18,8,88,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,237,138,64,26,18,8,88,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,88,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,196,148,64,26,18,8,88,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,71,140,64,26,18,8,88,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,88,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,196,148,64,26,18,8,88,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,5,140,64,26,18,8,88,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,88,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,88,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,88,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,214,11,18,211,11,10,208,11,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,89,16,2,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,55,54,56,57,57,26,18,8,89,16,3,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,89,16,4,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,178,10,10,6,112,111,105,110,116,115,18,167,10,18,164,10,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,202,148,64,26,18,8,89,16,7,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,84,85,85,85,85,37,138,64,26,18,8,89,16,8,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,89,16,6,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,202,148,64,26,18,8,89,16,10,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,23,138,64,26,18,8,89,16,11,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,89,16,9,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,229,148,64,26,18,8,89,16,13,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,10,138,64,26,18,8,89,16,14,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,89,16,12,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,13,149,64,26,18,8,89,16,16,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,50,138,64,26,18,8,89,16,17,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,89,16,15,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,33,149,64,26,18,8,89,16,19,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,103,138,64,26,18,8,89,16,20,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,89,16,18,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,53,149,64,26,18,8,89,16,22,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,170,138,64,26,18,8,89,16,23,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,89,16,21,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,60,149,64,26,18,8,89,16,25,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,250,138,64,26,18,8,89,16,26,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,89,16,24,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,53,149,64,26,18,8,89,16,28,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,74,139,64,26,18,8,89,16,29,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,89,16,27,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,249,148,64,26,18,8,89,16,31,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,170,170,170,170,170,234,139,64,26,18,8,89,16,32,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,89,16,30,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,170,170,170,170,170,182,148,64,26,18,8,89,16,34,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,58,140,64,26,18,8,89,16,35,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,89,16,33,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,169,170,170,170,170,58,140,64,26,18,8,89,16,38,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,169,148,64,26,18,8,89,16,37,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,89,16,36,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,85,85,85,85,85,129,148,64,26,18,8,89,16,40,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,39,10,1,121,18,34,26,32,8,4,18,8,255,255,255,255,255,247,139,64,26,18,8,89,16,41,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,89,16,39,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,89,16,5,26,12,99,70,110,76,152,207,109,6,237,70,38,147,18,18,8,89,16,1,26,12,99,70,110,76,152,207,109,6,237,70,38,147,10,235,11,18,232,11,10,229,11,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,90,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,178,10,10,6,112,111,105,110,116,115,18,167,10,18,164,10,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,146,64,26,18,8,90,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,127,64,26,18,8,90,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,90,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,146,64,26,18,8,90,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,127,64,26,18,8,90,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,90,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,147,64,26,18,8,90,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,127,64,26,18,8,90,16,14,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,90,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,84,147,64,26,18,8,90,16,16,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,160,127,64,26,18,8,90,16,17,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,90,16,15,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,147,64,26,18,8,90,16,19,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,128,64,26,18,8,90,16,20,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,90,16,18,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,147,64,26,18,8,90,16,22,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,136,128,64,26,18,8,90,16,23,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,90,16,21,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,132,147,64,26,18,8,90,16,25,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,88,129,64,26,18,8,90,16,26,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,90,16,24,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,130,64,26,18,8,90,16,29,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,146,64,26,18,8,90,16,28,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,90,16,27,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,220,146,64,26,18,8,90,16,31,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,131,64,26,18,8,90,16,32,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,90,16,30,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,146,64,26,18,8,90,16,34,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,132,64,26,18,8,90,16,35,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,90,16,33,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,228,146,64,26,18,8,90,16,37,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,132,64,26,18,8,90,16,38,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,90,16,36,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,147,64,26,18,8,90,16,40,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,136,132,64,26,18,8,90,16,41,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,90,16,39,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,90,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,90,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,52,55,97,102,57,26,18,8,90,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,90,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,34,19,8,162,2,16,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,175,14,18,172,14,10,169,14,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,91,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,52,55,97,102,57,26,18,8,91,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,91,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,246,12,10,6,112,111,105,110,116,115,18,235,12,18,232,12,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,147,64,26,18,8,91,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,8,133,64,26,18,8,91,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,76,147,64,26,18,8,91,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,248,132,64,26,18,8,91,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,147,64,26,18,8,91,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,248,132,64,26,18,8,91,16,14,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,36,147,64,26,18,8,91,16,16,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,40,133,64,26,18,8,91,16,17,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,15,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,147,64,26,18,8,91,16,19,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,133,64,26,18,8,91,16,20,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,18,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,152,133,64,26,18,8,91,16,23,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,147,64,26,18,8,91,16,22,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,21,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,147,64,26,18,8,91,16,25,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,120,133,64,26,18,8,91,16,26,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,24,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,147,64,26,18,8,91,16,28,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,133,64,26,18,8,91,16,29,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,27,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,147,64,26,18,8,91,16,31,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,248,132,64,26,18,8,91,16,32,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,30,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,232,132,64,26,18,8,91,16,35,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,36,147,64,26,18,8,91,16,34,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,33,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,24,133,64,26,18,8,91,16,38,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,147,64,26,18,8,91,16,37,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,36,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,133,64,26,18,8,91,16,41,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,147,64,26,18,8,91,16,40,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,39,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,147,64,26,18,8,91,16,43,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,152,133,64,26,18,8,91,16,44,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,42,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,147,64,26,18,8,91,16,46,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,133,64,26,18,8,91,16,47,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,45,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,147,64,26,18,8,91,16,49,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,64,133,64,26,18,8,91,16,50,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,48,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,91,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,34,19,8,160,2,16,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,247,5,18,244,5,10,241,5,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,52,55,97,102,57,26,18,8,92,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,92,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,9,88,89,193,109,82,145,64,26,18,8,92,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,224,162,87,184,20,165,135,64,26,18,8,92,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,92,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,200,105,85,111,103,102,145,64,26,18,8,92,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,40,150,4,209,42,54,132,64,26,18,8,92,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,92,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,200,105,85,111,103,102,145,64,26,18,8,92,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,241,74,163,118,75,193,130,64,26,18,8,92,16,14,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,92,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,184,40,185,70,41,29,145,64,26,18,8,92,16,16,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,207,29,96,41,58,58,126,64,26,18,8,92,16,17,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,92,16,15,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,60,5,193,234,53,245,144,64,26,18,8,92,16,19,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,3,230,221,105,4,187,123,64,26,18,8,92,16,20,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,92,16,18,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,92,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,92,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,92,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,34,19,8,159,2,16,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,215,12,18,212,12,10,209,12,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,93,16,2,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,54,55,57,57,49,48,26,18,8,93,16,3,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,93,16,4,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,158,11,10,6,112,111,105,110,116,115,18,147,11,18,144,11,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,154,64,26,18,8,93,16,7,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,129,64,26,18,8,93,16,8,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,6,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,154,64,26,18,8,93,16,10,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,104,129,64,26,18,8,93,16,11,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,9,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,129,64,26,18,8,93,16,14,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,154,64,26,18,8,93,16,13,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,12,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,120,130,64,26,18,8,93,16,17,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,108,154,64,26,18,8,93,16,16,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,15,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,154,64,26,18,8,93,16,19,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,131,64,26,18,8,93,16,20,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,18,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,60,155,64,26,18,8,93,16,22,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,131,64,26,18,8,93,16,23,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,21,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,92,155,64,26,18,8,93,16,25,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,131,64,26,18,8,93,16,26,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,24,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,155,64,26,18,8,93,16,28,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,131,64,26,18,8,93,16,29,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,27,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,132,155,64,26,18,8,93,16,31,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,131,64,26,18,8,93,16,32,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,30,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,132,155,64,26,18,8,93,16,34,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,184,130,64,26,18,8,93,16,35,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,33,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,155,64,26,18,8,93,16,37,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,130,64,26,18,8,93,16,38,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,36,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,155,64,26,18,8,93,16,40,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,129,64,26,18,8,93,16,41,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,39,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,155,64,26,18,8,93,16,43,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,248,129,64,26,18,8,93,16,44,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,42,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,5,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,93,16,1,26,12,99,70,121,130,152,207,109,6,237,70,56,215,34,19,8,199,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,159,4,18,156,4,10,153,4,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,54,55,57,57,49,48,26,18,8,94,16,3,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,94,16,4,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,154,64,26,18,8,94,16,7,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,131,64,26,18,8,94,16,8,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,94,16,6,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,155,64,26,18,8,94,16,10,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,131,64,26,18,8,94,16,11,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,94,16,9,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,155,64,26,18,8,94,16,13,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,8,132,64,26,18,8,94,16,14,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,94,16,12,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,94,16,5,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,94,16,2,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,94,16,1,26,12,99,70,121,130,152,207,109,6,237,70,56,215,34,19,8,199,1,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,159,4,18,156,4,10,153,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,95,16,2,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,54,55,57,57,49,48,26,18,8,95,16,3,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,95,16,4,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,230,2,10,6,112,111,105,110,116,115,18,219,2,18,216,2,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,172,154,64,26,18,8,95,16,7,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,144,132,64,26,18,8,95,16,8,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,95,16,6,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,104,132,64,26,18,8,95,16,11,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,154,64,26,18,8,95,16,10,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,95,16,9,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,156,155,64,26,18,8,95,16,13,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,132,64,26,18,8,95,16,14,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,95,16,12,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,95,16,5,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,18,8,95,16,1,26,12,99,70,121,130,152,207,109,6,237,70,56,215,34,19,8,202,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,158,3,18,155,3,10,152,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,96,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,52,55,97,102,57,26,18,8,96,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,96,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,72,196,151,102,121,141,152,64,26,18,8,96,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,155,50,142,185,19,8,143,64,26,18,8,96,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,96,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,72,196,151,102,121,141,152,64,26,18,8,96,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,155,50,142,185,19,8,143,64,26,18,8,96,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,96,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,96,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,96,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,171,25,18,168,25,10,165,25,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,97,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,52,55,97,102,57,26,18,8,97,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,97,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,242,23,10,6,112,111,105,110,116,115,18,231,23,18,228,23,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,96,141,192,111,220,111,153,64,26,18,8,97,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,155,50,142,185,19,8,143,64,26,18,8,97,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,96,141,192,111,220,111,153,64,26,18,8,97,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,244,53,84,147,115,203,140,64,26,18,8,97,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,74,147,20,255,132,118,153,64,26,18,8,97,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,82,215,19,158,234,96,140,64,26,18,8,97,16,14,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,8,165,16,173,126,138,153,64,26,18,8,97,16,16,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,133,132,123,199,178,3,140,64,26,18,8,97,16,17,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,15,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,155,194,180,121,201,171,153,64,26,18,8,97,16,19,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,183,49,227,240,122,166,139,64,26,18,8,97,16,20,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,18,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,2,236,0,101,101,218,153,64,26,18,8,97,16,22,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,189,234,242,56,148,86,139,64,26,18,8,97,16,23,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,21,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,208,62,153,59,157,55,154,64,26,18,8,97,16,25,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,71,128,10,37,186,222,138,64,26,18,8,97,16,26,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,24,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,135,151,133,161,125,155,154,64,26,18,8,97,16,28,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,246,80,106,170,117,169,138,64,26,18,8,97,16,29,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,27,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,5,187,125,253,112,195,154,64,26,18,8,97,16,31,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,202,92,18,201,198,182,138,64,26,18,8,97,16,32,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,30,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,152,216,33,202,187,228,154,64,26,18,8,97,16,34,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,139,61,139,15,204,179,139,64,26,18,8,97,16,35,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,33,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,130,222,117,89,100,235,154,64,26,18,8,97,16,37,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,39,227,187,188,59,110,140,64,26,18,8,97,16,38,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,36,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,152,216,33,202,187,228,154,64,26,18,8,97,16,40,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,37,200,165,165,57,144,142,64,26,18,8,97,16,41,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,39,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,5,187,125,253,112,195,154,64,26,18,8,97,16,43,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,54,216,190,102,131,194,143,64,26,18,8,97,16,44,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,42,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,245,121,225,212,50,122,154,64,26,18,8,97,16,46,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,36,244,235,147,102,122,144,64,26,18,8,97,16,47,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,45,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,245,121,225,212,50,122,154,64,26,18,8,97,16,49,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,226,5,232,65,96,142,144,64,26,18,8,97,16,50,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,48,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,30,159,188,29,214,131,153,64,26,18,8,97,16,52,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,14,250,63,35,15,129,144,64,26,18,8,97,16,53,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,51,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,144,107,171,0,153,41,152,64,26,18,8,97,16,55,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,123,220,155,86,196,95,144,64,26,18,8,97,16,56,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,54,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,107,48,99,103,3,231,151,64,26,18,8,97,16,58,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,167,208,243,55,115,82,144,64,26,18,8,97,16,59,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,57,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,4,7,23,124,103,184,151,64,26,18,8,97,16,61,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,233,190,247,137,121,62,144,64,26,18,8,97,16,62,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,60,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,179,215,118,1,35,131,151,64,26,18,8,97,16,64,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,64,167,167,76,215,35,144,64,26,18,8,97,16,65,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,63,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,120,162,130,247,53,71,151,64,26,18,8,97,16,67,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,98,204,22,72,50,181,143,64,26,18,8,97,16,68,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,66,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,17,121,54,12,154,24,151,64,26,18,8,97,16,70,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,118,247,69,32,126,197,142,64,26,18,8,97,16,71,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,69,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,87,117,13,207,1,51,142,64,26,18,8,97,16,74,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,120,18,34,26,32,8,4,18,8,17,121,54,12,154,24,151,64,26,18,8,97,16,73,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,72,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,32,186,210,52,216,97,151,64,26,18,8,97,16,76,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,6,70,109,84,189,253,141,64,26,18,8,97,16,77,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,75,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,113,233,114,175,28,151,151,64,26,18,8,97,16,79,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,50,58,197,53,108,240,141,64,26,18,8,97,16,80,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,78,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,203,160,159,10,134,101,152,64,26,18,8,97,16,82,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,6,70,109,84,189,253,141,64,26,18,8,97,16,83,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,81,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,50,202,235,245,33,148,152,64,26,18,8,97,16,85,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,131,105,101,176,176,37,142,64,26,18,8,97,16,86,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,84,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,96,141,192,111,220,111,153,64,26,18,8,97,16,88,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,229,168,30,236,62,141,143,64,26,18,8,97,16,89,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,87,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,97,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,34,19,8,196,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,158,3,18,155,3,10,152,3,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,98,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,191,126,42,247,164,111,144,64,26,18,8,98,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,1,121,18,34,26,32,8,4,18,8,14,138,116,161,66,142,145,64,26,18,8,98,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,18,8,98,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,191,126,42,247,164,111,144,64,26,18,8,98,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,1,121,18,34,26,32,8,4,18,8,14,138,116,161,66,142,145,64,26,18,8,98,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,18,8,98,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,18,8,98,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,98,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,48,57,102,55,98,48,26,18,8,98,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,18,8,98,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,178,3,18,175,3,10,172,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,99,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,48,57,102,55,98,48,26,18,8,99,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,99,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,153,123,71,209,61,178,144,64,26,18,8,99,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,1,121,18,34,26,32,8,4,18,8,250,127,4,245,94,99,146,64,26,18,8,99,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,18,8,99,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,43,219,62,254,48,96,147,64,26,18,8,99,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,1,121,18,34,26,32,8,4,18,8,250,127,4,245,94,99,146,64,26,18,8,99,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,18,8,99,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,18,8,99,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,18,8,99,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,34,18,8,112,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,242,15,18,239,15,10,236,15,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,99,16,2,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,51,53,53,98,50,26,18,8,99,16,3,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,99,16,4,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,206,14,10,6,112,111,105,110,116,115,18,195,14,18,192,14,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,146,64,26,18,8,99,16,7,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,145,64,26,18,8,99,16,8,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,6,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,145,64,26,18,8,99,16,11,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,146,64,26,18,8,99,16,10,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,9,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,20,146,64,26,18,8,99,16,13,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,212,144,64,26,18,8,99,16,14,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,12,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,212,145,64,26,18,8,99,16,16,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,204,144,64,26,18,8,99,16,17,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,15,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,145,64,26,18,8,99,16,19,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,224,144,64,26,18,8,99,16,20,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,18,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,156,145,64,26,18,8,99,16,22,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,244,144,64,26,18,8,99,16,23,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,21,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,156,145,64,26,18,8,99,16,25,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,12,145,64,26,18,8,99,16,26,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,24,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,145,64,26,18,8,99,16,28,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,44,145,64,26,18,8,99,16,29,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,27,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,108,146,64,26,18,8,99,16,31,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,148,145,64,26,18,8,99,16,32,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,30,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,146,64,26,18,8,99,16,34,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,140,145,64,26,18,8,99,16,35,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,33,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,116,145,64,26,18,8,99,16,38,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,252,146,64,26,18,8,99,16,37,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,36,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,4,147,64,26,18,8,99,16,40,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,76,145,64,26,18,8,99,16,41,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,39,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,146,64,26,18,8,99,16,43,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,200,144,64,26,18,8,99,16,44,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,42,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,140,144,64,26,18,8,99,16,47,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,146,64,26,18,8,99,16,46,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,45,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,164,146,64,26,18,8,99,16,49,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,156,144,64,26,18,8,99,16,50,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,48,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,146,64,26,18,8,99,16,52,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,196,144,64,26,18,8,99,16,53,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,51,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,146,64,26,18,8,99,16,55,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,28,145,64,26,18,8,99,16,56,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,54,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,5,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,99,16,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,226,5,18,223,5,10,220,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,101,16,2,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,50,98,56,49,51,54,26,18,8,101,16,3,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,101,16,4,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,190,4,10,6,112,111,105,110,116,115,18,179,4,18,176,4,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,149,64,26,18,8,101,16,7,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,81,121,64,26,18,8,101,16,8,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,101,16,6,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,149,64,26,18,8,101,16,10,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,97,123,64,26,18,8,101,16,11,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,101,16,9,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,241,126,64,26,18,8,101,16,14,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,149,64,26,18,8,101,16,13,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,101,16,12,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,149,64,26,18,8,101,16,16,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,129,127,64,26,18,8,101,16,17,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,101,16,15,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,149,64,26,18,8,101,16,19,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,97,127,64,26,18,8,101,16,20,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,101,16,18,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,101,16,5,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,101,16,1,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,207,34,18,204,34,10,201,34,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,102,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,101,54,49,101,48,26,18,8,102,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,102,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,150,33,10,6,112,111,105,110,116,115,18,139,33,18,136,33,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,248,158,64,26,18,8,102,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,146,64,26,18,8,102,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,12,146,64,26,18,8,102,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,66,160,64,26,18,8,102,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,28,146,64,26,18,8,102,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,136,160,64,26,18,8,102,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,108,146,64,26,18,8,102,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,204,160,64,26,18,8,102,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,156,146,64,26,18,8,102,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,228,160,64,26,18,8,102,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,146,64,26,18,8,102,16,22,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,248,160,64,26,18,8,102,16,23,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,21,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,20,147,64,26,18,8,102,16,25,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,4,161,64,26,18,8,102,16,26,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,24,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,76,147,64,26,18,8,102,16,28,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,8,161,64,26,18,8,102,16,29,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,27,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,228,147,64,26,18,8,102,16,31,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,4,161,64,26,18,8,102,16,32,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,30,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,108,148,64,26,18,8,102,16,34,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,242,160,64,26,18,8,102,16,35,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,33,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,4,149,64,26,18,8,102,16,37,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,186,160,64,26,18,8,102,16,38,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,36,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,149,64,26,18,8,102,16,40,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,132,160,64,26,18,8,102,16,41,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,39,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,228,149,64,26,18,8,102,16,43,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,56,160,64,26,18,8,102,16,44,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,42,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,150,64,26,18,8,102,16,46,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,252,159,64,26,18,8,102,16,47,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,45,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,150,64,26,18,8,102,16,49,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,140,159,64,26,18,8,102,16,50,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,48,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,40,159,64,26,18,8,102,16,53,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,150,64,26,18,8,102,16,52,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,51,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,132,150,64,26,18,8,102,16,55,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,208,158,64,26,18,8,102,16,56,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,54,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,150,64,26,18,8,102,16,58,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,140,158,64,26,18,8,102,16,59,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,57,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,150,64,26,18,8,102,16,61,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,84,158,64,26,18,8,102,16,62,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,60,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,150,64,26,18,8,102,16,64,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,40,158,64,26,18,8,102,16,65,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,63,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,240,157,64,26,18,8,102,16,68,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,32,150,64,26,18,8,102,16,67,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,66,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,149,64,26,18,8,102,16,70,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,200,157,64,26,18,8,102,16,71,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,69,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,149,64,26,18,8,102,16,73,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,188,157,64,26,18,8,102,16,74,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,72,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,148,64,26,18,8,102,16,76,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,172,157,64,26,18,8,102,16,77,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,75,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,147,64,26,18,8,102,16,79,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,176,157,64,26,18,8,102,16,80,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,78,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,60,147,64,26,18,8,102,16,82,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,200,157,64,26,18,8,102,16,83,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,81,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,146,64,26,18,8,102,16,85,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,236,157,64,26,18,8,102,16,86,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,84,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,76,146,64,26,18,8,102,16,88,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,40,158,64,26,18,8,102,16,89,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,87,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,4,146,64,26,18,8,102,16,91,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,108,158,64,26,18,8,102,16,92,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,90,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,145,64,26,18,8,102,16,94,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,158,64,26,18,8,102,16,95,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,93,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,236,145,64,26,18,8,102,16,97,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,228,158,64,26,18,8,102,16,98,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,96,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,146,64,26,18,8,102,16,100,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,8,159,64,26,18,8,102,16,101,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,99,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,146,64,26,18,8,102,16,103,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,44,159,64,26,18,8,102,16,104,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,102,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,96,146,64,26,18,8,102,16,106,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,76,159,64,26,18,8,102,16,107,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,105,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,172,146,64,26,18,8,102,16,109,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,104,159,64,26,18,8,102,16,110,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,108,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,172,147,64,26,18,8,102,16,112,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,159,64,26,18,8,102,16,113,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,111,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,68,148,64,26,18,8,102,16,115,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,112,159,64,26,18,8,102,16,116,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,114,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,60,159,64,26,18,8,102,16,119,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,148,64,26,18,8,102,16,118,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,117,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,149,64,26,18,8,102,16,121,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,12,159,64,26,18,8,102,16,122,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,120,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,102,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,177,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,149,4,18,146,4,10,143,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,102,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,52,55,97,102,57,26,18,8,102,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,102,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,30,239,66,205,86,213,147,64,26,18,8,102,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,120,18,34,26,32,8,4,18,8,148,161,215,46,157,229,147,64,26,18,8,102,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,228,181,47,183,188,175,113,64,26,18,8,102,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,136,151,83,198,90,14,102,64,26,18,8,102,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,102,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,148,161,215,46,157,229,147,64,26,18,8,102,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,30,239,66,205,86,213,147,64,26,18,8,102,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,102,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,102,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,102,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,34,18,8,105,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,143,21,18,140,21,10,137,21,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,104,16,2,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,50,98,56,49,51,54,26,18,8,104,16,3,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,104,16,4,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,214,19,10,6,112,111,105,110,116,115,18,203,19,18,200,19,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,132,149,64,26,18,8,104,16,7,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,17,121,64,26,18,8,104,16,8,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,6,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,149,64,26,18,8,104,16,10,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,193,120,64,26,18,8,104,16,11,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,9,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,149,64,26,18,8,104,16,13,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,193,120,64,26,18,8,104,16,14,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,12,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,236,149,64,26,18,8,104,16,16,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,241,120,64,26,18,8,104,16,17,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,15,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,8,150,64,26,18,8,104,16,19,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,209,121,64,26,18,8,104,16,20,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,18,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,12,150,64,26,18,8,104,16,22,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,33,123,64,26,18,8,104,16,23,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,21,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,177,123,64,26,18,8,104,16,26,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,4,150,64,26,18,8,104,16,25,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,24,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,228,149,64,26,18,8,104,16,28,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,49,124,64,26,18,8,104,16,29,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,27,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,149,64,26,18,8,104,16,31,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,129,124,64,26,18,8,104,16,32,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,30,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,149,64,26,18,8,104,16,34,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,97,124,64,26,18,8,104,16,35,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,33,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,149,64,26,18,8,104,16,37,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,97,124,64,26,18,8,104,16,38,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,36,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,150,64,26,18,8,104,16,40,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,161,124,64,26,18,8,104,16,41,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,39,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,65,125,64,26,18,8,104,16,44,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,24,151,64,26,18,8,104,16,43,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,42,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,161,125,64,26,18,8,104,16,47,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,60,151,64,26,18,8,104,16,46,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,45,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,151,64,26,18,8,104,16,49,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,97,126,64,26,18,8,104,16,50,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,48,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,151,64,26,18,8,104,16,52,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,97,127,64,26,18,8,104,16,53,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,51,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,12,151,64,26,18,8,104,16,55,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,8,128,64,26,18,8,104,16,56,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,54,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,150,64,26,18,8,104,16,58,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,64,128,64,26,18,8,104,16,59,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,57,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,4,150,64,26,18,8,104,16,61,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,88,128,64,26,18,8,104,16,62,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,60,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,149,64,26,18,8,104,16,64,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,80,128,64,26,18,8,104,16,65,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,63,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,149,64,26,18,8,104,16,67,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,8,128,64,26,18,8,104,16,68,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,66,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,120,149,64,26,18,8,104,16,70,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,129,127,64,26,18,8,104,16,71,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,69,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,149,64,26,18,8,104,16,73,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,128,230,1,127,64,26,18,8,104,16,74,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,72,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,5,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,104,16,1,26,12,99,70,121,137,152,207,109,6,237,70,57,72,34,19,8,162,2,16,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,149,4,18,146,4,10,143,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,106,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,52,55,97,102,57,26,18,8,106,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,106,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,120,18,34,26,32,8,4,18,8,156,41,100,15,194,126,148,64,26,18,8,106,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,16,143,113,129,105,196,115,64,26,18,8,106,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,232,181,47,183,188,175,97,64,26,18,8,106,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,115,8,118,247,168,209,146,64,26,18,8,106,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,106,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,156,41,100,15,194,126,148,64,26,18,8,106,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,115,8,118,247,168,209,146,64,26,18,8,106,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,106,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,106,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,106,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,34,18,8,107,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,178,3,18,175,3,10,172,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,107,16,2,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,51,53,53,98,50,26,18,8,107,16,3,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,107,16,4,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,180,144,64,26,18,8,107,16,7,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,92,147,64,26,18,8,107,16,8,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,107,16,6,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,144,64,26,18,8,107,16,10,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,220,147,64,26,18,8,107,16,11,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,107,16,9,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,107,16,5,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,107,16,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,34,18,8,109,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,178,3,18,175,3,10,172,3,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,109,16,2,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,51,53,53,98,50,26,18,8,109,16,3,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,109,16,4,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,72,145,64,26,18,8,109,16,7,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,68,147,64,26,18,8,109,16,8,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,109,16,6,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,145,64,26,18,8,109,16,10,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,188,147,64,26,18,8,109,16,11,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,109,16,9,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,109,16,5,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,109,16,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,34,18,8,111,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,134,16,18,131,16,10,128,16,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,113,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,101,54,49,101,48,26,18,8,113,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,113,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,206,14,10,6,112,111,105,110,116,115,18,195,14,18,192,14,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,151,64,26,18,8,113,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,20,148,64,26,18,8,113,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,151,64,26,18,8,113,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,252,147,64,26,18,8,113,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,151,64,26,18,8,113,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,252,147,64,26,18,8,113,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,252,150,64,26,18,8,113,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,8,148,64,26,18,8,113,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,150,64,26,18,8,113,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,60,148,64,26,18,8,113,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,150,64,26,18,8,113,16,22,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,96,148,64,26,18,8,113,16,23,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,21,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,124,150,64,26,18,8,113,16,25,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,136,148,64,26,18,8,113,16,26,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,24,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,116,150,64,26,18,8,113,16,28,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,148,64,26,18,8,113,16,29,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,27,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,128,150,64,26,18,8,113,16,31,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,248,148,64,26,18,8,113,16,32,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,30,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,150,64,26,18,8,113,16,34,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,40,149,64,26,18,8,113,16,35,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,33,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,150,64,26,18,8,113,16,37,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,149,64,26,18,8,113,16,38,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,36,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,220,149,64,26,18,8,113,16,41,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,204,151,64,26,18,8,113,16,40,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,39,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,244,151,64,26,18,8,113,16,43,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,12,150,64,26,18,8,113,16,44,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,42,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,4,152,64,26,18,8,113,16,46,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,76,150,64,26,18,8,113,16,47,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,45,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,152,64,26,18,8,113,16,49,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,172,150,64,26,18,8,113,16,50,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,48,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,236,151,64,26,18,8,113,16,52,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,216,150,64,26,18,8,113,16,53,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,51,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,172,151,64,26,18,8,113,16,55,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,28,151,64,26,18,8,113,16,56,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,54,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,113,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,18,8,115,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,206,7,18,203,7,10,200,7,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,49,51,53,53,98,50,26,18,8,113,16,3,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,113,16,4,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,150,6,10,6,112,111,105,110,116,115,18,139,6,18,136,6,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,132,144,64,26,18,8,113,16,7,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,28,148,64,26,18,8,113,16,8,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,113,16,6,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,156,144,64,26,18,8,113,16,10,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,52,148,64,26,18,8,113,16,11,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,113,16,9,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,212,144,64,26,18,8,113,16,13,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,60,148,64,26,18,8,113,16,14,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,113,16,12,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,145,64,26,18,8,113,16,16,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,48,148,64,26,18,8,113,16,17,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,113,16,15,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,152,145,64,26,18,8,113,16,19,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,16,148,64,26,18,8,113,16,20,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,113,16,18,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,220,145,64,26,18,8,113,16,22,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,164,147,64,26,18,8,113,16,23,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,113,16,21,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,236,145,64,26,18,8,113,16,25,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,76,147,64,26,18,8,113,16,26,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,113,16,24,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,113,16,5,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,113,16,2,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,18,8,113,16,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,34,18,8,116,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,133,38,18,130,38,10,255,37,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,116,16,2,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,97,57,98,101,102,50,26,18,8,116,16,3,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,116,16,4,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,205,36,10,6,112,111,105,110,116,115,18,194,36,18,191,36,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,125,64,26,18,8,116,16,7,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,71,192,26,18,8,116,16,8,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,6,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,126,64,26,18,8,116,16,10,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,65,192,26,18,8,116,16,11,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,9,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,126,64,26,18,8,116,16,13,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,54,192,26,18,8,116,16,14,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,12,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,44,192,26,18,8,116,16,17,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,126,64,26,18,8,116,16,16,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,15,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,127,64,26,18,8,116,16,19,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,24,192,26,18,8,116,16,20,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,18,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,28,192,26,18,8,116,16,23,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,127,64,26,18,8,116,16,22,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,21,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,127,64,26,18,8,116,16,25,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,58,192,26,18,8,116,16,26,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,24,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,128,64,26,18,8,116,16,28,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,69,192,26,18,8,116,16,29,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,27,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,128,64,26,18,8,116,16,31,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,76,192,26,18,8,116,16,32,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,30,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,176,128,64,26,18,8,116,16,34,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,77,192,26,18,8,116,16,35,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,33,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,192,128,64,26,18,8,116,16,37,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,73,192,26,18,8,116,16,38,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,36,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,129,64,26,18,8,116,16,40,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,62,192,26,18,8,116,16,41,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,39,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,129,64,26,18,8,116,16,43,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,44,192,26,18,8,116,16,44,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,42,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,129,64,26,18,8,116,16,46,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,40,192,26,18,8,116,16,47,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,45,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,248,129,64,26,18,8,116,16,49,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,59,192,26,18,8,116,16,50,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,48,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,130,64,26,18,8,116,16,52,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,74,192,26,18,8,116,16,53,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,51,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,83,192,26,18,8,116,16,56,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,232,130,64,26,18,8,116,16,55,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,54,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,131,64,26,18,8,116,16,58,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,82,192,26,18,8,116,16,59,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,57,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,16,132,64,26,18,8,116,16,61,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,66,192,26,18,8,116,16,62,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,60,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,65,192,26,18,8,116,16,65,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,132,64,26,18,8,116,16,64,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,63,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,69,192,26,18,8,116,16,68,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,64,132,64,26,18,8,116,16,67,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,66,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,132,64,26,18,8,116,16,70,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,74,192,26,18,8,116,16,71,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,69,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,132,64,26,18,8,116,16,73,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,74,192,26,18,8,116,16,74,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,72,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,134,64,26,18,8,116,16,76,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,49,192,26,18,8,116,16,77,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,75,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,144,134,64,26,18,8,116,16,79,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,20,192,26,18,8,116,16,80,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,78,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,16,192,26,18,8,116,16,83,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,134,64,26,18,8,116,16,82,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,81,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,208,134,64,26,18,8,116,16,85,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,24,192,26,18,8,116,16,86,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,84,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,135,64,26,18,8,116,16,88,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,68,192,26,18,8,116,16,89,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,87,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,135,64,26,18,8,116,16,91,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,80,192,26,18,8,116,16,92,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,90,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,84,192,26,18,8,116,16,95,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,168,135,64,26,18,8,116,16,94,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,93,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,136,64,26,18,8,116,16,97,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,74,192,26,18,8,116,16,98,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,96,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,136,64,26,18,8,116,16,100,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,53,192,26,18,8,116,16,101,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,99,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,56,137,64,26,18,8,116,16,103,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,36,192,26,18,8,116,16,104,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,102,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,137,64,26,18,8,116,16,106,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,64,192,26,18,8,116,16,107,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,105,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,160,137,64,26,18,8,116,16,109,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,70,192,26,18,8,116,16,110,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,108,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,137,64,26,18,8,116,16,112,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,128,73,192,26,18,8,116,16,113,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,111,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,138,64,26,18,8,116,16,115,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,72,192,26,18,8,116,16,116,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,114,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,138,64,26,18,8,116,16,118,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,59,192,26,18,8,116,16,119,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,117,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,184,138,64,26,18,8,116,16,121,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,54,192,26,18,8,116,16,122,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,120,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,55,192,26,18,8,116,16,125,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,138,64,26,18,8,116,16,124,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,123,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,107,18,105,10,103,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,138,64,26,18,8,116,16,127,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,64,192,26,19,8,116,16,128,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,126,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,138,64,26,19,8,116,16,130,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,82,192,26,19,8,116,16,131,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,116,16,129,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,139,64,26,19,8,116,16,133,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,82,192,26,19,8,116,16,134,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,116,16,132,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,5,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,18,8,116,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,34,18,8,124,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,149,4,18,146,4,10,143,4,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,118,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,222,27,85,146,82,199,145,64,26,18,8,118,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,120,18,34,26,32,8,4,18,8,161,199,93,64,217,80,150,64,26,18,8,118,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,80,201,14,82,102,165,128,64,26,18,8,118,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,104,250,4,94,220,157,119,64,26,18,8,118,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,118,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,161,199,93,64,217,80,150,64,26,18,8,118,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,222,27,85,146,82,199,145,64,26,18,8,118,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,118,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,118,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,118,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,52,55,97,102,57,26,18,8,118,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,118,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,34,18,8,119,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,235,11,18,232,11,10,229,11,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,120,16,4,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,178,10,10,6,112,111,105,110,116,115,18,167,10,18,164,10,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,204,150,64,26,18,8,120,16,7,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,112,132,64,26,18,8,120,16,8,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,120,16,6,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,136,150,64,26,18,8,120,16,10,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,200,132,64,26,18,8,120,16,11,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,120,16,9,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,150,64,26,18,8,120,16,13,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,56,133,64,26,18,8,120,16,14,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,120,16,12,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,150,64,26,18,8,120,16,16,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,160,133,64,26,18,8,120,16,17,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,120,16,15,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,150,64,26,18,8,120,16,19,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,208,133,64,26,18,8,120,16,20,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,120,16,18,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,140,150,64,26,18,8,120,16,22,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,224,133,64,26,18,8,120,16,23,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,120,16,21,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,244,150,64,26,18,8,120,16,25,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,216,133,64,26,18,8,120,16,26,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,120,16,24,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,176,133,64,26,18,8,120,16,29,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,48,151,64,26,18,8,120,16,28,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,120,16,27,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,92,151,64,26,18,8,120,16,31,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,112,133,64,26,18,8,120,16,32,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,120,16,30,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,100,151,64,26,18,8,120,16,34,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,32,133,64,26,18,8,120,16,35,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,120,16,33,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,88,151,64,26,18,8,120,16,37,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,208,132,64,26,18,8,120,16,38,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,120,16,36,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,150,64,26,18,8,120,16,40,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,176,132,64,26,18,8,120,16,41,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,120,16,39,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,120,16,5,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,120,16,2,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,50,98,56,49,51,54,26,18,8,120,16,3,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,120,16,1,26,12,99,70,121,137,152,207,109,6,237,70,57,72,34,19,8,201,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,207,7,18,204,7,10,201,7,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,101,54,49,101,48,26,18,8,121,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,121,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,150,6,10,6,112,111,105,110,116,115,18,139,6,18,136,6,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,216,155,64,26,18,8,121,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,140,145,64,26,18,8,121,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,121,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,158,64,26,18,8,121,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,140,145,64,26,18,8,121,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,121,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,80,158,64,26,18,8,121,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,192,145,64,26,18,8,121,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,121,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,44,158,64,26,18,8,121,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,80,146,64,26,18,8,121,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,121,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,240,157,64,26,18,8,121,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,172,147,64,26,18,8,121,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,121,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,228,157,64,26,18,8,121,16,22,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,40,148,64,26,18,8,121,16,23,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,121,16,21,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,228,157,64,26,18,8,121,16,25,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,244,148,64,26,18,8,121,16,26,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,121,16,24,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,121,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,121,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,121,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,128,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,179,3,18,176,3,10,173,3,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,50,98,56,49,51,54,26,18,8,121,16,3,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,121,16,4,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,4,151,64,26,18,8,121,16,7,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,192,133,64,26,18,8,121,16,8,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,121,16,6,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,252,150,64,26,18,8,121,16,10,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,96,136,64,26,18,8,121,16,11,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,121,16,9,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,121,16,5,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,121,16,2,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,121,16,1,26,12,99,70,121,137,152,207,109,6,237,70,57,72,34,19,8,209,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,179,3,18,176,3,10,173,3,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,123,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,250,1,10,6,112,111,105,110,116,115,18,239,1,18,236,1,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,148,147,64,26,18,8,123,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,112,156,64,26,18,8,123,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,123,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,44,158,64,26,18,8,123,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,148,147,64,26,18,8,123,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,123,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,123,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,123,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,51,101,54,49,101,48,26,18,8,123,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,18,8,123,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,129,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,149,4,18,146,4,10,143,4,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,114,101,99,116,26,18,8,123,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,101,52,55,97,102,57,26,18,8,123,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,123,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,204,1,10,3,98,111,120,18,196,1,10,193,1,10,39,10,1,121,18,34,26,32,8,4,18,8,80,156,170,246,30,120,147,64,26,18,8,123,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,120,18,34,26,32,8,4,18,8,246,44,42,233,33,66,146,64,26,18,8,123,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,60,158,223,121,26,149,129,64,26,18,8,123,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,128,43,251,105,82,150,126,64,26,18,8,123,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,123,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,142,1,10,6,112,111,105,110,116,115,18,131,1,18,128,1,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,20,252,25,38,175,12,155,64,26,18,8,123,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,1,121,18,34,26,32,8,4,18,8,48,103,41,145,179,29,155,64,26,18,8,123,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,123,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,123,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,18,8,123,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,34,18,8,125,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,139,5,18,136,5,10,133,5,10,38,10,4,116,121,112,101,18,30,26,28,8,5,18,4,108,105,110,101,26,18,8,125,16,2,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,42,10,5,99,111,108,111,114,18,33,26,31,8,5,18,7,35,50,98,56,49,51,54,26,18,8,125,16,3,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,49,10,11,115,116,114,111,107,101,87,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,0,8,64,26,18,8,125,16,4,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,210,3,10,6,112,111,105,110,116,115,18,199,3,18,196,3,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,40,150,64,26,18,8,125,16,7,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,56,136,64,26,18,8,125,16,8,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,125,16,6,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,132,150,64,26,18,8,125,16,10,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,56,136,64,26,18,8,125,16,11,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,125,16,9,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,224,151,64,26,18,8,125,16,13,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,152,136,64,26,18,8,125,16,14,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,125,16,12,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,106,18,104,10,102,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,64,243,248,136,64,26,18,8,125,16,17,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,200,153,64,26,18,8,125,16,16,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,125,16,15,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,125,16,5,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,18,8,125,16,1,26,12,99,70,121,137,152,207,109,6,237,70,57,72,34,19,8,179,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,130,1,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,52,55,97,102,57,26,19,8,130,1,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,130,1,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,80,224,153,15,115,33,125,64,26,19,8,130,1,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,204,84,212,176,108,227,118,64,26,19,8,130,1,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,38,195,104,44,114,99,145,64,26,19,8,130,1,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,198,2,166,217,110,147,150,64,26,19,8,130,1,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,130,1,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,2,166,217,110,147,150,64,26,19,8,130,1,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,38,195,104,44,114,99,145,64,26,19,8,130,1,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,130,1,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,130,1,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,130,1,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,34,19,8,131,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,148,12,18,145,12,10,142,12,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,98,56,49,51,54,26,19,8,131,1,16,3,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,131,1,16,4,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,215,10,10,6,112,111,105,110,116,115,18,204,10,18,201,10,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,243,152,133,64,26,19,8,131,1,16,8,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,152,64,26,19,8,131,1,16,7,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,131,1,16,6,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,152,64,26,19,8,131,1,16,10,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,243,32,133,64,26,19,8,131,1,16,11,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,131,1,16,9,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,152,64,26,19,8,131,1,16,13,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,243,8,133,64,26,19,8,131,1,16,14,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,131,1,16,12,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,243,240,132,64,26,19,8,131,1,16,17,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,152,64,26,19,8,131,1,16,16,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,131,1,16,15,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,153,64,26,19,8,131,1,16,19,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,243,16,133,64,26,19,8,131,1,16,20,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,131,1,16,18,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,243,136,133,64,26,19,8,131,1,16,23,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,153,64,26,19,8,131,1,16,22,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,131,1,16,21,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,153,64,26,19,8,131,1,16,25,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,243,40,134,64,26,19,8,131,1,16,26,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,131,1,16,24,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,153,64,26,19,8,131,1,16,28,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,243,96,134,64,26,19,8,131,1,16,29,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,131,1,16,27,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,153,64,26,19,8,131,1,16,31,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,243,8,135,64,26,19,8,131,1,16,32,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,131,1,16,30,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,243,160,135,64,26,19,8,131,1,16,35,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,153,64,26,19,8,131,1,16,34,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,131,1,16,33,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,153,64,26,19,8,131,1,16,37,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,243,104,135,64,26,19,8,131,1,16,38,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,131,1,16,36,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,153,64,26,19,8,131,1,16,40,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,243,112,135,64,26,19,8,131,1,16,41,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,131,1,16,39,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,131,1,16,5,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,131,1,16,2,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,131,1,16,1,26,12,99,70,121,137,152,207,109,6,237,70,57,72,34,19,8,200,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,133,1,16,2,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,51,53,53,98,50,26,19,8,133,1,16,3,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,133,1,16,4,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,144,64,26,19,8,133,1,16,7,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,147,64,26,19,8,133,1,16,8,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,133,1,16,6,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,144,64,26,19,8,133,1,16,10,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,147,64,26,19,8,133,1,16,11,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,133,1,16,9,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,133,1,16,5,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,133,1,16,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,190,3,18,187,3,10,184,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,134,1,16,2,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,98,56,49,51,54,26,19,8,134,1,16,3,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,134,1,16,4,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,153,64,26,19,8,134,1,16,7,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,243,56,133,64,26,19,8,134,1,16,8,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,134,1,16,6,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,153,64,26,19,8,134,1,16,10,26,12,99,70,121,137,152,207,109,6,237,70,57,72,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,64,243,64,133,64,26,19,8,134,1,16,11,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,134,1,16,9,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,134,1,16,5,26,12,99,70,121,137,152,207,109,6,237,70,57,72,18,19,8,134,1,16,1,26,12,99,70,121,137,152,207,109,6,237,70,57,72,34,19,8,207,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,163,4,18,160,4,10,157,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,191,5,9,80,150,52,137,64,26,19,8,135,1,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,242,246,253,186,29,134,150,64,26,19,8,135,1,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,140,228,10,178,107,70,126,64,26,19,8,135,1,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,86,130,30,154,127,85,112,64,26,19,8,135,1,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,135,1,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,176,128,167,184,23,158,64,26,19,8,135,1,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,191,5,9,80,150,52,137,64,26,19,8,135,1,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,135,1,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,135,1,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,135,1,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,52,55,97,102,57,26,19,8,135,1,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,135,1,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,135,1,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,34,19,8,194,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,157,18,18,154,18,10,151,18,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,136,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,101,54,49,101,48,26,19,8,136,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,136,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,224,16,10,6,112,111,105,110,116,115,18,213,16,18,210,16,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,152,64,26,19,8,136,1,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,164,153,64,26,19,8,136,1,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,152,64,26,19,8,136,1,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,76,155,64,26,19,8,136,1,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,152,64,26,19,8,136,1,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,155,64,26,19,8,136,1,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,152,64,26,19,8,136,1,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,196,155,64,26,19,8,136,1,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,152,64,26,19,8,136,1,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,155,64,26,19,8,136,1,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,152,64,26,19,8,136,1,16,22,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,36,156,64,26,19,8,136,1,16,23,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,21,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,152,64,26,19,8,136,1,16,25,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,44,156,64,26,19,8,136,1,16,26,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,24,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,153,64,26,19,8,136,1,16,28,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,20,156,64,26,19,8,136,1,16,29,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,27,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,153,64,26,19,8,136,1,16,31,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,155,64,26,19,8,136,1,16,32,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,30,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,153,64,26,19,8,136,1,16,34,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,4,154,64,26,19,8,136,1,16,35,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,33,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,154,64,26,19,8,136,1,16,37,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,153,64,26,19,8,136,1,16,38,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,36,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,154,64,26,19,8,136,1,16,40,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,154,64,26,19,8,136,1,16,41,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,39,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,154,64,26,19,8,136,1,16,43,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,180,154,64,26,19,8,136,1,16,44,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,42,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,155,64,26,19,8,136,1,16,47,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,154,64,26,19,8,136,1,16,46,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,45,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,154,64,26,19,8,136,1,16,49,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,4,156,64,26,19,8,136,1,16,50,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,48,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,154,64,26,19,8,136,1,16,52,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,156,64,26,19,8,136,1,16,53,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,51,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,155,64,26,19,8,136,1,16,55,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,153,64,26,19,8,136,1,16,56,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,54,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,156,64,26,19,8,136,1,16,58,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,151,64,26,19,8,136,1,16,59,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,57,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,156,64,26,19,8,136,1,16,61,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,151,64,26,19,8,136,1,16,62,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,60,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,136,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,174,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,144,11,18,141,11,10,138,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,137,1,16,2,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,57,98,101,102,50,26,19,8,137,1,16,3,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,137,1,16,4,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,129,64,26,19,8,137,1,16,7,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,81,192,26,19,8,137,1,16,8,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,137,1,16,6,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,137,1,16,10,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,85,192,26,19,8,137,1,16,11,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,137,1,16,9,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,127,64,26,19,8,137,1,16,13,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,86,192,26,19,8,137,1,16,14,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,137,1,16,12,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,125,64,26,19,8,137,1,16,16,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,86,192,26,19,8,137,1,16,17,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,137,1,16,15,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,125,64,26,19,8,137,1,16,19,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,85,192,26,19,8,137,1,16,20,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,137,1,16,18,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,125,64,26,19,8,137,1,16,22,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,80,192,26,19,8,137,1,16,23,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,137,1,16,21,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,125,64,26,19,8,137,1,16,25,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,78,192,26,19,8,137,1,16,26,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,137,1,16,24,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,125,64,26,19,8,137,1,16,28,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,76,192,26,19,8,137,1,16,29,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,137,1,16,27,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,126,64,26,19,8,137,1,16,31,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,71,192,26,19,8,137,1,16,32,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,137,1,16,30,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,128,64,26,19,8,137,1,16,34,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,51,192,26,19,8,137,1,16,35,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,137,1,16,33,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,128,64,26,19,8,137,1,16,37,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,16,64,26,19,8,137,1,16,38,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,137,1,16,36,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,137,1,16,5,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,137,1,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,208,15,18,205,15,10,202,15,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,138,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,101,54,49,101,48,26,19,8,138,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,138,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,147,14,10,6,112,111,105,110,116,115,18,136,14,18,133,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,156,64,26,19,8,138,1,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,76,153,64,26,19,8,138,1,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,153,64,26,19,8,138,1,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,156,64,26,19,8,138,1,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,156,64,26,19,8,138,1,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,220,153,64,26,19,8,138,1,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,156,64,26,19,8,138,1,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,154,64,26,19,8,138,1,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,156,64,26,19,8,138,1,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,154,64,26,19,8,138,1,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,156,64,26,19,8,138,1,16,22,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,155,64,26,19,8,138,1,16,23,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,21,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,156,64,26,19,8,138,1,16,25,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,20,155,64,26,19,8,138,1,16,26,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,24,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,157,64,26,19,8,138,1,16,28,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,20,155,64,26,19,8,138,1,16,29,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,27,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,157,64,26,19,8,138,1,16,31,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,155,64,26,19,8,138,1,16,32,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,30,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,157,64,26,19,8,138,1,16,34,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,154,64,26,19,8,138,1,16,35,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,33,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,157,64,26,19,8,138,1,16,37,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,154,64,26,19,8,138,1,16,38,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,36,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,157,64,26,19,8,138,1,16,40,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,20,154,64,26,19,8,138,1,16,41,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,39,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,157,64,26,19,8,138,1,16,43,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,153,64,26,19,8,138,1,16,44,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,42,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,157,64,26,19,8,138,1,16,46,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,153,64,26,19,8,138,1,16,47,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,45,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,157,64,26,19,8,138,1,16,49,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,116,153,64,26,19,8,138,1,16,50,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,48,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,156,64,26,19,8,138,1,16,52,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,153,64,26,19,8,138,1,16,53,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,51,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,173,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,191,16,18,188,16,10,185,16,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,139,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,101,54,49,101,48,26,19,8,139,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,139,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,130,15,10,6,112,111,105,110,116,115,18,247,14,18,244,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,158,64,26,19,8,139,1,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,153,64,26,19,8,139,1,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,158,64,26,19,8,139,1,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,76,154,64,26,19,8,139,1,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,154,64,26,19,8,139,1,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,158,64,26,19,8,139,1,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,158,64,26,19,8,139,1,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,12,155,64,26,19,8,139,1,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,159,64,26,19,8,139,1,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,12,155,64,26,19,8,139,1,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,159,64,26,19,8,139,1,16,22,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,124,154,64,26,19,8,139,1,16,23,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,21,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,159,64,26,19,8,139,1,16,25,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,52,153,64,26,19,8,139,1,16,26,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,24,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,159,64,26,19,8,139,1,16,28,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,124,152,64,26,19,8,139,1,16,29,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,27,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,159,64,26,19,8,139,1,16,31,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,153,64,26,19,8,139,1,16,32,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,30,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,30,160,64,26,19,8,139,1,16,34,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,252,153,64,26,19,8,139,1,16,35,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,33,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,54,160,64,26,19,8,139,1,16,37,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,52,154,64,26,19,8,139,1,16,38,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,36,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,70,160,64,26,19,8,139,1,16,40,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,154,64,26,19,8,139,1,16,41,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,39,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,160,64,26,19,8,139,1,16,43,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,60,154,64,26,19,8,139,1,16,44,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,42,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,158,160,64,26,19,8,139,1,16,46,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,153,64,26,19,8,139,1,16,47,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,45,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,160,64,26,19,8,139,1,16,49,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,196,152,64,26,19,8,139,1,16,50,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,48,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,10,161,64,26,19,8,139,1,16,52,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,151,64,26,19,8,139,1,16,53,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,51,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,161,64,26,19,8,139,1,16,55,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,151,64,26,19,8,139,1,16,56,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,54,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,139,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,173,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,131,13,18,128,13,10,253,12,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,145,64,26,19,8,139,1,16,7,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,146,64,26,19,8,139,1,16,8,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,6,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,145,64,26,19,8,139,1,16,10,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,188,146,64,26,19,8,139,1,16,11,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,9,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,145,64,26,19,8,139,1,16,13,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,12,147,64,26,19,8,139,1,16,14,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,12,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,145,64,26,19,8,139,1,16,16,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,236,146,64,26,19,8,139,1,16,17,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,15,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,146,64,26,19,8,139,1,16,19,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,212,146,64,26,19,8,139,1,16,20,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,18,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,145,64,26,19,8,139,1,16,22,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,146,64,26,19,8,139,1,16,23,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,21,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,145,64,26,19,8,139,1,16,25,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,148,146,64,26,19,8,139,1,16,26,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,24,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,145,64,26,19,8,139,1,16,28,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,146,64,26,19,8,139,1,16,29,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,27,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,145,64,26,19,8,139,1,16,31,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,164,146,64,26,19,8,139,1,16,32,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,30,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,145,64,26,19,8,139,1,16,34,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,147,64,26,19,8,139,1,16,35,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,33,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,145,64,26,19,8,139,1,16,37,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,44,147,64,26,19,8,139,1,16,38,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,36,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,145,64,26,19,8,139,1,16,40,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,146,64,26,19,8,139,1,16,41,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,39,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,145,64,26,19,8,139,1,16,43,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,146,64,26,19,8,139,1,16,44,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,42,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,5,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,139,1,16,2,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,51,53,53,98,50,26,19,8,139,1,16,3,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,139,1,16,4,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,139,1,16,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,34,19,8,142,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,153,17,18,150,17,10,147,17,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,141,1,16,2,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,57,98,101,102,50,26,19,8,141,1,16,3,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,141,1,16,4,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,241,15,10,6,112,111,105,110,116,115,18,230,15,18,227,15,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,129,64,26,19,8,141,1,16,7,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,81,192,26,19,8,141,1,16,8,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,6,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,129,64,26,19,8,141,1,16,10,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,84,192,26,19,8,141,1,16,11,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,9,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,90,192,26,19,8,141,1,16,14,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,130,64,26,19,8,141,1,16,13,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,12,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,141,1,16,16,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,94,192,26,19,8,141,1,16,17,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,15,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,131,64,26,19,8,141,1,16,19,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,96,192,26,19,8,141,1,16,20,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,18,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,132,64,26,19,8,141,1,16,22,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,96,192,26,19,8,141,1,16,23,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,21,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,94,192,26,19,8,141,1,16,26,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,132,64,26,19,8,141,1,16,25,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,24,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,132,64,26,19,8,141,1,16,28,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,92,192,26,19,8,141,1,16,29,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,27,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,133,64,26,19,8,141,1,16,31,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,88,192,26,19,8,141,1,16,32,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,30,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,133,64,26,19,8,141,1,16,34,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,84,192,26,19,8,141,1,16,35,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,33,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,132,64,26,19,8,141,1,16,37,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,81,192,26,19,8,141,1,16,38,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,36,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,132,64,26,19,8,141,1,16,40,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,74,192,26,19,8,141,1,16,41,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,39,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,141,1,16,43,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,46,192,26,19,8,141,1,16,44,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,42,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,130,64,26,19,8,141,1,16,46,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,16,64,26,19,8,141,1,16,47,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,45,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,129,64,26,19,8,141,1,16,49,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,38,64,26,19,8,141,1,16,50,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,48,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,40,64,26,19,8,141,1,16,53,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,128,64,26,19,8,141,1,16,52,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,51,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,128,64,26,19,8,141,1,16,55,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,34,64,26,19,8,141,1,16,56,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,54,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,128,64,26,19,8,141,1,16,58,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,24,64,26,19,8,141,1,16,59,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,57,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,5,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,141,1,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,173,4,18,170,4,10,167,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,142,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,101,54,49,101,48,26,19,8,142,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,142,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,161,64,26,19,8,142,1,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,150,64,26,19,8,142,1,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,142,1,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,161,64,26,19,8,142,1,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,151,64,26,19,8,142,1,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,142,1,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,161,64,26,19,8,142,1,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,12,153,64,26,19,8,142,1,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,142,1,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,142,1,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,142,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,182,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,216,8,18,213,8,10,210,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,144,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,101,54,49,101,48,26,19,8,144,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,144,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,161,64,26,19,8,144,1,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,76,150,64,26,19,8,144,1,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,144,1,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,114,161,64,26,19,8,144,1,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,84,150,64,26,19,8,144,1,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,144,1,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,161,64,26,19,8,144,1,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,116,150,64,26,19,8,144,1,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,144,1,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,161,64,26,19,8,144,1,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,132,150,64,26,19,8,144,1,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,144,1,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,178,161,64,26,19,8,144,1,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,150,64,26,19,8,144,1,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,144,1,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,174,161,64,26,19,8,144,1,16,22,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,228,150,64,26,19,8,144,1,16,23,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,144,1,16,21,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,106,161,64,26,19,8,144,1,16,25,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,100,152,64,26,19,8,144,1,16,26,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,144,1,16,24,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,161,64,26,19,8,144,1,16,28,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,153,64,26,19,8,144,1,16,29,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,144,1,16,27,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,144,1,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,144,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,173,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,144,11,18,141,11,10,138,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,145,1,16,2,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,102,98,49,97,99,26,19,8,145,1,16,3,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,145,1,16,4,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,130,3,41,191,23,88,64,26,19,8,145,1,16,7,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,238,218,41,230,165,215,161,64,26,19,8,145,1,16,8,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,145,1,16,6,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,138,201,134,141,41,173,87,64,26,19,8,145,1,16,10,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,238,218,41,230,165,215,161,64,26,19,8,145,1,16,11,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,145,1,16,9,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,135,76,233,4,108,108,91,64,26,19,8,145,1,16,13,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,214,198,110,210,171,185,161,64,26,19,8,145,1,16,14,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,145,1,16,12,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,106,49,220,114,194,22,93,64,26,19,8,145,1,16,16,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,67,251,182,120,2,179,161,64,26,19,8,145,1,16,17,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,145,1,16,15,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,219,163,213,169,237,235,93,64,26,19,8,145,1,16,19,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,67,251,182,120,2,179,161,64,26,19,8,145,1,16,20,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,145,1,16,18,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,20,93,82,69,131,86,94,64,26,19,8,145,1,16,22,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,91,15,114,140,252,208,161,64,26,19,8,145,1,16,23,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,145,1,16,21,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,136,200,23,68,150,95,64,26,19,8,145,1,16,25,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,130,166,225,63,79,222,161,64,26,19,8,145,1,16,26,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,145,1,16,24,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,208,182,221,66,77,160,96,64,26,19,8,145,1,16,28,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,75,140,189,236,163,225,161,64,26,19,8,145,1,16,29,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,145,1,16,27,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,206,57,64,186,143,95,100,64,26,19,8,145,1,16,31,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,130,166,225,63,79,222,161,64,26,19,8,145,1,16,32,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,145,1,16,30,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,36,245,77,57,81,212,161,64,26,19,8,145,1,16,35,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,120,101,182,140,80,159,101,64,26,19,8,145,1,16,34,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,145,1,16,33,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,77,123,241,245,48,63,102,64,26,19,8,145,1,16,37,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,253,93,222,133,254,198,161,64,26,19,8,145,1,16,38,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,145,1,16,36,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,145,1,16,5,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,145,1,16,1,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,145,1,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,52,55,97,102,57,26,19,8,145,1,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,145,1,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,242,246,253,186,29,134,150,64,26,19,8,145,1,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,140,228,10,178,107,70,126,64,26,19,8,145,1,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,86,130,30,154,127,85,112,64,26,19,8,145,1,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,191,5,9,80,150,52,137,64,26,19,8,145,1,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,145,1,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,176,128,167,184,23,158,64,26,19,8,145,1,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,191,5,9,80,150,52,137,64,26,19,8,145,1,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,145,1,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,145,1,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,145,1,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,34,19,8,194,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,163,4,18,160,4,10,157,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,52,55,97,102,57,26,19,8,147,1,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,147,1,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,191,5,9,80,150,52,137,64,26,19,8,147,1,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,242,246,253,186,29,134,150,64,26,19,8,147,1,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,140,228,10,178,107,70,126,64,26,19,8,147,1,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,86,130,30,154,127,85,112,64,26,19,8,147,1,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,147,1,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,176,128,167,184,23,158,64,26,19,8,147,1,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,191,5,9,80,150,52,137,64,26,19,8,147,1,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,147,1,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,147,1,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,147,1,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,147,1,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,34,19,8,194,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,148,12,18,145,12,10,142,12,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,148,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,215,10,10,6,112,111,105,110,116,115,18,204,10,18,201,10,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,86,161,64,26,19,8,148,1,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,154,64,26,19,8,148,1,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,148,1,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,86,161,64,26,19,8,148,1,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,188,155,64,26,19,8,148,1,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,148,1,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,90,161,64,26,19,8,148,1,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,155,64,26,19,8,148,1,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,148,1,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,106,161,64,26,19,8,148,1,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,236,155,64,26,19,8,148,1,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,148,1,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,161,64,26,19,8,148,1,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,236,155,64,26,19,8,148,1,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,148,1,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,220,155,64,26,19,8,148,1,16,23,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,150,161,64,26,19,8,148,1,16,22,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,148,1,16,21,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,178,161,64,26,19,8,148,1,16,25,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,148,155,64,26,19,8,148,1,16,26,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,148,1,16,24,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,161,64,26,19,8,148,1,16,28,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,155,64,26,19,8,148,1,16,29,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,148,1,16,27,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,202,161,64,26,19,8,148,1,16,31,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,4,155,64,26,19,8,148,1,16,32,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,148,1,16,30,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,161,64,26,19,8,148,1,16,34,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,154,64,26,19,8,148,1,16,35,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,148,1,16,33,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,161,64,26,19,8,148,1,16,37,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,154,64,26,19,8,148,1,16,38,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,148,1,16,36,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,10,161,64,26,19,8,148,1,16,40,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,68,155,64,26,19,8,148,1,16,41,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,148,1,16,39,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,148,1,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,148,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,101,54,49,101,48,26,19,8,148,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,148,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,181,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,144,11,18,141,11,10,138,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,149,1,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,52,55,97,102,57,26,19,8,149,1,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,149,1,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,78,63,88,101,136,147,64,26,19,8,149,1,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,218,68,38,228,94,94,83,64,26,19,8,149,1,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,149,1,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,78,63,88,101,136,147,64,26,19,8,149,1,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,4,30,104,174,11,115,85,64,26,19,8,149,1,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,149,1,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,102,143,149,7,163,147,64,26,19,8,149,1,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,20,19,107,88,83,199,88,64,26,19,8,149,1,16,14,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,149,1,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,191,149,47,16,76,216,147,64,26,19,8,149,1,16,16,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,145,158,48,183,89,5,95,64,26,19,8,149,1,16,17,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,149,1,16,15,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,60,185,39,108,63,0,148,64,26,19,8,149,1,16,19,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,209,201,153,176,208,44,97,64,26,19,8,149,1,16,20,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,149,1,16,18,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,191,123,251,231,6,148,64,26,19,8,149,1,16,22,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,209,201,153,176,208,44,97,64,26,19,8,149,1,16,23,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,149,1,16,21,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,202,35,26,57,20,148,64,26,19,8,149,1,16,25,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,156,141,108,45,119,113,90,64,26,19,8,149,1,16,26,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,149,1,16,24,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,214,203,56,138,33,148,64,26,19,8,149,1,16,28,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,182,113,171,77,220,49,89,64,26,19,8,149,1,16,29,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,149,1,16,27,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,17,20,210,31,100,148,64,26,19,8,149,1,16,31,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,145,158,48,183,89,5,95,64,26,19,8,149,1,16,32,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,149,1,16,30,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,100,172,168,87,193,148,64,26,19,8,149,1,16,34,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,89,68,155,133,244,214,98,64,26,19,8,149,1,16,35,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,149,1,16,33,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,128,118,168,86,81,213,148,64,26,19,8,149,1,16,37,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,203,79,35,58,23,10,80,64,26,19,8,149,1,16,38,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,149,1,16,36,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,149,1,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,149,1,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,161,10,18,158,10,10,155,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,150,1,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,52,55,97,102,57,26,19,8,150,1,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,150,1,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,153,160,178,68,253,148,64,26,19,8,150,1,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,114,180,42,99,202,92,88,64,26,19,8,150,1,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,150,1,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,78,225,175,204,71,48,94,64,26,19,8,150,1,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,253,153,160,178,68,253,148,64,26,19,8,150,1,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,150,1,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,195,236,157,224,43,149,64,26,19,8,150,1,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,145,158,48,183,89,5,95,64,26,19,8,150,1,16,14,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,150,1,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,248,224,167,205,103,149,64,26,19,8,150,1,16,16,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,140,152,105,131,47,29,87,64,26,19,8,150,1,16,17,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,150,1,16,15,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,12,219,60,219,130,70,149,64,26,19,8,150,1,16,19,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,72,219,232,152,29,72,86,64,26,19,8,150,1,16,20,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,150,1,16,18,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,195,236,157,224,43,149,64,26,19,8,150,1,16,22,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,72,219,232,152,29,72,86,64,26,19,8,150,1,16,23,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,150,1,16,21,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,195,236,157,224,43,149,64,26,19,8,150,1,16,25,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,234,57,41,142,166,178,86,64,26,19,8,150,1,16,26,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,150,1,16,24,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,231,159,244,65,237,3,149,64,26,19,8,150,1,16,28,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,46,247,169,120,184,135,87,64,26,19,8,150,1,16,29,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,150,1,16,27,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,130,80,117,162,226,148,64,26,19,8,150,1,16,31,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,62,236,172,34,0,220,90,64,26,19,8,150,1,16,32,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,150,1,16,30,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,224,74,237,23,137,70,91,64,26,19,8,150,1,16,35,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,150,112,84,199,168,206,148,64,26,19,8,150,1,16,34,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,150,1,16,33,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,150,1,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,150,1,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,144,11,18,141,11,10,138,11,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,52,55,97,102,57,26,19,8,151,1,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,151,1,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,166,124,168,163,148,221,85,64,26,19,8,151,1,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,240,39,129,34,18,157,149,64,26,19,8,151,1,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,151,1,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,45,213,177,186,163,149,64,26,19,8,151,1,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,114,180,42,99,202,92,88,64,26,19,8,151,1,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,151,1,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,130,69,37,239,92,190,149,64,26,19,8,151,1,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,62,236,172,34,0,220,90,64,26,19,8,151,1,16,14,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,151,1,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,189,122,25,249,73,250,149,64,26,19,8,151,1,16,16,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,224,74,237,23,137,70,91,64,26,19,8,151,1,16,17,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,151,1,16,15,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,158,17,85,61,34,150,64,26,19,8,151,1,16,19,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,72,219,232,152,29,72,86,64,26,19,8,151,1,16,20,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,151,1,16,18,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,158,17,85,61,34,150,64,26,19,8,151,1,16,22,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,182,113,171,77,220,49,89,64,26,19,8,151,1,16,23,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,151,1,16,21,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,170,185,115,142,47,150,64,26,19,8,151,1,16,25,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,250,46,44,56,238,6,90,64,26,19,8,151,1,16,26,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,151,1,16,24,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,235,85,156,204,120,150,64,26,19,8,151,1,16,28,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,250,46,44,56,238,6,90,64,26,19,8,151,1,16,29,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,151,1,16,27,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,14,78,248,191,160,150,64,26,19,8,151,1,16,31,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,182,113,171,77,220,49,89,64,26,19,8,151,1,16,32,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,151,1,16,30,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,89,32,74,166,185,180,150,64,26,19,8,151,1,16,34,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,46,247,169,120,184,135,87,64,26,19,8,151,1,16,35,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,151,1,16,33,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,67,38,158,53,98,187,150,64,26,19,8,151,1,16,37,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,192,96,231,195,249,157,84,64,26,19,8,151,1,16,38,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,151,1,16,36,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,151,1,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,151,1,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,151,1,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,190,3,18,187,3,10,184,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,152,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,51,55,102,102,26,19,8,152,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,152,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,20,220,101,56,116,158,160,64,26,19,8,152,1,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,85,184,135,11,179,202,129,64,26,19,8,152,1,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,1,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,184,135,11,179,202,129,64,26,19,8,152,1,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,83,250,71,9,190,161,160,64,26,19,8,152,1,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,1,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,1,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,192,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,192,29,18,189,29,10,186,29,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,153,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,51,55,102,102,26,19,8,153,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,153,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,131,28,10,6,112,111,105,110,116,115,18,248,27,18,245,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,77,28,91,89,141,126,162,64,26,19,8,153,1,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,62,78,195,196,161,35,137,64,26,19,8,153,1,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,74,120,144,47,182,212,136,64,26,19,8,153,1,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,79,163,210,21,102,113,162,64,26,19,8,153,1,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,146,207,163,95,97,90,162,64,26,19,8,153,1,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,82,148,110,33,25,160,136,64,26,19,8,153,1,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,213,251,116,169,92,67,162,64,26,19,8,153,1,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,88,41,213,86,163,120,136,64,26,19,8,153,1,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,25,40,70,243,87,44,162,64,26,19,8,153,1,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,90,176,76,19,124,107,136,64,26,19,8,153,1,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,48,124,224,200,128,142,161,64,26,19,8,153,1,16,22,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,88,41,213,86,163,120,136,64,26,19,8,153,1,16,23,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,21,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,246,242,100,45,193,99,161,64,26,19,8,153,1,16,25,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,80,13,247,100,64,173,136,64,26,19,8,153,1,16,26,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,24,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,131,224,109,246,65,14,161,64,26,19,8,153,1,16,28,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,51,36,246,89,141,114,137,64,26,19,8,153,1,16,29,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,27,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,12,63,64,61,247,160,64,26,19,8,153,1,16,31,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,37,115,177,50,160,206,137,64,26,19,8,153,1,16,32,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,30,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,87,242,90,130,227,160,64,26,19,8,153,1,16,34,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,20,180,125,146,1,69,138,64,26,19,8,153,1,16,35,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,33,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,77,101,225,211,51,201,160,64,26,19,8,153,1,16,37,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,239,174,158,149,235,62,139,64,26,19,8,153,1,16,38,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,36,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,186,113,3,181,15,162,140,64,26,19,8,153,1,16,41,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,77,101,225,211,51,201,160,64,26,19,8,153,1,16,40,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,39,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,161,165,117,199,207,160,64,26,19,8,153,1,16,43,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,163,29,105,223,230,63,141,64,26,19,8,153,1,16,44,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,42,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,201,147,182,252,21,234,160,64,26,19,8,153,1,16,46,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,131,173,240,23,91,18,142,64,26,19,8,153,1,16,47,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,45,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,89,246,57,105,27,161,64,26,19,8,153,1,16,49,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,102,196,239,12,168,215,142,64,26,19,8,153,1,16,50,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,48,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,77,233,221,122,166,130,143,64,26,19,8,153,1,16,53,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,248,121,220,233,153,86,161,64,26,19,8,153,1,16,52,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,51,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,46,245,104,12,168,155,161,64,26,19,8,153,1,16,55,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,155,202,161,210,62,16,144,64,26,19,8,153,1,16,56,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,54,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,18,235,135,130,111,75,144,64,26,19,8,153,1,16,59,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,100,112,245,46,182,224,161,64,26,19,8,153,1,16,58,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,57,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,217,9,100,34,14,41,162,64,26,19,8,153,1,16,61,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,12,86,33,77,229,114,144,64,26,19,8,153,1,16,62,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,60,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,3,91,35,218,7,189,162,64,26,19,8,153,1,16,64,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,135,132,246,117,199,147,144,64,26,19,8,153,1,16,65,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,63,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,111,30,240,109,74,163,64,26,19,8,153,1,16,67,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,4,58,67,91,130,167,144,64,26,19,8,153,1,16,68,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,66,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,165,204,200,65,50,140,163,64,26,19,8,153,1,16,70,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,44,84,226,208,193,144,64,26,19,8,153,1,16,71,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,69,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,32,251,157,106,20,173,163,64,26,19,8,153,1,16,73,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,251,150,237,172,70,233,144,64,26,19,8,153,1,16,74,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,72,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,116,38,174,59,186,163,64,26,19,8,153,1,16,76,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,239,108,32,66,50,56,145,64,26,19,8,153,1,16,77,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,75,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,176,234,79,207,192,163,64,26,19,8,153,1,16,79,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,223,52,100,94,108,161,145,64,26,19,8,153,1,16,80,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,78,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,93,146,8,127,133,189,163,64,26,19,8,153,1,16,82,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,85,206,210,81,196,233,145,64,26,19,8,153,1,16,83,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,81,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,55,98,12,168,179,163,64,26,19,8,153,1,16,85,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,198,89,82,204,106,76,146,64,26,19,8,153,1,16,86,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,84,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,42,52,141,31,36,11,147,64,26,19,8,153,1,16,89,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,228,234,170,18,124,143,163,64,26,19,8,153,1,16,88,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,87,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,236,6,137,4,223,90,163,64,26,19,8,153,1,16,91,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,141,14,200,114,221,201,147,64,26,19,8,153,1,16,92,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,90,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,57,214,175,252,21,2,163,64,26,19,8,153,1,16,94,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,231,69,173,23,91,202,148,64,26,19,8,153,1,16,95,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,93,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,134,165,214,244,76,169,162,64,26,19,8,153,1,16,97,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,75,32,232,106,20,137,149,64,26,19,8,153,1,16,98,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,96,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,75,149,227,156,180,139,162,64,26,19,8,153,1,16,100,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,71,18,249,241,98,163,149,64,26,19,8,153,1,16,101,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,99,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,153,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,173,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,187,15,18,184,15,10,181,15,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,153,1,16,2,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,57,57,49,48,52,97,26,19,8,153,1,16,3,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,153,1,16,4,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,147,14,10,6,112,111,105,110,116,115,18,136,14,18,133,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,155,64,26,19,8,153,1,16,7,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,121,18,35,26,33,8,4,18,8,173,170,170,170,170,218,114,64,26,19,8,153,1,16,8,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,6,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,155,64,26,19,8,153,1,16,10,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,121,18,35,26,33,8,4,18,8,173,170,170,170,170,26,121,64,26,19,8,153,1,16,11,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,9,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,85,85,85,85,73,155,64,26,19,8,153,1,16,13,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,121,18,35,26,33,8,4,18,8,2,0,0,0,0,80,121,64,26,19,8,153,1,16,14,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,12,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,155,64,26,19,8,153,1,16,16,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,121,18,35,26,33,8,4,18,8,2,0,0,0,0,80,121,64,26,19,8,153,1,16,17,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,15,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,156,64,26,19,8,153,1,16,19,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,121,18,35,26,33,8,4,18,8,173,170,170,170,170,26,121,64,26,19,8,153,1,16,20,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,18,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,70,156,64,26,19,8,153,1,16,22,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,121,18,35,26,33,8,4,18,8,173,170,170,170,170,26,121,64,26,19,8,153,1,16,23,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,21,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,117,156,64,26,19,8,153,1,16,25,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,121,18,35,26,33,8,4,18,8,2,0,0,0,0,80,121,64,26,19,8,153,1,16,26,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,24,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,110,156,64,26,19,8,153,1,16,28,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,121,18,35,26,33,8,4,18,8,88,85,85,85,85,229,120,64,26,19,8,153,1,16,29,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,27,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,173,170,170,170,170,106,116,64,26,19,8,153,1,16,32,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,117,156,64,26,19,8,153,1,16,31,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,30,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,157,156,64,26,19,8,153,1,16,34,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,121,18,35,26,33,8,4,18,8,173,170,170,170,170,154,113,64,26,19,8,153,1,16,35,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,33,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,177,156,64,26,19,8,153,1,16,37,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,121,18,35,26,33,8,4,18,8,91,85,85,85,85,245,108,64,26,19,8,153,1,16,38,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,36,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,217,156,64,26,19,8,153,1,16,40,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,121,18,35,26,33,8,4,18,8,6,0,0,0,0,224,101,64,26,19,8,153,1,16,41,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,39,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,190,156,64,26,19,8,153,1,16,43,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,121,18,35,26,33,8,4,18,8,176,170,170,170,170,74,102,64,26,19,8,153,1,16,44,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,42,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,97,156,64,26,19,8,153,1,16,46,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,121,18,35,26,33,8,4,18,8,6,0,0,0,0,128,102,64,26,19,8,153,1,16,47,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,45,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,85,85,85,85,213,155,64,26,19,8,153,1,16,49,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,121,18,35,26,33,8,4,18,8,91,85,85,85,85,85,103,64,26,19,8,153,1,16,50,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,48,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,6,0,0,0,0,32,103,64,26,19,8,153,1,16,53,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,40,10,1,120,18,35,26,33,8,4,18,8,86,85,85,85,85,193,155,64,26,19,8,153,1,16,52,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,51,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,5,26,12,99,70,121,130,152,207,109,6,237,70,56,215,18,19,8,153,1,16,1,26,12,99,70,121,130,152,207,109,6,237,70,56,215,10,135,5,18,132,5,10,129,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,154,1,16,4,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,144,64,26,19,8,154,1,16,7,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,71,192,26,19,8,154,1,16,8,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,154,1,16,6,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,144,64,26,19,8,154,1,16,10,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,67,192,26,19,8,154,1,16,11,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,154,1,16,9,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,143,64,26,19,8,154,1,16,13,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,51,64,26,19,8,154,1,16,14,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,154,1,16,12,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,142,64,26,19,8,154,1,16,16,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,70,64,26,19,8,154,1,16,17,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,154,1,16,15,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,154,1,16,5,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,154,1,16,2,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,57,98,101,102,50,26,19,8,154,1,16,3,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,154,1,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,156,1,16,2,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,102,98,49,97,99,26,19,8,156,1,16,3,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,156,1,16,4,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,117,216,170,243,69,94,75,64,26,19,8,156,1,16,7,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,145,187,27,232,8,86,15,64,26,19,8,156,1,16,8,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,156,1,16,6,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,150,237,242,150,106,53,66,64,26,19,8,156,1,16,10,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,135,158,154,140,116,61,49,64,26,19,8,156,1,16,11,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,156,1,16,9,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,135,158,154,140,116,61,49,64,26,19,8,156,1,16,14,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,180,8,0,41,20,139,64,64,26,19,8,156,1,16,13,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,156,1,16,12,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,98,39,8,37,23,60,64,26,19,8,156,1,16,16,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,17,50,102,68,206,230,55,64,26,19,8,156,1,16,17,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,156,1,16,15,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,54,207,91,80,203,109,53,64,26,19,8,156,1,16,19,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,88,118,228,181,109,241,69,64,26,19,8,156,1,16,20,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,156,1,16,18,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,54,207,91,80,203,109,53,64,26,19,8,156,1,16,22,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,84,124,169,164,242,111,77,64,26,19,8,156,1,16,23,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,156,1,16,21,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,156,1,16,5,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,156,1,16,1,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,157,1,16,2,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,57,98,101,102,50,26,19,8,157,1,16,3,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,157,1,16,4,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,142,64,26,19,8,157,1,16,7,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,63,26,19,8,157,1,16,8,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,157,1,16,6,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,142,64,26,19,8,157,1,16,10,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,69,64,26,19,8,157,1,16,11,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,157,1,16,9,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,143,64,26,19,8,157,1,16,13,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,71,64,26,19,8,157,1,16,14,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,157,1,16,12,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,144,64,26,19,8,157,1,16,16,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,72,64,26,19,8,157,1,16,17,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,157,1,16,15,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,157,1,16,5,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,157,1,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,205,27,18,202,27,10,199,27,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,158,1,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,158,1,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,165,26,10,6,112,111,105,110,116,115,18,154,26,18,151,26,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,205,205,186,114,102,14,159,64,26,19,8,158,1,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,108,196,145,140,21,139,132,64,26,19,8,158,1,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,53,210,43,14,42,177,158,64,26,19,8,158,1,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,108,196,145,140,21,139,132,64,26,19,8,158,1,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,39,83,86,102,47,157,158,64,26,19,8,158,1,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,203,195,202,81,103,152,132,64,26,19,8,158,1,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,120,211,185,131,134,150,158,64,26,19,8,158,1,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,136,194,60,220,10,179,132,64,26,19,8,158,1,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,120,211,185,131,134,150,158,64,26,19,8,158,1,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,231,176,120,110,252,39,134,64,26,19,8,158,1,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,215,210,242,72,216,163,158,64,26,19,8,158,1,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,221,171,64,152,138,146,134,64,26,19,8,158,1,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,243,208,157,152,205,203,158,64,26,19,8,158,1,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,88,169,36,173,209,199,134,64,26,19,8,158,1,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,76,201,223,178,47,159,64,26,19,8,158,1,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,117,167,207,252,198,239,134,64,26,19,8,158,1,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,221,80,170,166,85,160,64,26,19,8,158,1,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,117,167,207,252,198,239,134,64,26,19,8,158,1,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,218,52,191,237,138,160,64,26,19,8,158,1,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,79,164,236,214,95,50,135,64,26,19,8,158,1,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,153,88,216,60,162,160,64,26,19,8,158,1,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,202,161,208,235,166,103,135,64,26,19,8,158,1,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,152,145,157,142,175,160,64,26,19,8,158,1,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,3,158,38,139,145,183,135,64,26,19,8,158,1,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,88,124,241,139,185,160,64,26,19,8,158,1,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,88,152,39,122,113,47,136,64,26,19,8,158,1,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,26,216,24,212,52,192,160,64,26,19,8,158,1,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,2,141,41,88,49,31,137,64,26,19,8,158,1,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,11,129,100,251,66,28,138,64,26,19,8,158,1,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,26,216,24,212,52,192,160,64,26,19,8,158,1,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,152,145,157,142,175,160,64,26,19,8,158,1,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,153,119,187,137,13,228,138,64,26,19,8,158,1,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,93,217,166,73,145,165,160,64,26,19,8,158,1,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,115,116,216,99,166,38,139,64,26,19,8,158,1,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,217,109,132,63,152,160,64,26,19,8,158,1,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,144,114,131,179,155,78,139,64,26,19,8,158,1,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,64,219,251,249,155,125,160,64,26,19,8,158,1,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,172,112,46,3,145,118,139,64,26,19,8,158,1,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,156,59,254,163,95,160,64,26,19,8,158,1,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,11,112,103,200,226,131,139,64,26,19,8,158,1,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,48,159,87,233,92,42,160,64,26,19,8,158,1,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,49,115,74,238,73,65,139,64,26,19,8,158,1,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,119,194,188,80,38,254,159,64,26,19,8,158,1,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,2,124,44,37,209,134,138,64,26,19,8,158,1,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,91,196,17,1,49,214,159,64,26,19,8,158,1,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,97,140,98,29,131,44,137,64,26,19,8,158,1,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,161,172,153,103,2,160,64,26,19,8,158,1,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,3,158,38,139,145,183,135,64,26,19,8,158,1,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,30,45,145,87,62,160,64,26,19,8,158,1,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,31,173,206,13,231,119,134,64,26,19,8,158,1,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,154,31,19,235,148,160,64,26,19,8,158,1,16,82,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,127,189,4,6,153,29,133,64,26,19,8,158,1,16,83,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,81,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,136,194,60,220,10,179,132,64,26,19,8,158,1,16,86,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,254,217,109,132,63,152,160,64,26,19,8,158,1,16,85,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,84,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,154,31,19,235,148,160,64,26,19,8,158,1,16,88,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,42,195,3,23,185,165,132,64,26,19,8,158,1,16,89,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,87,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,42,195,3,23,185,165,132,64,26,19,8,158,1,16,92,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,209,159,30,36,11,29,160,64,26,19,8,158,1,16,91,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,90,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,70,193,174,102,174,205,132,64,26,19,8,158,1,16,95,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,238,69,3,148,228,180,159,64,26,19,8,158,1,16,94,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,93,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,158,1,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,212,99,18,209,99,10,206,99,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,159,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,51,55,102,102,26,19,8,159,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,159,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,151,98,10,6,112,111,105,110,116,115,18,140,98,18,137,98,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,79,163,210,21,102,113,162,64,26,19,8,159,1,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,68,227,41,250,43,252,136,64,26,19,8,159,1,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,46,82,144,12,212,162,64,26,19,8,159,1,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,96,69,179,72,6,68,136,64,26,19,8,159,1,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,246,169,222,178,26,25,163,64,26,19,8,159,1,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,105,232,8,247,65,2,136,64,26,19,8,159,1,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,248,153,139,45,117,163,64,26,19,8,159,1,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,107,111,128,179,26,245,135,64,26,19,8,159,1,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,55,98,12,168,179,163,64,26,19,8,159,1,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,103,97,145,58,105,15,136,64,26,19,8,159,1,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,71,85,100,64,209,163,64,26,19,8,159,1,16,22,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,98,204,42,5,223,54,136,64,26,19,8,159,1,16,23,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,21,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,143,255,165,40,226,28,164,64,26,19,8,159,1,16,25,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,59,64,212,75,240,61,137,64,26,19,8,159,1,16,26,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,24,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,201,136,33,196,161,71,164,64,26,19,8,159,1,16,28,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,23,194,108,11,179,42,138,64,26,19,8,159,1,16,29,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,27,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,183,246,236,131,104,164,64,26,19,8,159,1,16,31,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,239,174,158,149,235,62,139,64,26,19,8,159,1,16,32,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,30,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,64,169,7,116,210,130,164,64,26,19,8,159,1,16,34,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,194,141,225,166,114,109,140,64,26,19,8,159,1,16,35,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,33,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,191,229,203,21,102,137,164,64,26,19,8,159,1,16,37,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,170,57,71,209,73,11,141,64,26,19,8,159,1,16,38,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,36,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,34,144,183,249,143,164,64,26,19,8,159,1,16,40,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,127,159,1,159,169,44,142,64,26,19,8,159,1,16,41,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,39,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,34,144,183,249,143,164,64,26,19,8,159,1,16,43,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,90,154,34,162,147,38,143,64,26,19,8,159,1,16,44,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,42,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,3,174,230,175,140,164,64,26,19,8,159,1,16,46,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,73,219,238,1,245,156,143,64,26,19,8,159,1,16,47,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,45,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,130,78,97,1,245,120,164,64,26,19,8,159,1,16,49,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,147,174,195,224,219,68,144,64,26,19,8,159,1,16,50,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,48,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,70,62,110,169,92,91,164,64,26,19,8,159,1,16,52,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,6,193,186,23,91,154,144,64,26,19,8,159,1,16,53,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,51,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,137,106,63,243,87,68,164,64,26,19,8,159,1,16,55,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,127,104,24,132,100,200,144,64,26,19,8,159,1,16,56,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,54,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,214,57,102,235,142,235,163,64,26,19,8,159,1,16,58,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,118,197,194,213,40,10,145,64,26,19,8,159,1,16,59,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,57,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,53,94,45,193,123,163,64,26,19,8,159,1,16,61,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,237,229,168,133,89,69,145,64,26,19,8,159,1,16,62,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,60,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,119,109,26,17,135,18,163,64,26,19,8,159,1,16,64,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,94,113,40,0,0,168,145,64,26,19,8,159,1,16,65,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,63,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,240,137,15,146,149,162,64,26,19,8,159,1,16,67,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,67,15,159,177,37,96,146,64,26,19,8,159,1,16,68,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,66,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,80,42,74,210,62,100,162,64,26,19,8,159,1,16,70,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,180,154,30,44,204,194,146,64,26,19,8,159,1,16,71,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,69,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,215,130,236,101,53,54,162,64,26,19,8,159,1,16,73,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,165,98,98,72,6,44,147,64,26,19,8,159,1,16,74,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,72,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,205,159,128,122,34,162,64,26,19,8,159,1,16,76,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,28,131,72,248,54,103,147,64,26,19,8,159,1,16,77,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,75,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,189,172,40,226,4,162,64,26,19,8,159,1,16,79,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,10,196,20,88,152,221,147,64,26,19,8,159,1,16,80,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,78,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,7,96,67,39,241,161,64,26,19,8,159,1,16,82,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,249,4,225,183,249,83,148,64,26,19,8,159,1,16,83,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,81,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,196,199,69,215,29,183,149,64,26,19,8,159,1,16,86,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,98,233,125,114,221,237,161,64,26,19,8,159,1,16,85,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,84,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,187,36,240,40,226,248,149,64,26,19,8,159,1,16,89,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,162,7,96,67,39,241,161,64,26,19,8,159,1,16,88,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,87,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,98,6,182,4,251,161,64,26,19,8,159,1,16,91,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,177,129,154,122,166,58,150,64,26,19,8,159,1,16,92,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,90,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,158,249,112,202,117,11,162,64,26,19,8,159,1,16,94,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,167,222,68,204,106,124,150,64,26,19,8,159,1,16,95,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,93,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,152,100,10,149,235,50,162,64,26,19,8,159,1,16,97,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,151,166,136,232,164,229,150,64,26,19,8,159,1,16,98,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,96,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,15,133,240,68,28,110,162,64,26,19,8,159,1,16,100,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,9,50,8,99,75,72,151,64,26,19,8,159,1,16,101,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,99,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,240,137,15,146,149,162,64,26,19,8,159,1,16,103,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,1,22,42,113,232,124,151,64,26,19,8,159,1,16,104,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,102,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,130,151,231,123,155,195,162,64,26,19,8,159,1,16,106,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,124,68,255,153,202,157,151,64,26,19,8,159,1,16,107,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,105,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,183,205,43,204,254,162,64,26,19,8,159,1,16,109,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,247,114,212,194,172,190,151,64,26,19,8,159,1,16,110,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,108,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,99,51,86,163,156,163,64,26,19,8,159,1,16,112,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,241,221,109,141,34,230,151,64,26,19,8,159,1,16,113,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,111,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,111,147,186,114,221,249,151,64,26,19,8,159,1,16,116,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,6,32,140,216,18,88,164,64,26,19,8,159,1,16,115,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,114,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,124,54,42,215,153,164,64,26,19,8,159,1,16,118,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,111,147,186,114,221,249,151,64,26,19,8,159,1,16,119,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,117,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,112,143,45,97,86,239,164,64,26,19,8,159,1,16,121,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,241,221,109,141,34,230,151,64,26,19,8,159,1,16,122,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,120,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,37,71,126,37,248,58,165,64,26,19,8,159,1,16,124,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,118,175,152,100,64,197,151,64,26,19,8,159,1,16,125,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,123,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,83,166,44,86,163,180,165,64,26,19,8,159,1,16,127,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,132,96,221,139,45,105,151,64,26,20,8,159,1,16,128,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,126,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,21,92,213,205,95,249,150,64,26,20,8,159,1,16,131,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,120,18,36,26,34,8,4,18,8,71,124,95,235,142,3,166,64,26,20,8,159,1,16,130,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,129,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,254,186,39,108,9,66,166,64,26,20,8,159,1,16,133,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,44,176,111,163,136,91,150,64,26,20,8,159,1,16,134,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,132,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,187,36,240,40,226,248,149,64,26,20,8,159,1,16,137,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,120,18,36,26,34,8,4,18,8,250,172,56,243,87,92,166,64,26,20,8,159,1,16,136,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,135,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,184,7,223,101,53,102,166,64,26,20,8,159,1,16,139,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,200,213,52,80,207,156,149,64,26,20,8,159,1,16,140,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,138,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,248,37,193,54,127,105,166,64,26,20,8,159,1,16,142,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,216,13,241,51,149,51,149,64,26,20,8,159,1,16,143,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,141,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,184,7,223,101,53,102,166,64,26,20,8,159,1,16,145,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,235,83,156,144,12,176,148,64,26,20,8,159,1,16,146,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,144,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,250,172,56,243,87,92,166,64,26,20,8,159,1,16,148,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,128,93,131,75,240,37,148,64,26,20,8,159,1,16,149,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,147,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,125,247,235,13,157,72,166,64,26,20,8,159,1,16,151,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,145,28,183,235,142,175,147,64,26,20,8,159,1,16,152,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,150,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,2,201,22,229,186,39,166,64,26,20,8,159,1,16,154,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,161,84,115,207,84,70,147,64,26,20,8,159,1,16,155,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,153,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,206,212,1,127,133,213,165,64,26,20,8,159,1,16,157,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,61,122,56,124,155,135,146,64,26,20,8,159,1,16,158,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,156,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,148,75,134,227,197,170,165,64,26,20,8,159,1,16,160,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,73,164,5,231,175,56,146,64,26,20,8,159,1,16,161,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,159,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,212,10,151,243,87,240,145,64,26,20,8,159,1,16,164,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,120,18,36,26,34,8,4,18,8,220,133,70,166,114,121,165,64,26,20,8,159,1,16,163,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,162,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,159,32,185,238,12,165,64,26,20,8,159,1,16,166,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,96,248,159,188,216,154,145,64,26,20,8,159,1,16,167,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,165,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,189,94,84,89,141,150,164,64,26,20,8,159,1,16,169,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,229,201,202,147,246,121,145,64,26,20,8,159,1,16,170,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,168,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,199,1,170,7,201,84,164,64,26,20,8,159,1,16,172,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,229,201,202,147,246,121,145,64,26,20,8,159,1,16,173,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,171,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,145,134,29,229,186,15,164,64,26,20,8,159,1,16,175,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,227,66,83,215,29,135,145,64,26,20,8,159,1,16,176,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,174,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,91,11,145,194,172,202,163,64,26,20,8,159,1,16,178,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,221,173,236,161,147,174,145,64,26,20,8,159,1,16,179,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,177,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,83,71,91,149,235,246,145,64,26,20,8,159,1,16,182,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,120,18,36,26,34,8,4,18,8,230,113,34,207,84,130,163,64,26,20,8,159,1,16,181,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,180,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,113,216,179,219,252,57,163,64,26,20,8,159,1,16,184,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,198,89,82,204,106,76,146,64,26,20,8,159,1,16,185,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,183,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,252,62,69,232,164,241,162,64,26,20,8,159,1,16,187,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,182,33,150,232,164,181,146,64,26,20,8,159,1,16,188,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,186,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,140,58,61,42,215,129,162,64,26,20,8,159,1,16,190,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,153,56,149,221,241,122,147,64,26,20,8,159,1,16,191,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,189,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,21,26,87,122,166,70,162,64,26,20,8,159,1,16,193,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,3,168,54,102,53,18,148,64,26,20,8,159,1,16,194,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,192,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,88,70,40,196,161,47,162,64,26,20,8,159,1,16,196,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,120,65,165,89,141,90,148,64,26,20,8,159,1,16,197,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,195,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,90,205,159,128,122,34,162,64,26,20,8,159,1,16,199,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,237,218,19,77,229,162,148,64,26,20,8,159,1,16,200,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,198,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,219,144,219,222,230,27,162,64,26,20,8,159,1,16,202,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,98,116,130,64,61,235,148,64,26,20,8,159,1,16,203,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,201,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,219,144,219,222,230,27,162,64,26,20,8,159,1,16,205,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,87,74,181,213,40,58,149,64,26,20,8,159,1,16,206,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,204,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,90,205,159,128,122,34,162,64,26,20,8,159,1,16,208,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,204,227,35,201,128,130,149,64,26,20,8,159,1,16,209,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,207,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,23,161,206,54,127,57,162,64,26,20,8,159,1,16,211,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,194,64,206,26,69,196,149,64,26,20,8,159,1,16,212,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,210,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,209,237,133,48,171,93,162,64,26,20,8,159,1,16,214,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,56,218,60,14,157,12,150,64,26,20,8,159,1,16,215,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,213,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,70,62,110,169,92,91,164,64,26,20,8,159,1,16,217,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,22,227,76,138,56,236,150,64,26,20,8,159,1,16,218,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,216,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,34,13,26,245,76,157,150,64,26,20,8,159,1,16,221,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,120,18,36,26,34,8,4,18,8,185,80,101,224,219,176,164,64,26,20,8,159,1,16,220,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,219,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,177,52,135,238,120,229,164,64,26,20,8,159,1,16,223,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,44,176,111,163,136,91,150,64,26,20,8,159,1,16,224,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,222,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,237,68,122,70,17,3,165,64,26,20,8,159,1,16,226,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,52,204,77,149,235,38,150,64,26,20,8,159,1,16,227,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,225,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,100,101,96,246,65,62,165,64,26,20,8,159,1,16,229,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,202,92,172,12,168,143,149,64,26,20,8,159,1,16,230,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,228,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,160,117,83,78,218,91,165,64,26,20,8,159,1,16,232,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,220,27,224,172,70,25,149,64,26,20,8,159,1,16,233,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,231,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,94,208,249,192,183,101,165,64,26,20,8,159,1,16,235,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,235,83,156,144,12,176,148,64,26,20,8,159,1,16,236,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,234,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,158,238,219,145,1,105,165,64,26,20,8,159,1,16,238,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,124,79,148,210,62,64,148,64,26,20,8,159,1,16,239,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,237,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,158,238,219,145,1,105,165,64,26,20,8,159,1,16,241,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,12,75,140,20,113,208,147,64,26,20,8,159,1,16,242,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,240,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,31,178,23,240,109,98,165,64,26,20,8,159,1,16,244,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,157,70,132,86,163,96,147,64,26,20,8,159,1,16,245,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,243,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,162,252,202,10,179,78,165,64,26,20,8,159,1,16,247,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,175,5,184,246,65,234,146,64,26,20,8,159,1,16,248,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,246,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,102,236,215,178,26,49,165,64,26,20,8,159,1,16,250,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,63,1,176,56,116,122,146,64,26,20,8,159,1,16,251,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,249,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,159,32,185,238,12,165,64,26,20,8,159,1,16,253,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,77,178,244,95,97,30,146,64,26,20,8,159,1,16,254,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,252,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,215,24,134,108,9,214,145,64,26,20,8,159,1,16,129,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,120,18,36,26,34,8,4,18,8,243,217,224,123,155,219,164,64,26,20,8,159,1,16,128,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,255,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,20,161,62,72,170,164,64,26,20,8,159,1,16,131,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,94,113,40,0,0,168,145,64,26,20,8,159,1,16,132,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,130,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,66,48,127,48,171,117,164,64,26,20,8,159,1,16,134,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,98,127,23,121,177,141,145,64,26,20,8,159,1,16,135,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,133,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,239,178,208,73,255,163,64,26,20,8,159,1,16,137,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,225,187,219,26,69,148,145,64,26,20,8,159,1,16,138,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,136,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,90,99,57,135,78,194,145,64,26,20,8,159,1,16,141,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,120,18,36,26,34,8,4,18,8,30,116,38,174,59,186,163,64,26,20,8,159,1,16,140,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,139,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,232,248,153,139,45,117,163,64,26,20,8,159,1,16,143,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,79,57,108,28,58,17,146,64,26,20,8,159,1,16,144,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,142,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,49,186,209,10,179,54,163,64,26,20,8,159,1,16,146,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,65,136,39,245,76,109,146,64,26,20,8,159,1,16,147,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,145,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,57,214,175,252,21,2,163,64,26,20,8,159,1,16,149,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,49,80,107,17,135,214,146,64,26,20,8,159,1,16,150,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,148,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,63,107,22,50,160,218,162,64,26,20,8,159,1,16,152,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,36,159,38,234,153,50,147,64,26,20,8,159,1,16,153,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,151,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,67,121,5,171,81,192,162,64,26,20,8,159,1,16,155,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,24,117,89,127,133,129,147,64,26,20,8,159,1,16,156,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,154,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,74,48,130,111,159,162,64,26,20,8,159,1,16,158,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,1,33,191,169,92,31,148,64,26,20,8,159,1,16,159,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,157,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,14,108,224,219,152,162,64,26,20,8,159,1,16,161,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,245,246,241,62,72,110,148,64,26,20,8,159,1,16,162,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,160,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,14,108,224,219,152,162,64,26,20,8,159,1,16,164,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,224,41,207,37,248,254,148,64,26,20,8,159,1,16,165,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,163,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,74,48,130,111,159,162,64,26,20,8,159,1,16,167,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,87,74,181,213,40,58,149,64,26,20,8,159,1,16,168,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,166,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,69,0,125,103,42,179,162,64,26,20,8,159,1,16,170,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,206,106,155,133,89,117,149,64,26,20,8,159,1,16,171,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,169,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,76,52,97,86,215,162,64,26,20,8,159,1,16,173,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,69,139,129,53,138,176,149,64,26,20,8,159,1,16,174,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,172,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,250,183,205,43,204,254,162,64,26,20,8,159,1,16,176,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,192,185,86,94,108,209,149,64,26,20,8,159,1,16,177,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,175,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,51,65,73,199,139,41,163,64,26,20,8,159,1,16,179,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,61,111,163,67,39,229,149,64,26,20,8,159,1,16,180,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,178,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,43,37,107,213,40,94,163,64,26,20,8,159,1,16,182,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,188,171,103,229,186,235,149,64,26,20,8,159,1,16,183,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,181,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,99,39,111,180,15,150,163,64,26,20,8,159,1,16,185,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,61,111,163,67,39,229,149,64,26,20,8,159,1,16,186,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,184,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,192,185,86,94,108,209,149,64,26,20,8,159,1,16,189,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,120,18,36,26,34,8,4,18,8,26,102,55,53,138,212,163,64,26,20,8,159,1,16,188,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,187,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,80,225,195,87,152,25,164,64,26,20,8,159,1,16,191,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,200,213,52,80,207,156,149,64,26,20,8,159,1,16,192,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,190,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,133,92,80,122,166,94,164,64,26,20,8,159,1,16,194,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,83,60,198,92,119,84,149,64,26,20,8,159,1,16,195,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,193,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,177,52,135,238,120,229,164,64,26,20,8,159,1,16,197,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,241,232,2,198,150,136,148,64,26,20,8,159,1,16,198,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,196,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,168,145,49,64,61,39,165,64,26,20,8,159,1,16,200,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,132,107,114,196,161,11,148,64,26,20,8,159,1,16,201,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,199,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,94,208,249,192,183,101,165,64,26,20,8,159,1,16,203,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,153,56,149,221,241,122,147,64,26,20,8,159,1,16,204,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,202,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,175,5,184,246,65,234,146,64,26,20,8,159,1,16,207,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,120,18,36,26,34,8,4,18,8,214,240,223,112,232,160,165,64,26,20,8,159,1,16,206,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,205,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,79,152,61,221,241,206,165,64,26,20,8,159,1,16,209,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,196,210,218,15,146,89,146,64,26,20,8,159,1,16,210,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,159,1,16,208,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,159,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,168,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,204,14,18,201,14,10,198,14,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,160,1,16,2,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,57,98,101,102,50,26,19,8,160,1,16,3,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,160,1,16,4,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,145,64,26,19,8,160,1,16,7,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,81,192,26,19,8,160,1,16,8,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,6,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,53,192,26,19,8,160,1,16,11,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,145,64,26,19,8,160,1,16,10,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,9,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,145,64,26,19,8,160,1,16,13,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,57,192,26,19,8,160,1,16,14,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,12,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,145,64,26,19,8,160,1,16,16,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,70,192,26,19,8,160,1,16,17,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,15,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,145,64,26,19,8,160,1,16,19,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,82,192,26,19,8,160,1,16,20,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,18,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,145,64,26,19,8,160,1,16,22,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,82,192,26,19,8,160,1,16,23,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,21,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,145,64,26,19,8,160,1,16,25,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,81,192,26,19,8,160,1,16,26,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,24,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,145,64,26,19,8,160,1,16,28,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,81,192,26,19,8,160,1,16,29,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,27,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,146,64,26,19,8,160,1,16,31,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,83,192,26,19,8,160,1,16,32,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,30,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,146,64,26,19,8,160,1,16,34,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,83,192,26,19,8,160,1,16,35,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,33,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,146,64,26,19,8,160,1,16,37,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,83,192,26,19,8,160,1,16,38,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,36,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,146,64,26,19,8,160,1,16,40,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,65,192,26,19,8,160,1,16,41,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,39,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,145,64,26,19,8,160,1,16,43,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,65,192,26,19,8,160,1,16,44,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,42,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,59,192,26,19,8,160,1,16,47,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,145,64,26,19,8,160,1,16,46,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,45,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,145,64,26,19,8,160,1,16,49,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,59,192,26,19,8,160,1,16,50,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,48,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,5,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,160,1,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,161,1,16,2,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,57,98,101,102,50,26,19,8,161,1,16,3,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,161,1,16,4,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,145,64,26,19,8,161,1,16,7,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,59,192,26,19,8,161,1,16,8,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,161,1,16,6,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,63,26,19,8,161,1,16,11,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,145,64,26,19,8,161,1,16,10,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,161,1,16,9,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,145,64,26,19,8,161,1,16,13,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,48,64,26,19,8,161,1,16,14,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,161,1,16,12,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,145,64,26,19,8,161,1,16,16,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,40,64,26,19,8,161,1,16,17,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,161,1,16,15,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,146,64,26,19,8,161,1,16,19,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,40,64,26,19,8,161,1,16,20,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,161,1,16,18,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,146,64,26,19,8,161,1,16,22,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,48,64,26,19,8,161,1,16,23,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,161,1,16,21,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,146,64,26,19,8,161,1,16,25,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,46,64,26,19,8,161,1,16,26,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,161,1,16,24,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,161,1,16,5,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,161,1,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,163,4,18,160,4,10,157,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,51,55,102,102,26,19,8,162,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,162,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,238,185,84,163,136,187,158,64,26,19,8,162,1,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,127,115,206,145,1,237,158,64,26,19,8,162,1,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,100,6,176,10,179,90,120,64,26,19,8,162,1,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,16,97,215,90,130,239,99,64,26,19,8,162,1,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,162,1,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,127,115,206,145,1,237,158,64,26,19,8,162,1,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,238,185,84,163,136,187,158,64,26,19,8,162,1,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,162,1,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,162,1,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,162,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,162,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,167,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,57,98,101,102,50,26,19,8,163,1,16,3,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,163,1,16,4,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,147,64,26,19,8,163,1,16,7,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,76,192,26,19,8,163,1,16,8,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,163,1,16,6,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,147,64,26,19,8,163,1,16,10,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,76,192,26,19,8,163,1,16,11,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,163,1,16,9,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,163,1,16,5,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,163,1,16,2,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,163,1,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,163,4,18,160,4,10,157,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,164,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,238,185,84,163,136,187,158,64,26,19,8,164,1,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,127,115,206,145,1,237,158,64,26,19,8,164,1,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,100,6,176,10,179,90,120,64,26,19,8,164,1,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,16,97,215,90,130,239,99,64,26,19,8,164,1,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,164,1,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,127,115,206,145,1,237,158,64,26,19,8,164,1,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,238,185,84,163,136,187,158,64,26,19,8,164,1,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,164,1,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,164,1,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,164,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,51,55,102,102,26,19,8,164,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,164,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,167,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,170,45,18,167,45,10,164,45,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,51,53,53,98,50,26,19,8,164,1,16,3,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,164,1,16,4,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,237,43,10,6,112,111,105,110,116,115,18,226,43,18,223,43,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,144,64,26,19,8,164,1,16,7,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,134,64,26,19,8,164,1,16,8,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,6,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,134,64,26,19,8,164,1,16,11,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,142,64,26,19,8,164,1,16,10,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,9,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,142,64,26,19,8,164,1,16,13,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,134,64,26,19,8,164,1,16,14,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,12,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,143,64,26,19,8,164,1,16,16,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,134,64,26,19,8,164,1,16,17,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,15,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,144,64,26,19,8,164,1,16,19,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,133,64,26,19,8,164,1,16,20,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,18,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,133,64,26,19,8,164,1,16,23,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,144,64,26,19,8,164,1,16,22,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,21,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,144,64,26,19,8,164,1,16,25,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,133,64,26,19,8,164,1,16,26,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,24,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,144,64,26,19,8,164,1,16,28,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,134,64,26,19,8,164,1,16,29,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,27,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,144,64,26,19,8,164,1,16,31,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,134,64,26,19,8,164,1,16,32,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,30,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,143,64,26,19,8,164,1,16,34,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,135,64,26,19,8,164,1,16,35,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,33,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,141,64,26,19,8,164,1,16,37,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,135,64,26,19,8,164,1,16,38,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,36,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,140,64,26,19,8,164,1,16,40,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,135,64,26,19,8,164,1,16,41,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,39,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,135,64,26,19,8,164,1,16,44,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,139,64,26,19,8,164,1,16,43,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,42,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,139,64,26,19,8,164,1,16,46,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,135,64,26,19,8,164,1,16,47,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,45,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,140,64,26,19,8,164,1,16,49,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,135,64,26,19,8,164,1,16,50,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,48,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,140,64,26,19,8,164,1,16,52,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,134,64,26,19,8,164,1,16,53,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,51,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,141,64,26,19,8,164,1,16,55,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,134,64,26,19,8,164,1,16,56,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,54,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,134,64,26,19,8,164,1,16,59,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,143,64,26,19,8,164,1,16,58,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,57,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,144,64,26,19,8,164,1,16,61,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,135,64,26,19,8,164,1,16,62,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,60,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,144,64,26,19,8,164,1,16,64,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,135,64,26,19,8,164,1,16,65,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,63,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,144,64,26,19,8,164,1,16,67,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,135,64,26,19,8,164,1,16,68,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,66,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,135,64,26,19,8,164,1,16,71,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,144,64,26,19,8,164,1,16,70,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,69,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,144,64,26,19,8,164,1,16,73,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,136,64,26,19,8,164,1,16,74,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,72,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,144,64,26,19,8,164,1,16,76,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,136,64,26,19,8,164,1,16,77,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,75,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,136,64,26,19,8,164,1,16,80,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,143,64,26,19,8,164,1,16,79,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,78,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,143,64,26,19,8,164,1,16,82,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,136,64,26,19,8,164,1,16,83,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,81,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,143,64,26,19,8,164,1,16,85,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,136,64,26,19,8,164,1,16,86,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,84,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,143,64,26,19,8,164,1,16,88,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,136,64,26,19,8,164,1,16,89,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,87,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,143,64,26,19,8,164,1,16,91,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,135,64,26,19,8,164,1,16,92,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,90,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,144,64,26,19,8,164,1,16,94,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,135,64,26,19,8,164,1,16,95,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,93,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,145,64,26,19,8,164,1,16,97,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,135,64,26,19,8,164,1,16,98,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,96,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,145,64,26,19,8,164,1,16,100,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,135,64,26,19,8,164,1,16,101,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,99,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,145,64,26,19,8,164,1,16,103,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,135,64,26,19,8,164,1,16,104,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,102,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,145,64,26,19,8,164,1,16,106,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,135,64,26,19,8,164,1,16,107,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,105,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,144,64,26,19,8,164,1,16,109,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,136,64,26,19,8,164,1,16,110,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,108,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,144,64,26,19,8,164,1,16,112,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,136,64,26,19,8,164,1,16,113,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,111,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,144,64,26,19,8,164,1,16,115,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,136,64,26,19,8,164,1,16,116,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,114,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,144,64,26,19,8,164,1,16,118,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,136,64,26,19,8,164,1,16,119,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,117,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,144,64,26,19,8,164,1,16,121,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,136,64,26,19,8,164,1,16,122,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,120,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,145,64,26,19,8,164,1,16,124,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,136,64,26,19,8,164,1,16,125,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,123,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,145,64,26,19,8,164,1,16,127,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,135,64,26,20,8,164,1,16,128,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,126,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,145,64,26,20,8,164,1,16,130,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,136,64,26,20,8,164,1,16,131,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,164,1,16,129,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,146,64,26,20,8,164,1,16,133,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,136,64,26,20,8,164,1,16,134,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,164,1,16,132,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,145,64,26,20,8,164,1,16,136,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,137,64,26,20,8,164,1,16,137,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,164,1,16,135,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,145,64,26,20,8,164,1,16,139,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,137,64,26,20,8,164,1,16,140,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,164,1,16,138,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,145,64,26,20,8,164,1,16,142,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,137,64,26,20,8,164,1,16,143,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,164,1,16,141,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,144,64,26,20,8,164,1,16,145,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,137,64,26,20,8,164,1,16,146,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,164,1,16,144,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,144,64,26,20,8,164,1,16,148,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,137,64,26,20,8,164,1,16,149,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,164,1,16,147,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,144,64,26,20,8,164,1,16,151,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,137,64,26,20,8,164,1,16,152,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,164,1,16,150,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,145,64,26,20,8,164,1,16,154,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,136,64,26,20,8,164,1,16,155,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,164,1,16,153,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,5,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,164,1,16,2,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,164,1,16,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,34,19,8,159,2,16,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,163,4,18,160,4,10,157,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,166,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,51,55,102,102,26,19,8,166,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,166,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,238,185,84,163,136,187,158,64,26,19,8,166,1,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,127,115,206,145,1,237,158,64,26,19,8,166,1,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,100,6,176,10,179,90,120,64,26,19,8,166,1,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,16,97,215,90,130,239,99,64,26,19,8,166,1,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,166,1,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,127,115,206,145,1,237,158,64,26,19,8,166,1,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,238,185,84,163,136,187,158,64,26,19,8,166,1,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,166,1,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,166,1,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,166,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,34,19,8,167,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,235,157,2,18,231,157,2,10,227,157,2,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,167,1,16,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,171,156,2,10,6,112,111,105,110,116,115,18,159,156,2,18,155,156,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,150,64,26,19,8,167,1,16,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,116,64,26,19,8,167,1,16,8,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,116,64,26,19,8,167,1,16,11,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,150,64,26,19,8,167,1,16,10,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,9,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,118,64,26,19,8,167,1,16,14,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,149,64,26,19,8,167,1,16,13,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,12,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,148,64,26,19,8,167,1,16,16,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,120,64,26,19,8,167,1,16,17,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,15,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,147,64,26,19,8,167,1,16,19,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,123,64,26,19,8,167,1,16,20,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,18,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,147,64,26,19,8,167,1,16,22,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,124,64,26,19,8,167,1,16,23,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,21,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,147,64,26,19,8,167,1,16,25,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,125,64,26,19,8,167,1,16,26,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,24,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,126,64,26,19,8,167,1,16,29,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,149,64,26,19,8,167,1,16,28,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,27,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,151,64,26,19,8,167,1,16,31,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,125,64,26,19,8,167,1,16,32,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,30,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,153,64,26,19,8,167,1,16,34,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,124,64,26,19,8,167,1,16,35,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,33,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,154,64,26,19,8,167,1,16,37,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,122,64,26,19,8,167,1,16,38,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,36,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,154,64,26,19,8,167,1,16,40,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,121,64,26,19,8,167,1,16,41,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,39,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,154,64,26,19,8,167,1,16,43,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,120,64,26,19,8,167,1,16,44,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,42,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,154,64,26,19,8,167,1,16,46,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,120,64,26,19,8,167,1,16,47,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,45,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,153,64,26,19,8,167,1,16,49,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,120,64,26,19,8,167,1,16,50,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,48,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,120,64,26,19,8,167,1,16,53,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,152,64,26,19,8,167,1,16,52,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,51,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,151,64,26,19,8,167,1,16,55,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,122,64,26,19,8,167,1,16,56,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,54,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,124,64,26,19,8,167,1,16,59,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,150,64,26,19,8,167,1,16,58,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,57,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,126,64,26,19,8,167,1,16,62,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,150,64,26,19,8,167,1,16,61,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,60,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,150,64,26,19,8,167,1,16,64,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,128,64,26,19,8,167,1,16,65,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,63,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,150,64,26,19,8,167,1,16,67,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,128,64,26,19,8,167,1,16,68,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,66,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,150,64,26,19,8,167,1,16,70,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,128,64,26,19,8,167,1,16,71,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,69,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,151,64,26,19,8,167,1,16,73,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,129,64,26,19,8,167,1,16,74,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,72,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,151,64,26,19,8,167,1,16,76,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,129,64,26,19,8,167,1,16,77,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,75,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,151,64,26,19,8,167,1,16,79,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,129,64,26,19,8,167,1,16,80,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,78,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,150,64,26,19,8,167,1,16,82,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,130,64,26,19,8,167,1,16,83,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,81,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,150,64,26,19,8,167,1,16,85,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,131,64,26,19,8,167,1,16,86,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,84,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,150,64,26,19,8,167,1,16,88,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,132,64,26,19,8,167,1,16,89,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,87,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,151,64,26,19,8,167,1,16,91,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,133,64,26,19,8,167,1,16,92,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,90,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,152,64,26,19,8,167,1,16,94,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,133,64,26,19,8,167,1,16,95,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,93,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,153,64,26,19,8,167,1,16,97,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,133,64,26,19,8,167,1,16,98,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,96,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,153,64,26,19,8,167,1,16,100,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,133,64,26,19,8,167,1,16,101,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,99,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,153,64,26,19,8,167,1,16,103,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,132,64,26,19,8,167,1,16,104,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,102,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,153,64,26,19,8,167,1,16,106,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,131,64,26,19,8,167,1,16,107,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,105,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,153,64,26,19,8,167,1,16,109,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,130,64,26,19,8,167,1,16,110,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,108,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,152,64,26,19,8,167,1,16,112,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,129,64,26,19,8,167,1,16,113,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,111,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,129,64,26,19,8,167,1,16,116,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,149,64,26,19,8,167,1,16,115,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,114,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,147,64,26,19,8,167,1,16,118,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,130,64,26,19,8,167,1,16,119,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,117,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,147,64,26,19,8,167,1,16,121,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,132,64,26,19,8,167,1,16,122,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,120,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,147,64,26,19,8,167,1,16,124,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,134,64,26,19,8,167,1,16,125,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,123,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,147,64,26,19,8,167,1,16,127,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,136,64,26,20,8,167,1,16,128,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,126,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,60,148,64,26,20,8,167,1,16,130,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,184,136,64,26,20,8,167,1,16,131,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,129,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,149,64,26,20,8,167,1,16,133,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,136,64,26,20,8,167,1,16,134,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,132,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,20,150,64,26,20,8,167,1,16,136,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,136,64,26,20,8,167,1,16,137,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,135,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,150,64,26,20,8,167,1,16,139,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,135,64,26,20,8,167,1,16,140,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,138,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,150,64,26,20,8,167,1,16,142,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,135,64,26,20,8,167,1,16,143,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,141,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,150,64,26,20,8,167,1,16,145,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,134,64,26,20,8,167,1,16,146,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,144,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,149,64,26,20,8,167,1,16,148,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,134,64,26,20,8,167,1,16,149,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,147,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,148,64,26,20,8,167,1,16,151,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,134,64,26,20,8,167,1,16,152,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,150,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,148,64,26,20,8,167,1,16,154,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,248,134,64,26,20,8,167,1,16,155,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,153,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,147,64,26,20,8,167,1,16,157,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,136,64,26,20,8,167,1,16,158,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,156,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,147,64,26,20,8,167,1,16,160,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,138,64,26,20,8,167,1,16,161,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,159,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,148,64,26,20,8,167,1,16,163,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,138,64,26,20,8,167,1,16,164,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,162,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,149,64,26,20,8,167,1,16,166,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,139,64,26,20,8,167,1,16,167,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,165,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,151,64,26,20,8,167,1,16,169,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,138,64,26,20,8,167,1,16,170,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,168,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,153,64,26,20,8,167,1,16,172,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,248,135,64,26,20,8,167,1,16,173,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,171,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,153,64,26,20,8,167,1,16,175,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,132,64,26,20,8,167,1,16,176,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,174,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,129,64,26,20,8,167,1,16,179,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,153,64,26,20,8,167,1,16,178,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,177,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,152,64,26,20,8,167,1,16,181,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,126,64,26,20,8,167,1,16,182,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,180,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,124,64,26,20,8,167,1,16,185,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,151,64,26,20,8,167,1,16,184,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,183,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,149,64,26,20,8,167,1,16,187,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,123,64,26,20,8,167,1,16,188,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,186,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,148,64,26,20,8,167,1,16,190,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,125,64,26,20,8,167,1,16,191,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,189,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,147,64,26,20,8,167,1,16,193,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,184,128,64,26,20,8,167,1,16,194,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,192,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,147,64,26,20,8,167,1,16,196,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,130,64,26,20,8,167,1,16,197,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,195,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,147,64,26,20,8,167,1,16,199,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,132,64,26,20,8,167,1,16,200,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,198,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,148,64,26,20,8,167,1,16,202,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,132,64,26,20,8,167,1,16,203,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,201,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,149,64,26,20,8,167,1,16,205,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,131,64,26,20,8,167,1,16,206,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,204,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,150,64,26,20,8,167,1,16,208,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,130,64,26,20,8,167,1,16,209,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,207,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,151,64,26,20,8,167,1,16,211,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,129,64,26,20,8,167,1,16,212,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,210,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,151,64,26,20,8,167,1,16,214,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,127,64,26,20,8,167,1,16,215,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,213,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,151,64,26,20,8,167,1,16,217,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,125,64,26,20,8,167,1,16,218,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,216,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,125,64,26,20,8,167,1,16,221,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,151,64,26,20,8,167,1,16,220,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,219,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,150,64,26,20,8,167,1,16,223,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,125,64,26,20,8,167,1,16,224,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,222,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,149,64,26,20,8,167,1,16,226,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,24,128,64,26,20,8,167,1,16,227,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,225,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,148,64,26,20,8,167,1,16,229,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,129,64,26,20,8,167,1,16,230,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,228,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,148,64,26,20,8,167,1,16,232,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,131,64,26,20,8,167,1,16,233,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,231,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,148,64,26,20,8,167,1,16,235,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,131,64,26,20,8,167,1,16,236,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,234,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,149,64,26,20,8,167,1,16,238,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,131,64,26,20,8,167,1,16,239,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,237,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,150,64,26,20,8,167,1,16,241,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,130,64,26,20,8,167,1,16,242,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,240,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,151,64,26,20,8,167,1,16,244,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,129,64,26,20,8,167,1,16,245,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,243,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,151,64,26,20,8,167,1,16,247,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,126,64,26,20,8,167,1,16,248,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,246,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,151,64,26,20,8,167,1,16,250,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,121,64,26,20,8,167,1,16,251,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,249,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,151,64,26,20,8,167,1,16,253,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,119,64,26,20,8,167,1,16,254,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,252,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,150,64,26,20,8,167,1,16,128,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,118,64,26,20,8,167,1,16,129,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,255,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,149,64,26,20,8,167,1,16,131,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,118,64,26,20,8,167,1,16,132,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,130,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,148,64,26,20,8,167,1,16,134,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,121,64,26,20,8,167,1,16,135,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,133,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,145,64,26,20,8,167,1,16,137,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,168,128,64,26,20,8,167,1,16,138,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,136,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,145,64,26,20,8,167,1,16,140,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,129,64,26,20,8,167,1,16,141,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,139,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,145,64,26,20,8,167,1,16,143,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,131,64,26,20,8,167,1,16,144,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,142,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,146,64,26,20,8,167,1,16,146,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,131,64,26,20,8,167,1,16,147,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,145,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,148,64,26,20,8,167,1,16,149,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,130,64,26,20,8,167,1,16,150,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,148,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,150,64,26,20,8,167,1,16,152,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,128,64,26,20,8,167,1,16,153,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,151,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,150,64,26,20,8,167,1,16,155,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,126,64,26,20,8,167,1,16,156,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,154,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,150,64,26,20,8,167,1,16,158,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,123,64,26,20,8,167,1,16,159,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,157,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,150,64,26,20,8,167,1,16,161,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,121,64,26,20,8,167,1,16,162,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,160,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,150,64,26,20,8,167,1,16,164,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,121,64,26,20,8,167,1,16,165,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,163,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,148,64,26,20,8,167,1,16,167,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,122,64,26,20,8,167,1,16,168,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,166,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,146,64,26,20,8,167,1,16,170,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,126,64,26,20,8,167,1,16,171,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,169,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,145,64,26,20,8,167,1,16,173,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,129,64,26,20,8,167,1,16,174,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,172,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,144,64,26,20,8,167,1,16,176,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,248,132,64,26,20,8,167,1,16,177,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,175,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,145,64,26,20,8,167,1,16,179,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,133,64,26,20,8,167,1,16,180,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,178,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,145,64,26,20,8,167,1,16,182,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,133,64,26,20,8,167,1,16,183,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,181,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,147,64,26,20,8,167,1,16,185,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,133,64,26,20,8,167,1,16,186,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,184,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,149,64,26,20,8,167,1,16,188,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,132,64,26,20,8,167,1,16,189,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,187,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,20,151,64,26,20,8,167,1,16,191,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,131,64,26,20,8,167,1,16,192,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,190,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,152,64,26,20,8,167,1,16,194,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,126,64,26,20,8,167,1,16,195,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,193,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,122,64,26,20,8,167,1,16,198,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,152,64,26,20,8,167,1,16,197,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,196,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,151,64,26,20,8,167,1,16,200,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,121,64,26,20,8,167,1,16,201,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,199,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,150,64,26,20,8,167,1,16,203,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,121,64,26,20,8,167,1,16,204,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,202,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,149,64,26,20,8,167,1,16,206,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,125,64,26,20,8,167,1,16,207,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,205,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,147,64,26,20,8,167,1,16,209,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,129,64,26,20,8,167,1,16,210,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,208,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,146,64,26,20,8,167,1,16,212,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,132,64,26,20,8,167,1,16,213,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,211,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,146,64,26,20,8,167,1,16,215,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,133,64,26,20,8,167,1,16,216,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,214,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,147,64,26,20,8,167,1,16,218,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,134,64,26,20,8,167,1,16,219,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,217,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,134,64,26,20,8,167,1,16,222,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,148,64,26,20,8,167,1,16,221,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,220,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,150,64,26,20,8,167,1,16,224,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,132,64,26,20,8,167,1,16,225,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,223,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,152,64,26,20,8,167,1,16,227,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,130,64,26,20,8,167,1,16,228,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,226,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,154,64,26,20,8,167,1,16,230,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,126,64,26,20,8,167,1,16,231,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,229,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,154,64,26,20,8,167,1,16,233,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,124,64,26,20,8,167,1,16,234,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,232,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,154,64,26,20,8,167,1,16,236,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,122,64,26,20,8,167,1,16,237,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,235,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,122,64,26,20,8,167,1,16,240,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,152,64,26,20,8,167,1,16,239,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,238,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,151,64,26,20,8,167,1,16,242,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,124,64,26,20,8,167,1,16,243,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,241,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,149,64,26,20,8,167,1,16,245,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,128,64,26,20,8,167,1,16,246,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,244,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,148,64,26,20,8,167,1,16,248,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,131,64,26,20,8,167,1,16,249,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,247,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,147,64,26,20,8,167,1,16,251,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,133,64,26,20,8,167,1,16,252,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,250,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,147,64,26,20,8,167,1,16,254,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,134,64,26,20,8,167,1,16,255,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,253,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,148,64,26,20,8,167,1,16,129,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,184,134,64,26,20,8,167,1,16,130,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,128,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,149,64,26,20,8,167,1,16,132,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,134,64,26,20,8,167,1,16,133,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,131,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,150,64,26,20,8,167,1,16,135,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,133,64,26,20,8,167,1,16,136,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,134,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,60,152,64,26,20,8,167,1,16,138,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,130,64,26,20,8,167,1,16,139,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,137,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,153,64,26,20,8,167,1,16,141,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,128,64,26,20,8,167,1,16,142,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,140,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,125,64,26,20,8,167,1,16,145,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,153,64,26,20,8,167,1,16,144,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,143,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,153,64,26,20,8,167,1,16,147,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,124,64,26,20,8,167,1,16,148,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,146,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,152,64,26,20,8,167,1,16,150,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,123,64,26,20,8,167,1,16,151,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,149,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,152,64,26,20,8,167,1,16,153,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,123,64,26,20,8,167,1,16,154,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,152,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,152,64,26,20,8,167,1,16,156,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,124,64,26,20,8,167,1,16,157,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,155,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,125,64,26,20,8,167,1,16,160,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,100,151,64,26,20,8,167,1,16,159,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,158,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,149,64,26,20,8,167,1,16,162,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,129,64,26,20,8,167,1,16,163,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,161,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,149,64,26,20,8,167,1,16,165,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,131,64,26,20,8,167,1,16,166,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,164,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,149,64,26,20,8,167,1,16,168,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,132,64,26,20,8,167,1,16,169,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,167,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,133,64,26,20,8,167,1,16,172,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,149,64,26,20,8,167,1,16,171,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,170,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,150,64,26,20,8,167,1,16,174,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,133,64,26,20,8,167,1,16,175,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,173,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,151,64,26,20,8,167,1,16,177,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,133,64,26,20,8,167,1,16,178,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,176,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,151,64,26,20,8,167,1,16,180,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,132,64,26,20,8,167,1,16,181,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,179,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,152,64,26,20,8,167,1,16,183,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,131,64,26,20,8,167,1,16,184,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,182,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,252,152,64,26,20,8,167,1,16,186,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,126,64,26,20,8,167,1,16,187,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,185,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,152,64,26,20,8,167,1,16,189,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,125,64,26,20,8,167,1,16,190,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,188,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,122,64,26,20,8,167,1,16,193,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,100,152,64,26,20,8,167,1,16,192,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,191,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,152,64,26,20,8,167,1,16,195,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,122,64,26,20,8,167,1,16,196,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,194,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,122,64,26,20,8,167,1,16,199,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,252,150,64,26,20,8,167,1,16,198,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,197,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,124,64,26,20,8,167,1,16,202,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,149,64,26,20,8,167,1,16,201,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,200,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,147,64,26,20,8,167,1,16,204,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,129,64,26,20,8,167,1,16,205,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,203,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,147,64,26,20,8,167,1,16,207,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,130,64,26,20,8,167,1,16,208,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,206,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,147,64,26,20,8,167,1,16,210,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,133,64,26,20,8,167,1,16,211,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,209,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,147,64,26,20,8,167,1,16,213,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,135,64,26,20,8,167,1,16,214,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,212,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,148,64,26,20,8,167,1,16,216,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,136,64,26,20,8,167,1,16,217,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,215,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,149,64,26,20,8,167,1,16,219,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,136,64,26,20,8,167,1,16,220,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,218,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,150,64,26,20,8,167,1,16,222,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,135,64,26,20,8,167,1,16,223,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,221,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,151,64,26,20,8,167,1,16,225,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,134,64,26,20,8,167,1,16,226,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,224,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,151,64,26,20,8,167,1,16,228,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,133,64,26,20,8,167,1,16,229,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,227,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,151,64,26,20,8,167,1,16,231,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,24,133,64,26,20,8,167,1,16,232,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,230,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,151,64,26,20,8,167,1,16,234,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,133,64,26,20,8,167,1,16,235,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,233,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,150,64,26,20,8,167,1,16,237,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,134,64,26,20,8,167,1,16,238,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,236,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,149,64,26,20,8,167,1,16,240,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,136,64,26,20,8,167,1,16,241,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,239,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,149,64,26,20,8,167,1,16,243,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,138,64,26,20,8,167,1,16,244,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,242,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,149,64,26,20,8,167,1,16,246,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,139,64,26,20,8,167,1,16,247,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,245,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,149,64,26,20,8,167,1,16,249,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,248,139,64,26,20,8,167,1,16,250,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,248,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,150,64,26,20,8,167,1,16,252,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,139,64,26,20,8,167,1,16,253,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,251,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,152,64,26,20,8,167,1,16,255,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,138,64,26,20,8,167,1,16,128,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,254,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,154,64,26,20,8,167,1,16,130,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,137,64,26,20,8,167,1,16,131,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,129,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,134,64,26,20,8,167,1,16,134,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,155,64,26,20,8,167,1,16,133,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,132,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,155,64,26,20,8,167,1,16,136,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,133,64,26,20,8,167,1,16,137,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,135,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,155,64,26,20,8,167,1,16,139,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,132,64,26,20,8,167,1,16,140,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,138,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,154,64,26,20,8,167,1,16,142,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,132,64,26,20,8,167,1,16,143,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,141,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,153,64,26,20,8,167,1,16,145,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,132,64,26,20,8,167,1,16,146,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,144,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,151,64,26,20,8,167,1,16,148,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,132,64,26,20,8,167,1,16,149,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,147,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,20,150,64,26,20,8,167,1,16,151,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,134,64,26,20,8,167,1,16,152,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,150,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,149,64,26,20,8,167,1,16,154,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,135,64,26,20,8,167,1,16,155,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,153,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,148,64,26,20,8,167,1,16,157,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,248,135,64,26,20,8,167,1,16,158,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,156,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,148,64,26,20,8,167,1,16,160,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,136,64,26,20,8,167,1,16,161,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,159,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,149,64,26,20,8,167,1,16,163,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,135,64,26,20,8,167,1,16,164,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,162,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,151,64,26,20,8,167,1,16,166,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,134,64,26,20,8,167,1,16,167,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,165,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,153,64,26,20,8,167,1,16,169,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,130,64,26,20,8,167,1,16,170,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,168,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,153,64,26,20,8,167,1,16,172,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,129,64,26,20,8,167,1,16,173,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,171,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,153,64,26,20,8,167,1,16,175,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,125,64,26,20,8,167,1,16,176,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,174,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,152,64,26,20,8,167,1,16,178,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,120,64,26,20,8,167,1,16,179,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,177,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,151,64,26,20,8,167,1,16,181,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,118,64,26,20,8,167,1,16,182,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,180,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,150,64,26,20,8,167,1,16,184,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,118,64,26,20,8,167,1,16,185,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,183,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,148,64,26,20,8,167,1,16,187,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,120,64,26,20,8,167,1,16,188,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,186,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,147,64,26,20,8,167,1,16,190,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,124,64,26,20,8,167,1,16,191,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,189,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,146,64,26,20,8,167,1,16,193,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,24,128,64,26,20,8,167,1,16,194,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,192,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,146,64,26,20,8,167,1,16,196,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,129,64,26,20,8,167,1,16,197,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,195,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,147,64,26,20,8,167,1,16,199,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,130,64,26,20,8,167,1,16,200,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,198,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,248,130,64,26,20,8,167,1,16,203,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,149,64,26,20,8,167,1,16,202,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,201,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,151,64,26,20,8,167,1,16,205,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,130,64,26,20,8,167,1,16,206,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,204,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,152,64,26,20,8,167,1,16,208,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,128,64,26,20,8,167,1,16,209,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,207,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,153,64,26,20,8,167,1,16,211,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,125,64,26,20,8,167,1,16,212,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,210,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,152,64,26,20,8,167,1,16,214,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,123,64,26,20,8,167,1,16,215,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,213,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,151,64,26,20,8,167,1,16,217,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,123,64,26,20,8,167,1,16,218,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,216,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,149,64,26,20,8,167,1,16,220,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,124,64,26,20,8,167,1,16,221,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,219,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,4,148,64,26,20,8,167,1,16,223,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,127,64,26,20,8,167,1,16,224,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,222,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,147,64,26,20,8,167,1,16,226,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,129,64,26,20,8,167,1,16,227,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,225,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,146,64,26,20,8,167,1,16,229,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,131,64,26,20,8,167,1,16,230,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,228,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,147,64,26,20,8,167,1,16,232,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,132,64,26,20,8,167,1,16,233,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,231,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,148,64,26,20,8,167,1,16,235,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,132,64,26,20,8,167,1,16,236,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,234,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,151,64,26,20,8,167,1,16,238,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,131,64,26,20,8,167,1,16,239,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,237,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,130,64,26,20,8,167,1,16,242,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,100,153,64,26,20,8,167,1,16,241,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,240,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,154,64,26,20,8,167,1,16,244,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,184,129,64,26,20,8,167,1,16,245,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,243,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,154,64,26,20,8,167,1,16,247,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,128,64,26,20,8,167,1,16,248,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,246,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,128,64,26,20,8,167,1,16,251,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,154,64,26,20,8,167,1,16,250,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,249,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,153,64,26,20,8,167,1,16,253,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,128,64,26,20,8,167,1,16,254,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,252,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,128,64,26,20,8,167,1,16,129,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,152,64,26,20,8,167,1,16,128,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,255,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,150,64,26,20,8,167,1,16,131,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,129,64,26,20,8,167,1,16,132,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,130,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,148,64,26,20,8,167,1,16,134,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,131,64,26,20,8,167,1,16,135,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,133,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,147,64,26,20,8,167,1,16,137,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,132,64,26,20,8,167,1,16,138,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,136,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,147,64,26,20,8,167,1,16,140,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,133,64,26,20,8,167,1,16,141,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,139,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,148,64,26,20,8,167,1,16,143,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,133,64,26,20,8,167,1,16,144,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,142,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,133,64,26,20,8,167,1,16,147,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,149,64,26,20,8,167,1,16,146,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,145,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,152,64,26,20,8,167,1,16,149,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,132,64,26,20,8,167,1,16,150,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,148,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,156,64,26,20,8,167,1,16,152,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,129,64,26,20,8,167,1,16,153,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,151,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,157,64,26,20,8,167,1,16,155,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,126,64,26,20,8,167,1,16,156,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,154,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,157,64,26,20,8,167,1,16,158,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,121,64,26,20,8,167,1,16,159,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,157,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,156,64,26,20,8,167,1,16,161,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,117,64,26,20,8,167,1,16,162,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,160,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,156,64,26,20,8,167,1,16,164,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,116,64,26,20,8,167,1,16,165,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,163,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,155,64,26,20,8,167,1,16,167,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,116,64,26,20,8,167,1,16,168,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,166,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,154,64,26,20,8,167,1,16,170,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,119,64,26,20,8,167,1,16,171,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,169,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,60,153,64,26,20,8,167,1,16,173,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,123,64,26,20,8,167,1,16,174,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,172,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,152,64,26,20,8,167,1,16,176,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,127,64,26,20,8,167,1,16,177,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,175,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,129,64,26,20,8,167,1,16,180,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,152,64,26,20,8,167,1,16,179,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,178,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,152,64,26,20,8,167,1,16,182,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,129,64,26,20,8,167,1,16,183,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,181,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,152,64,26,20,8,167,1,16,185,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,129,64,26,20,8,167,1,16,186,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,184,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,153,64,26,20,8,167,1,16,188,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,129,64,26,20,8,167,1,16,189,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,187,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,153,64,26,20,8,167,1,16,191,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,129,64,26,20,8,167,1,16,192,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,190,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,154,64,26,20,8,167,1,16,194,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,128,64,26,20,8,167,1,16,195,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,193,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,154,64,26,20,8,167,1,16,197,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,124,64,26,20,8,167,1,16,198,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,196,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,153,64,26,20,8,167,1,16,200,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,119,64,26,20,8,167,1,16,201,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,199,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,153,64,26,20,8,167,1,16,203,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,118,64,26,20,8,167,1,16,204,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,202,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,151,64,26,20,8,167,1,16,206,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,118,64,26,20,8,167,1,16,207,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,205,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,120,64,26,20,8,167,1,16,210,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,150,64,26,20,8,167,1,16,209,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,208,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,150,64,26,20,8,167,1,16,212,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,122,64,26,20,8,167,1,16,213,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,211,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,252,149,64,26,20,8,167,1,16,215,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,123,64,26,20,8,167,1,16,216,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,214,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,149,64,26,20,8,167,1,16,218,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,124,64,26,20,8,167,1,16,219,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,217,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,149,64,26,20,8,167,1,16,221,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,126,64,26,20,8,167,1,16,222,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,220,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,4,150,64,26,20,8,167,1,16,224,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,126,64,26,20,8,167,1,16,225,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,223,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,150,64,26,20,8,167,1,16,227,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,125,64,26,20,8,167,1,16,228,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,226,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,151,64,26,20,8,167,1,16,230,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,123,64,26,20,8,167,1,16,231,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,229,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,252,151,64,26,20,8,167,1,16,233,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,119,64,26,20,8,167,1,16,234,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,232,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,152,64,26,20,8,167,1,16,236,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,115,64,26,20,8,167,1,16,237,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,235,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,60,152,64,26,20,8,167,1,16,239,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,111,64,26,20,8,167,1,16,240,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,238,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,108,64,26,20,8,167,1,16,243,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,151,64,26,20,8,167,1,16,242,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,241,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,151,64,26,20,8,167,1,16,245,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,108,64,26,20,8,167,1,16,246,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,244,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,150,64,26,20,8,167,1,16,248,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,111,64,26,20,8,167,1,16,249,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,247,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,148,64,26,20,8,167,1,16,251,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,115,64,26,20,8,167,1,16,252,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,250,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,147,64,26,20,8,167,1,16,254,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,122,64,26,20,8,167,1,16,255,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,253,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,146,64,26,20,8,167,1,16,129,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,129,64,26,20,8,167,1,16,130,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,128,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,146,64,26,20,8,167,1,16,132,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,132,64,26,20,8,167,1,16,133,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,131,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,147,64,26,20,8,167,1,16,135,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,133,64,26,20,8,167,1,16,136,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,134,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,20,148,64,26,20,8,167,1,16,138,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,133,64,26,20,8,167,1,16,139,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,137,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,132,64,26,20,8,167,1,16,142,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,150,64,26,20,8,167,1,16,141,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,140,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,151,64,26,20,8,167,1,16,144,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,130,64,26,20,8,167,1,16,145,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,143,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,152,64,26,20,8,167,1,16,147,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,125,64,26,20,8,167,1,16,148,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,146,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,153,64,26,20,8,167,1,16,150,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,118,64,26,20,8,167,1,16,151,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,149,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,152,64,26,20,8,167,1,16,153,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,113,64,26,20,8,167,1,16,154,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,152,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,110,64,26,20,8,167,1,16,157,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,152,64,26,20,8,167,1,16,156,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,155,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,151,64,26,20,8,167,1,16,159,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,109,64,26,20,8,167,1,16,160,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,158,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,150,64,26,20,8,167,1,16,162,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,112,64,26,20,8,167,1,16,163,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,161,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,119,64,26,20,8,167,1,16,166,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,148,64,26,20,8,167,1,16,165,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,164,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,146,64,26,20,8,167,1,16,168,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,129,64,26,20,8,167,1,16,169,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,167,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,145,64,26,20,8,167,1,16,171,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,132,64,26,20,8,167,1,16,172,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,170,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,146,64,26,20,8,167,1,16,174,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,134,64,26,20,8,167,1,16,175,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,173,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,252,147,64,26,20,8,167,1,16,177,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,133,64,26,20,8,167,1,16,178,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,176,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,150,64,26,20,8,167,1,16,180,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,131,64,26,20,8,167,1,16,181,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,179,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,151,64,26,20,8,167,1,16,183,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,128,64,26,20,8,167,1,16,184,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,182,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,122,64,26,20,8,167,1,16,187,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,152,64,26,20,8,167,1,16,186,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,185,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,151,64,26,20,8,167,1,16,189,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,115,64,26,20,8,167,1,16,190,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,188,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,151,64,26,20,8,167,1,16,192,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,115,64,26,20,8,167,1,16,193,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,191,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,150,64,26,20,8,167,1,16,195,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,115,64,26,20,8,167,1,16,196,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,194,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,149,64,26,20,8,167,1,16,198,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,117,64,26,20,8,167,1,16,199,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,197,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,148,64,26,20,8,167,1,16,201,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,122,64,26,20,8,167,1,16,202,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,200,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,128,64,26,20,8,167,1,16,205,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,146,64,26,20,8,167,1,16,204,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,203,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,100,145,64,26,20,8,167,1,16,207,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,131,64,26,20,8,167,1,16,208,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,206,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,24,134,64,26,20,8,167,1,16,211,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,144,64,26,20,8,167,1,16,210,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,209,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,144,64,26,20,8,167,1,16,213,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,135,64,26,20,8,167,1,16,214,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,212,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,145,64,26,20,8,167,1,16,216,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,136,64,26,20,8,167,1,16,217,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,215,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,146,64,26,20,8,167,1,16,219,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,136,64,26,20,8,167,1,16,220,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,218,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,149,64,26,20,8,167,1,16,222,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,135,64,26,20,8,167,1,16,223,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,221,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,130,64,26,20,8,167,1,16,226,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,153,64,26,20,8,167,1,16,225,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,224,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,153,64,26,20,8,167,1,16,228,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,127,64,26,20,8,167,1,16,229,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,227,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,153,64,26,20,8,167,1,16,231,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,125,64,26,20,8,167,1,16,232,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,230,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,153,64,26,20,8,167,1,16,234,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,124,64,26,20,8,167,1,16,235,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,233,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,151,64,26,20,8,167,1,16,237,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,125,64,26,20,8,167,1,16,238,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,236,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,150,64,26,20,8,167,1,16,240,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,127,64,26,20,8,167,1,16,241,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,239,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,148,64,26,20,8,167,1,16,243,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,130,64,26,20,8,167,1,16,244,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,242,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,168,134,64,26,20,8,167,1,16,247,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,146,64,26,20,8,167,1,16,246,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,245,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,145,64,26,20,8,167,1,16,249,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,137,64,26,20,8,167,1,16,250,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,248,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,145,64,26,20,8,167,1,16,252,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,139,64,26,20,8,167,1,16,253,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,251,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,146,64,26,20,8,167,1,16,255,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,139,64,26,20,8,167,1,16,128,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,254,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,139,64,26,20,8,167,1,16,131,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,148,64,26,20,8,167,1,16,130,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,129,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,150,64,26,20,8,167,1,16,133,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,248,137,64,26,20,8,167,1,16,134,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,132,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,60,151,64,26,20,8,167,1,16,136,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,136,64,26,20,8,167,1,16,137,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,135,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,134,64,26,20,8,167,1,16,140,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,151,64,26,20,8,167,1,16,139,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,138,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,151,64,26,20,8,167,1,16,142,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,133,64,26,20,8,167,1,16,143,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,141,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,151,64,26,20,8,167,1,16,145,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,133,64,26,20,8,167,1,16,146,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,144,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,120,150,64,26,20,8,167,1,16,148,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,133,64,26,20,8,167,1,16,149,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,147,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,149,64,26,20,8,167,1,16,151,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,134,64,26,20,8,167,1,16,152,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,150,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,148,64,26,20,8,167,1,16,154,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,136,64,26,20,8,167,1,16,155,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,153,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,4,148,64,26,20,8,167,1,16,157,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,138,64,26,20,8,167,1,16,158,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,156,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,252,147,64,26,20,8,167,1,16,160,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,139,64,26,20,8,167,1,16,161,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,159,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,149,64,26,20,8,167,1,16,163,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,139,64,26,20,8,167,1,16,164,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,162,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,151,64,26,20,8,167,1,16,166,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,24,139,64,26,20,8,167,1,16,167,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,165,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,153,64,26,20,8,167,1,16,169,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,137,64,26,20,8,167,1,16,170,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,168,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,153,64,26,20,8,167,1,16,172,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,136,64,26,20,8,167,1,16,173,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,171,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,153,64,26,20,8,167,1,16,175,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,136,64,26,20,8,167,1,16,176,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,174,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,153,64,26,20,8,167,1,16,178,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,136,64,26,20,8,167,1,16,179,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,177,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,153,64,26,20,8,167,1,16,181,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,136,64,26,20,8,167,1,16,182,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,180,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,153,64,26,20,8,167,1,16,184,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,136,64,26,20,8,167,1,16,185,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,183,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,152,64,26,20,8,167,1,16,187,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,137,64,26,20,8,167,1,16,188,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,186,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,152,64,26,20,8,167,1,16,190,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,168,137,64,26,20,8,167,1,16,191,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,189,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,152,64,26,20,8,167,1,16,193,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,137,64,26,20,8,167,1,16,194,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,192,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,152,64,26,20,8,167,1,16,196,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,248,137,64,26,20,8,167,1,16,197,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,167,1,16,195,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,167,1,16,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,97,100,51,98,53,26,19,8,167,1,16,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,167,1,16,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,34,19,8,173,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,167,1,16,2,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,57,98,101,102,50,26,19,8,167,1,16,3,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,167,1,16,4,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,76,192,26,19,8,167,1,16,8,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,147,64,26,19,8,167,1,16,7,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,167,1,16,6,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,147,64,26,19,8,167,1,16,10,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,24,192,26,19,8,167,1,16,11,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,167,1,16,9,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,147,64,26,19,8,167,1,16,13,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,16,192,26,19,8,167,1,16,14,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,167,1,16,12,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,147,64,26,19,8,167,1,16,16,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,16,192,26,19,8,167,1,16,17,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,167,1,16,15,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,147,64,26,19,8,167,1,16,19,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,44,192,26,19,8,167,1,16,20,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,167,1,16,18,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,147,64,26,19,8,167,1,16,22,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,53,192,26,19,8,167,1,16,23,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,167,1,16,21,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,167,1,16,5,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,167,1,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,170,1,16,2,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,57,98,101,102,50,26,19,8,170,1,16,3,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,170,1,16,4,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,147,64,26,19,8,170,1,16,7,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,53,192,26,19,8,170,1,16,8,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,170,1,16,6,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,53,192,26,19,8,170,1,16,11,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,147,64,26,19,8,170,1,16,10,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,170,1,16,9,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,170,1,16,5,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,170,1,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,52,55,97,102,57,26,19,8,172,1,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,172,1,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,108,75,121,126,5,197,149,64,26,19,8,172,1,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,205,219,214,214,46,193,156,64,26,19,8,172,1,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,172,1,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,108,75,121,126,5,197,149,64,26,19,8,172,1,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,183,225,42,102,215,199,156,64,26,19,8,172,1,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,172,1,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,172,1,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,172,1,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,172,1,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,192,29,18,189,29,10,186,29,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,173,1,16,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,97,100,51,98,53,26,19,8,173,1,16,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,173,1,16,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,131,28,10,6,112,111,105,110,116,115,18,248,27,18,245,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,152,64,26,19,8,173,1,16,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,142,64,26,19,8,173,1,16,8,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,152,64,26,19,8,173,1,16,10,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,142,64,26,19,8,173,1,16,11,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,9,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,151,64,26,19,8,173,1,16,13,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,142,64,26,19,8,173,1,16,14,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,12,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,151,64,26,19,8,173,1,16,16,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,142,64,26,19,8,173,1,16,17,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,15,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,150,64,26,19,8,173,1,16,19,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,142,64,26,19,8,173,1,16,20,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,18,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,148,64,26,19,8,173,1,16,22,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,141,64,26,19,8,173,1,16,23,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,21,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,147,64,26,19,8,173,1,16,25,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,140,64,26,19,8,173,1,16,26,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,24,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,146,64,26,19,8,173,1,16,28,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,139,64,26,19,8,173,1,16,29,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,27,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,145,64,26,19,8,173,1,16,31,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,138,64,26,19,8,173,1,16,32,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,30,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,145,64,26,19,8,173,1,16,34,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,136,64,26,19,8,173,1,16,35,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,33,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,145,64,26,19,8,173,1,16,37,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,135,64,26,19,8,173,1,16,38,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,36,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,146,64,26,19,8,173,1,16,40,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,133,64,26,19,8,173,1,16,41,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,39,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,147,64,26,19,8,173,1,16,43,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,132,64,26,19,8,173,1,16,44,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,42,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,149,64,26,19,8,173,1,16,46,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,132,64,26,19,8,173,1,16,47,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,45,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,150,64,26,19,8,173,1,16,49,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,132,64,26,19,8,173,1,16,50,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,48,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,151,64,26,19,8,173,1,16,52,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,132,64,26,19,8,173,1,16,53,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,51,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,151,64,26,19,8,173,1,16,55,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,133,64,26,19,8,173,1,16,56,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,54,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,151,64,26,19,8,173,1,16,58,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,134,64,26,19,8,173,1,16,59,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,57,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,151,64,26,19,8,173,1,16,61,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,136,64,26,19,8,173,1,16,62,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,60,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,150,64,26,19,8,173,1,16,64,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,137,64,26,19,8,173,1,16,65,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,63,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,137,64,26,19,8,173,1,16,68,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,150,64,26,19,8,173,1,16,67,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,66,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,149,64,26,19,8,173,1,16,70,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,138,64,26,19,8,173,1,16,71,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,69,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,149,64,26,19,8,173,1,16,73,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,138,64,26,19,8,173,1,16,74,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,72,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,148,64,26,19,8,173,1,16,76,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,138,64,26,19,8,173,1,16,77,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,75,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,147,64,26,19,8,173,1,16,79,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,137,64,26,19,8,173,1,16,80,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,78,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,147,64,26,19,8,173,1,16,82,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,137,64,26,19,8,173,1,16,83,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,81,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,147,64,26,19,8,173,1,16,85,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,136,64,26,19,8,173,1,16,86,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,84,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,147,64,26,19,8,173,1,16,88,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,136,64,26,19,8,173,1,16,89,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,87,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,148,64,26,19,8,173,1,16,91,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,135,64,26,19,8,173,1,16,92,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,90,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,150,64,26,19,8,173,1,16,94,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,135,64,26,19,8,173,1,16,95,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,93,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,150,64,26,19,8,173,1,16,97,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,136,64,26,19,8,173,1,16,98,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,96,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,150,64,26,19,8,173,1,16,100,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,136,64,26,19,8,173,1,16,101,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,99,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,173,1,16,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,34,19,8,179,1,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,175,1,16,2,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,57,98,101,102,50,26,19,8,175,1,16,3,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,175,1,16,4,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,147,64,26,19,8,175,1,16,7,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,64,192,26,19,8,175,1,16,8,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,175,1,16,6,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,147,64,26,19,8,175,1,16,10,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,66,192,26,19,8,175,1,16,11,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,175,1,16,9,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,175,1,16,5,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,175,1,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,246,5,18,243,5,10,240,5,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,147,64,26,19,8,179,1,16,7,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,66,192,26,19,8,179,1,16,8,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,179,1,16,6,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,147,64,26,19,8,179,1,16,10,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,67,192,26,19,8,179,1,16,11,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,179,1,16,9,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,147,64,26,19,8,179,1,16,13,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,64,26,19,8,179,1,16,14,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,179,1,16,12,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,65,64,26,19,8,179,1,16,17,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,148,64,26,19,8,179,1,16,16,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,179,1,16,15,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,64,64,26,19,8,179,1,16,20,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,148,64,26,19,8,179,1,16,19,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,179,1,16,18,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,179,1,16,5,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,179,1,16,2,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,57,98,101,102,50,26,19,8,179,1,16,3,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,179,1,16,4,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,179,1,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,182,1,16,4,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,148,64,26,19,8,182,1,16,7,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,81,192,26,19,8,182,1,16,8,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,182,1,16,6,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,148,64,26,19,8,182,1,16,10,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,28,64,26,19,8,182,1,16,11,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,182,1,16,9,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,182,1,16,5,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,182,1,16,2,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,57,98,101,102,50,26,19,8,182,1,16,3,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,182,1,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,246,5,18,243,5,10,240,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,187,1,16,4,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,54,64,26,19,8,187,1,16,8,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,147,64,26,19,8,187,1,16,7,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,187,1,16,6,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,148,64,26,19,8,187,1,16,10,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,54,64,26,19,8,187,1,16,11,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,187,1,16,9,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,148,64,26,19,8,187,1,16,13,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,69,64,26,19,8,187,1,16,14,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,187,1,16,12,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,148,64,26,19,8,187,1,16,16,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,67,64,26,19,8,187,1,16,17,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,187,1,16,15,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,148,64,26,19,8,187,1,16,19,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,49,64,26,19,8,187,1,16,20,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,187,1,16,18,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,187,1,16,5,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,187,1,16,2,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,57,98,101,102,50,26,19,8,187,1,16,3,26,12,99,70,121,157,152,207,109,6,237,70,60,62,18,19,8,187,1,16,1,26,12,99,70,121,157,152,207,109,6,237,70,60,62,10,148,71,18,145,71,10,142,71,10,215,69,10,6,112,111,105,110,116,115,18,204,69,18,201,69,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,145,64,26,19,8,187,1,16,7,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,133,64,26,19,8,187,1,16,8,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,6,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,144,64,26,19,8,187,1,16,10,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,132,64,26,19,8,187,1,16,11,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,9,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,144,64,26,19,8,187,1,16,13,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,130,64,26,19,8,187,1,16,14,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,12,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,143,64,26,19,8,187,1,16,16,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,129,64,26,19,8,187,1,16,17,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,15,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,143,64,26,19,8,187,1,16,19,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,129,64,26,19,8,187,1,16,20,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,18,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,145,64,26,19,8,187,1,16,22,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,136,64,26,19,8,187,1,16,23,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,21,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,145,64,26,19,8,187,1,16,25,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,137,64,26,19,8,187,1,16,26,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,24,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,145,64,26,19,8,187,1,16,28,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,134,64,26,19,8,187,1,16,29,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,27,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,145,64,26,19,8,187,1,16,31,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,132,64,26,19,8,187,1,16,32,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,30,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,145,64,26,19,8,187,1,16,34,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,187,1,16,35,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,33,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,145,64,26,19,8,187,1,16,37,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,133,64,26,19,8,187,1,16,38,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,36,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,145,64,26,19,8,187,1,16,40,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,134,64,26,19,8,187,1,16,41,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,39,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,145,64,26,19,8,187,1,16,43,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,132,64,26,19,8,187,1,16,44,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,42,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,145,64,26,19,8,187,1,16,46,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,131,64,26,19,8,187,1,16,47,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,45,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,145,64,26,19,8,187,1,16,49,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,187,1,16,50,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,48,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,144,64,26,19,8,187,1,16,52,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,130,64,26,19,8,187,1,16,53,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,51,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,144,64,26,19,8,187,1,16,55,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,131,64,26,19,8,187,1,16,56,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,54,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,144,64,26,19,8,187,1,16,58,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,129,64,26,19,8,187,1,16,59,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,57,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,127,64,26,19,8,187,1,16,62,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,145,64,26,19,8,187,1,16,61,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,60,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,145,64,26,19,8,187,1,16,64,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,129,64,26,19,8,187,1,16,65,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,63,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,127,64,26,19,8,187,1,16,68,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,145,64,26,19,8,187,1,16,67,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,66,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,144,64,26,19,8,187,1,16,70,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,129,64,26,19,8,187,1,16,71,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,69,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,144,64,26,19,8,187,1,16,73,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,127,64,26,19,8,187,1,16,74,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,72,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,144,64,26,19,8,187,1,16,76,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,129,64,26,19,8,187,1,16,77,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,75,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,144,64,26,19,8,187,1,16,79,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,128,64,26,19,8,187,1,16,80,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,78,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,144,64,26,19,8,187,1,16,82,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,129,64,26,19,8,187,1,16,83,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,81,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,144,64,26,19,8,187,1,16,85,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,129,64,26,19,8,187,1,16,86,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,84,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,127,64,26,19,8,187,1,16,89,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,144,64,26,19,8,187,1,16,88,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,87,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,144,64,26,19,8,187,1,16,91,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,131,64,26,19,8,187,1,16,92,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,90,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,144,64,26,19,8,187,1,16,94,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,127,64,26,19,8,187,1,16,95,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,93,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,144,64,26,19,8,187,1,16,97,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,121,64,26,19,8,187,1,16,98,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,96,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,144,64,26,19,8,187,1,16,100,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,120,64,26,19,8,187,1,16,101,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,99,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,144,64,26,19,8,187,1,16,103,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,119,64,26,19,8,187,1,16,104,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,102,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,145,64,26,19,8,187,1,16,106,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,123,64,26,19,8,187,1,16,107,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,105,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,145,64,26,19,8,187,1,16,109,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,125,64,26,19,8,187,1,16,110,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,108,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,145,64,26,19,8,187,1,16,112,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,128,64,26,19,8,187,1,16,113,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,111,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,145,64,26,19,8,187,1,16,115,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,131,64,26,19,8,187,1,16,116,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,114,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,145,64,26,19,8,187,1,16,118,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,187,1,16,119,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,117,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,146,64,26,19,8,187,1,16,121,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,123,64,26,19,8,187,1,16,122,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,120,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,146,64,26,19,8,187,1,16,124,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,122,64,26,19,8,187,1,16,125,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,123,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,146,64,26,19,8,187,1,16,127,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,123,64,26,20,8,187,1,16,128,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,126,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,60,146,64,26,20,8,187,1,16,130,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,126,64,26,20,8,187,1,16,131,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,129,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,146,64,26,20,8,187,1,16,133,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,129,64,26,20,8,187,1,16,134,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,132,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,146,64,26,20,8,187,1,16,136,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,129,64,26,20,8,187,1,16,137,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,135,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,146,64,26,20,8,187,1,16,139,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,128,64,26,20,8,187,1,16,140,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,138,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,146,64,26,20,8,187,1,16,142,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,126,64,26,20,8,187,1,16,143,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,141,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,146,64,26,20,8,187,1,16,145,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,124,64,26,20,8,187,1,16,146,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,144,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,146,64,26,20,8,187,1,16,148,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,122,64,26,20,8,187,1,16,149,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,147,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,146,64,26,20,8,187,1,16,151,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,127,64,26,20,8,187,1,16,152,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,150,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,146,64,26,20,8,187,1,16,154,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,130,64,26,20,8,187,1,16,155,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,153,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,146,64,26,20,8,187,1,16,157,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,131,64,26,20,8,187,1,16,158,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,156,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,100,146,64,26,20,8,187,1,16,160,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,129,64,26,20,8,187,1,16,161,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,159,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,146,64,26,20,8,187,1,16,163,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,120,64,26,20,8,187,1,16,164,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,162,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,146,64,26,20,8,187,1,16,166,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,116,64,26,20,8,187,1,16,167,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,165,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,146,64,26,20,8,187,1,16,169,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,112,64,26,20,8,187,1,16,170,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,168,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,146,64,26,20,8,187,1,16,172,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,110,64,26,20,8,187,1,16,173,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,171,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,147,64,26,20,8,187,1,16,175,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,113,64,26,20,8,187,1,16,176,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,174,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,146,64,26,20,8,187,1,16,178,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,116,64,26,20,8,187,1,16,179,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,177,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,146,64,26,20,8,187,1,16,181,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,119,64,26,20,8,187,1,16,182,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,180,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,120,64,26,20,8,187,1,16,185,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,146,64,26,20,8,187,1,16,184,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,183,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,121,64,26,20,8,187,1,16,188,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,146,64,26,20,8,187,1,16,187,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,186,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,146,64,26,20,8,187,1,16,190,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,122,64,26,20,8,187,1,16,191,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,189,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,20,146,64,26,20,8,187,1,16,193,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,121,64,26,20,8,187,1,16,194,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,192,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,145,64,26,20,8,187,1,16,196,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,118,64,26,20,8,187,1,16,197,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,195,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,145,64,26,20,8,187,1,16,199,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,112,64,26,20,8,187,1,16,200,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,198,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,145,64,26,20,8,187,1,16,202,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,118,64,26,20,8,187,1,16,203,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,201,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,144,64,26,20,8,187,1,16,205,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,129,64,26,20,8,187,1,16,206,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,204,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,128,64,26,20,8,187,1,16,209,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,144,64,26,20,8,187,1,16,208,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,207,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,40,145,64,26,20,8,187,1,16,211,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,125,64,26,20,8,187,1,16,212,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,210,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,60,145,64,26,20,8,187,1,16,214,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,125,64,26,20,8,187,1,16,215,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,213,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,145,64,26,20,8,187,1,16,217,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,129,64,26,20,8,187,1,16,218,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,216,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,129,64,26,20,8,187,1,16,221,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,145,64,26,20,8,187,1,16,220,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,219,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,145,64,26,20,8,187,1,16,223,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,129,64,26,20,8,187,1,16,224,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,222,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,145,64,26,20,8,187,1,16,226,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,128,64,26,20,8,187,1,16,227,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,225,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,4,146,64,26,20,8,187,1,16,229,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,124,64,26,20,8,187,1,16,230,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,228,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,146,64,26,20,8,187,1,16,232,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,126,64,26,20,8,187,1,16,233,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,231,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,145,64,26,20,8,187,1,16,235,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,128,64,26,20,8,187,1,16,236,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,234,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,145,64,26,20,8,187,1,16,238,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,123,64,26,20,8,187,1,16,239,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,237,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,126,64,26,20,8,187,1,16,242,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,145,64,26,20,8,187,1,16,241,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,20,8,187,1,16,240,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,5,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,187,1,16,2,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,51,53,53,98,50,26,19,8,187,1,16,3,26,12,99,70,121,142,152,207,109,6,237,70,57,232,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,187,1,16,4,26,12,99,70,121,142,152,207,109,6,237,70,57,232,18,19,8,187,1,16,1,26,12,99,70,121,142,152,207,109,6,237,70,57,232,34,19,8,159,2,16,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,186,1,16,2,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,102,98,49,97,99,26,19,8,186,1,16,3,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,186,1,16,4,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,131,170,24,155,7,132,64,26,19,8,186,1,16,7,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,21,43,90,232,135,191,155,64,26,19,8,186,1,16,8,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,186,1,16,6,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,131,170,24,155,7,132,64,26,19,8,186,1,16,10,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,129,95,162,142,222,184,155,64,26,19,8,186,1,16,11,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,186,1,16,9,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,185,72,249,50,147,47,132,64,26,19,8,186,1,16,13,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,246,36,241,168,214,224,155,64,26,19,8,186,1,16,14,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,186,1,16,12,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,106,6,27,214,140,132,64,26,19,8,186,1,16,16,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,216,30,136,105,37,2,156,64,26,19,8,186,1,16,17,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,186,1,16,15,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,25,153,229,129,123,167,132,64,26,19,8,186,1,16,19,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,216,30,136,105,37,2,156,64,26,19,8,186,1,16,20,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,186,1,16,18,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,23,177,55,9,58,133,64,26,19,8,186,1,16,22,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,207,141,129,245,131,211,155,64,26,19,8,186,1,16,23,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,186,1,16,21,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,208,45,211,158,164,133,64,26,19,8,186,1,16,25,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,198,252,122,129,226,164,155,64,26,19,8,186,1,16,26,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,186,1,16,24,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,186,1,16,5,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,186,1,16,1,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,149,25,18,146,25,10,143,25,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,57,53,97,51,26,19,8,193,1,16,3,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,193,1,16,4,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,216,23,10,6,112,111,105,110,116,115,18,205,23,18,202,23,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,107,64,26,19,8,193,1,16,8,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,161,64,26,19,8,193,1,16,7,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,6,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,10,161,64,26,19,8,193,1,16,10,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,114,64,26,19,8,193,1,16,11,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,9,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,66,160,64,26,19,8,193,1,16,13,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,119,64,26,19,8,193,1,16,14,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,12,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,159,64,26,19,8,193,1,16,16,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,123,64,26,19,8,193,1,16,17,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,15,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,22,160,64,26,19,8,193,1,16,19,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,193,1,16,20,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,18,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,161,64,26,19,8,193,1,16,22,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,123,64,26,19,8,193,1,16,23,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,21,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,161,64,26,19,8,193,1,16,25,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,122,64,26,19,8,193,1,16,26,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,24,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,14,162,64,26,19,8,193,1,16,28,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,122,64,26,19,8,193,1,16,29,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,27,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,54,162,64,26,19,8,193,1,16,31,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,122,64,26,19,8,193,1,16,32,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,30,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,162,64,26,19,8,193,1,16,34,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,122,64,26,19,8,193,1,16,35,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,33,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,121,64,26,19,8,193,1,16,38,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,42,162,64,26,19,8,193,1,16,37,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,36,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,162,64,26,19,8,193,1,16,40,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,119,64,26,19,8,193,1,16,41,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,39,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,161,64,26,19,8,193,1,16,43,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,115,64,26,19,8,193,1,16,44,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,42,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,113,64,26,19,8,193,1,16,47,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,62,161,64,26,19,8,193,1,16,46,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,45,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,160,64,26,19,8,193,1,16,49,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,111,64,26,19,8,193,1,16,50,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,48,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,160,64,26,19,8,193,1,16,52,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,110,64,26,19,8,193,1,16,53,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,51,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,160,64,26,19,8,193,1,16,55,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,112,64,26,19,8,193,1,16,56,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,54,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,190,160,64,26,19,8,193,1,16,58,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,116,64,26,19,8,193,1,16,59,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,57,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,160,64,26,19,8,193,1,16,61,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,120,64,26,19,8,193,1,16,62,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,60,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,160,64,26,19,8,193,1,16,64,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,122,64,26,19,8,193,1,16,65,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,63,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,160,64,26,19,8,193,1,16,67,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,123,64,26,19,8,193,1,16,68,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,66,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,161,64,26,19,8,193,1,16,70,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,125,64,26,19,8,193,1,16,71,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,69,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,161,64,26,19,8,193,1,16,73,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,126,64,26,19,8,193,1,16,74,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,72,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,161,64,26,19,8,193,1,16,76,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,124,64,26,19,8,193,1,16,77,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,75,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,161,64,26,19,8,193,1,16,79,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,122,64,26,19,8,193,1,16,80,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,78,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,161,64,26,19,8,193,1,16,82,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,116,64,26,19,8,193,1,16,83,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,81,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,109,64,26,19,8,193,1,16,86,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,58,161,64,26,19,8,193,1,16,85,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,84,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,5,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,193,1,16,2,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,193,1,16,1,26,12,99,70,121,197,152,207,109,6,237,70,94,139,34,19,8,194,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,70,136,52,160,11,57,145,64,26,19,8,197,1,16,12,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,166,121,116,185,115,133,159,64,26,19,8,197,1,16,13,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,197,1,16,11,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,197,1,16,10,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,197,1,16,2,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,102,98,49,97,99,26,19,8,197,1,16,3,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,197,1,16,4,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,166,121,116,185,115,133,159,64,26,19,8,197,1,16,6,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,70,136,52,160,11,57,145,64,26,19,8,197,1,16,7,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,64,23,33,245,87,49,100,64,26,19,8,197,1,16,8,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,160,61,197,158,79,187,87,64,26,19,8,197,1,16,9,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,197,1,16,5,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,197,1,16,1,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,198,1,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,77,7,52,78,8,152,64,26,19,8,198,1,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,198,6,147,10,249,239,147,64,26,19,8,198,1,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,198,1,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,77,7,52,78,8,152,64,26,19,8,198,1,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,198,6,147,10,249,239,147,64,26,19,8,198,1,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,198,1,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,198,1,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,198,1,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,52,55,97,102,57,26,19,8,198,1,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,198,1,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,161,10,18,158,10,10,155,10,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,147,64,26,19,8,202,1,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,63,64,26,19,8,202,1,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,202,1,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,51,192,26,19,8,202,1,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,148,64,26,19,8,202,1,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,202,1,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,148,64,26,19,8,202,1,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,192,26,19,8,202,1,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,202,1,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,34,64,26,19,8,202,1,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,148,64,26,19,8,202,1,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,202,1,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,148,64,26,19,8,202,1,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,57,64,26,19,8,202,1,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,202,1,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,147,64,26,19,8,202,1,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,67,64,26,19,8,202,1,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,202,1,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,147,64,26,19,8,202,1,16,25,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,80,64,26,19,8,202,1,16,26,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,202,1,16,24,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,146,64,26,19,8,202,1,16,28,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,83,64,26,19,8,202,1,16,29,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,202,1,16,27,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,145,64,26,19,8,202,1,16,31,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,90,64,26,19,8,202,1,16,32,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,202,1,16,30,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,146,64,26,19,8,202,1,16,34,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,88,64,26,19,8,202,1,16,35,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,202,1,16,33,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,202,1,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,202,1,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,202,1,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,202,1,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,202,1,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,214,33,18,211,33,10,208,33,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,204,1,16,2,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,57,53,97,51,26,19,8,204,1,16,3,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,204,1,16,4,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,174,32,10,6,112,111,105,110,116,115,18,163,32,18,160,32,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,198,162,64,26,19,8,204,1,16,7,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,108,64,26,19,8,204,1,16,8,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,6,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,154,162,64,26,19,8,204,1,16,10,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,109,64,26,19,8,204,1,16,11,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,9,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,162,64,26,19,8,204,1,16,13,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,111,64,26,19,8,204,1,16,14,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,12,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,161,64,26,19,8,204,1,16,16,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,113,64,26,19,8,204,1,16,17,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,15,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,122,161,64,26,19,8,204,1,16,19,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,115,64,26,19,8,204,1,16,20,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,18,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,159,64,26,19,8,204,1,16,22,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,122,64,26,19,8,204,1,16,23,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,21,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,123,64,26,19,8,204,1,16,26,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,159,64,26,19,8,204,1,16,25,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,24,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,159,64,26,19,8,204,1,16,28,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,124,64,26,19,8,204,1,16,29,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,27,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,159,64,26,19,8,204,1,16,31,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,125,64,26,19,8,204,1,16,32,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,30,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,34,161,64,26,19,8,204,1,16,34,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,126,64,26,19,8,204,1,16,35,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,33,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,150,162,64,26,19,8,204,1,16,37,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,127,64,26,19,8,204,1,16,38,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,36,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,162,64,26,19,8,204,1,16,40,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,127,64,26,19,8,204,1,16,41,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,39,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,198,162,64,26,19,8,204,1,16,43,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,126,64,26,19,8,204,1,16,44,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,42,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,170,162,64,26,19,8,204,1,16,46,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,123,64,26,19,8,204,1,16,47,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,45,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,142,162,64,26,19,8,204,1,16,49,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,120,64,26,19,8,204,1,16,50,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,48,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,66,162,64,26,19,8,204,1,16,52,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,116,64,26,19,8,204,1,16,53,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,51,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,113,64,26,19,8,204,1,16,56,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,6,162,64,26,19,8,204,1,16,55,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,54,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,174,161,64,26,19,8,204,1,16,58,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,109,64,26,19,8,204,1,16,59,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,57,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,10,161,64,26,19,8,204,1,16,61,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,100,64,26,19,8,204,1,16,62,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,60,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,160,64,26,19,8,204,1,16,64,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,98,64,26,19,8,204,1,16,65,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,63,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,160,64,26,19,8,204,1,16,67,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,204,1,16,68,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,66,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,130,160,64,26,19,8,204,1,16,70,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,112,64,26,19,8,204,1,16,71,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,69,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,118,160,64,26,19,8,204,1,16,73,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,118,64,26,19,8,204,1,16,74,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,72,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,160,64,26,19,8,204,1,16,76,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,121,64,26,19,8,204,1,16,77,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,75,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,160,64,26,19,8,204,1,16,79,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,122,64,26,19,8,204,1,16,80,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,78,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,170,160,64,26,19,8,204,1,16,82,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,123,64,26,19,8,204,1,16,83,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,81,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,160,64,26,19,8,204,1,16,85,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,126,64,26,19,8,204,1,16,86,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,84,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,161,64,26,19,8,204,1,16,88,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,127,64,26,19,8,204,1,16,89,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,87,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,161,64,26,19,8,204,1,16,91,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,128,64,26,19,8,204,1,16,92,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,90,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,161,64,26,19,8,204,1,16,94,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,204,1,16,95,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,93,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,161,64,26,19,8,204,1,16,97,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,126,64,26,19,8,204,1,16,98,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,96,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,182,161,64,26,19,8,204,1,16,100,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,124,64,26,19,8,204,1,16,101,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,99,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,161,64,26,19,8,204,1,16,103,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,121,64,26,19,8,204,1,16,104,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,102,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,10,162,64,26,19,8,204,1,16,106,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,118,64,26,19,8,204,1,16,107,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,105,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,162,64,26,19,8,204,1,16,109,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,114,64,26,19,8,204,1,16,110,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,108,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,118,162,64,26,19,8,204,1,16,112,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,106,64,26,19,8,204,1,16,113,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,111,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,122,162,64,26,19,8,204,1,16,115,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,204,1,16,116,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,114,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,5,26,12,99,70,121,197,152,207,109,6,237,70,94,139,18,19,8,204,1,16,1,26,12,99,70,121,197,152,207,109,6,237,70,94,139,10,229,6,18,226,6,10,223,6,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,148,64,26,19,8,205,1,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,115,64,26,19,8,205,1,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,205,1,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,148,64,26,19,8,205,1,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,115,64,26,19,8,205,1,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,205,1,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,113,64,26,19,8,205,1,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,148,64,26,19,8,205,1,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,205,1,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,146,64,26,19,8,205,1,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,97,64,26,19,8,205,1,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,205,1,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,144,64,26,19,8,205,1,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,75,64,26,19,8,205,1,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,205,1,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,143,64,26,19,8,205,1,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,191,26,19,8,205,1,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,205,1,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,205,1,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,205,1,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,205,1,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,205,1,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,205,1,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,221,13,18,218,13,10,215,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,205,1,16,2,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,98,48,102,102,102,26,19,8,205,1,16,3,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,205,1,16,4,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,154,64,26,19,8,205,1,16,7,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,142,64,26,19,8,205,1,16,8,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,6,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,142,64,26,19,8,205,1,16,11,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,154,64,26,19,8,205,1,16,10,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,9,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,154,64,26,19,8,205,1,16,13,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,141,64,26,19,8,205,1,16,14,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,12,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,154,64,26,19,8,205,1,16,16,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,140,64,26,19,8,205,1,16,17,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,15,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,154,64,26,19,8,205,1,16,19,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,139,64,26,19,8,205,1,16,20,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,18,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,155,64,26,19,8,205,1,16,22,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,141,64,26,19,8,205,1,16,23,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,21,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,155,64,26,19,8,205,1,16,25,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,141,64,26,19,8,205,1,16,26,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,24,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,156,64,26,19,8,205,1,16,28,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,141,64,26,19,8,205,1,16,29,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,27,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,156,64,26,19,8,205,1,16,31,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,142,64,26,19,8,205,1,16,32,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,30,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,156,64,26,19,8,205,1,16,34,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,142,64,26,19,8,205,1,16,35,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,33,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,143,64,26,19,8,205,1,16,38,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,156,64,26,19,8,205,1,16,37,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,36,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,156,64,26,19,8,205,1,16,40,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,143,64,26,19,8,205,1,16,41,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,39,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,158,64,26,19,8,205,1,16,43,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,143,64,26,19,8,205,1,16,44,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,42,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,158,64,26,19,8,205,1,16,46,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,144,64,26,19,8,205,1,16,47,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,45,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,5,26,12,99,70,121,202,152,207,109,6,237,70,107,219,18,19,8,205,1,16,1,26,12,99,70,121,202,152,207,109,6,237,70,107,219,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,205,1,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,205,1,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,205,1,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,57,68,232,202,214,236,148,64,26,19,8,205,1,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,141,201,134,227,38,142,146,64,26,19,8,205,1,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,205,1,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,57,68,232,202,214,236,148,64,26,19,8,205,1,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,6,66,182,114,177,112,147,64,26,19,8,205,1,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,205,1,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,205,1,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,205,1,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,142,4,18,139,4,10,136,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,70,136,52,160,11,57,145,64,26,19,8,207,1,16,7,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,64,23,33,245,87,49,100,64,26,19,8,207,1,16,8,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,160,61,197,158,79,187,87,64,26,19,8,207,1,16,9,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,166,121,116,185,115,133,159,64,26,19,8,207,1,16,6,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,207,1,16,5,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,70,136,52,160,11,57,145,64,26,19,8,207,1,16,12,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,166,121,116,185,115,133,159,64,26,19,8,207,1,16,13,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,207,1,16,11,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,207,1,16,10,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,207,1,16,2,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,102,98,49,97,99,26,19,8,207,1,16,3,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,207,1,16,4,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,207,1,16,1,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,178,9,18,175,9,10,172,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,209,1,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,209,1,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,209,1,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,229,225,189,60,42,250,148,64,26,19,8,209,1,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,249,143,180,199,188,32,147,64,26,19,8,209,1,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,209,1,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,130,178,129,189,16,174,149,64,26,19,8,209,1,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,189,211,28,128,119,175,146,64,26,19,8,209,1,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,209,1,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,149,152,175,91,247,149,64,26,19,8,209,1,16,13,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,58,103,92,85,122,155,146,64,26,19,8,209,1,16,14,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,209,1,16,12,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,110,25,5,86,31,150,64,26,19,8,209,1,16,16,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,58,103,92,85,122,155,146,64,26,19,8,209,1,16,17,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,209,1,16,15,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,149,61,4,190,255,37,150,64,26,19,8,209,1,16,19,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,195,172,157,213,113,215,146,64,26,19,8,209,1,16,20,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,209,1,16,18,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,22,133,19,250,77,150,64,26,19,8,209,1,16,22,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,131,213,245,71,180,92,147,64,26,19,8,209,1,16,23,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,209,1,16,21,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,18,209,67,147,2,18,150,64,26,19,8,209,1,16,25,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,131,213,245,71,180,92,147,64,26,19,8,209,1,16,26,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,209,1,16,24,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,213,20,172,75,189,160,149,64,26,19,8,209,1,16,28,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,6,66,182,114,177,112,147,64,26,19,8,209,1,16,29,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,209,1,16,27,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,49,149,89,114,87,149,64,26,19,8,209,1,16,31,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,54,76,76,15,2,146,147,64,26,19,8,209,1,16,32,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,209,1,16,30,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,209,1,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,209,1,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,212,1,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,212,1,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,212,1,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,110,25,5,86,31,150,64,26,19,8,212,1,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,153,123,136,142,27,222,146,64,26,19,8,212,1,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,212,1,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,120,175,161,166,64,150,64,26,19,8,212,1,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,153,123,136,142,27,222,146,64,26,19,8,212,1,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,212,1,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,83,9,191,221,21,151,64,26,19,8,212,1,16,13,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,99,152,113,156,208,148,146,64,26,19,8,212,1,16,14,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,212,1,16,12,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,212,1,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,212,1,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,170,16,18,167,16,10,164,16,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,211,1,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,211,1,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,211,1,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,130,15,10,6,112,111,105,110,116,115,18,247,14,18,244,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,149,64,26,19,8,211,1,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,133,64,26,19,8,211,1,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,148,64,26,19,8,211,1,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,132,64,26,19,8,211,1,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,148,64,26,19,8,211,1,16,13,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,131,64,26,19,8,211,1,16,14,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,12,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,148,64,26,19,8,211,1,16,16,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,134,64,26,19,8,211,1,16,17,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,15,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,148,64,26,19,8,211,1,16,19,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,134,64,26,19,8,211,1,16,20,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,18,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,148,64,26,19,8,211,1,16,22,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,134,64,26,19,8,211,1,16,23,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,21,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,148,64,26,19,8,211,1,16,25,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,134,64,26,19,8,211,1,16,26,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,24,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,134,64,26,19,8,211,1,16,29,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,148,64,26,19,8,211,1,16,28,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,27,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,134,64,26,19,8,211,1,16,32,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,149,64,26,19,8,211,1,16,31,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,30,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,148,64,26,19,8,211,1,16,34,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,133,64,26,19,8,211,1,16,35,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,33,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,147,64,26,19,8,211,1,16,37,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,132,64,26,19,8,211,1,16,38,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,36,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,147,64,26,19,8,211,1,16,40,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,133,64,26,19,8,211,1,16,41,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,39,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,135,64,26,19,8,211,1,16,44,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,148,64,26,19,8,211,1,16,43,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,42,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,148,64,26,19,8,211,1,16,46,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,133,64,26,19,8,211,1,16,47,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,45,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,149,64,26,19,8,211,1,16,49,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,131,64,26,19,8,211,1,16,50,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,48,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,148,64,26,19,8,211,1,16,52,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,132,64,26,19,8,211,1,16,53,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,51,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,147,64,26,19,8,211,1,16,55,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,133,64,26,19,8,211,1,16,56,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,54,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,211,1,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,139,62,18,136,62,10,133,62,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,211,1,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,227,60,10,6,112,111,105,110,116,115,18,216,60,18,213,60,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,151,199,104,103,42,79,158,64,26,19,8,211,1,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,201,191,10,223,230,87,156,64,26,19,8,211,1,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,22,4,45,9,190,85,158,64,26,19,8,211,1,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,74,131,70,61,83,81,156,64,26,19,8,211,1,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,22,4,45,9,190,85,158,64,26,19,8,211,1,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,31,233,0,11,179,114,157,64,26,19,8,211,1,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,145,50,2,50,160,118,158,64,26,19,8,211,1,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,13,42,205,106,20,233,157,64,26,19,8,211,1,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,12,97,215,90,130,151,158,64,26,19,8,211,1,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,137,88,162,147,246,9,158,64,26,19,8,211,1,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,55,10,240,109,230,158,64,26,19,8,211,1,16,22,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,4,135,119,188,216,42,158,64,26,19,8,211,1,16,23,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,21,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,73,1,39,237,59,159,64,26,19,8,211,1,16,25,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,129,60,196,161,147,62,158,64,26,19,8,211,1,16,26,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,24,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,80,230,189,205,59,160,64,26,19,8,211,1,16,28,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,0,121,136,67,39,69,158,64,26,19,8,211,1,16,29,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,27,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,26,113,204,109,254,118,160,64,26,19,8,211,1,16,31,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,8,149,102,53,138,16,158,64,26,19,8,211,1,16,32,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,30,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,212,189,131,103,42,155,160,64,26,19,8,211,1,16,34,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,142,237,8,201,128,226,157,64,26,19,8,211,1,16,35,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,33,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,143,10,59,97,86,191,160,64,26,19,8,211,1,16,37,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,23,205,34,25,80,167,157,64,26,19,8,211,1,16,38,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,36,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,139,252,75,232,164,217,160,64,26,19,8,211,1,16,40,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,160,172,60,105,31,108,157,64,26,19,8,211,1,16,41,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,39,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,179,242,231,197,150,232,156,64,26,19,8,211,1,16,44,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,133,103,229,178,26,1,161,64,26,19,8,211,1,16,43,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,42,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,2,29,50,152,213,20,161,64,26,19,8,211,1,16,46,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,64,224,240,142,23,147,156,64,26,19,8,211,1,16,47,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,45,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,64,180,156,172,70,37,161,64,26,19,8,211,1,16,49,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,78,145,53,182,4,55,156,64,26,19,8,211,1,16,50,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,48,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,191,240,96,78,218,43,161,64,26,19,8,211,1,16,52,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,89,187,2,33,25,232,155,64,26,19,8,211,1,16,53,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,51,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,14,67,31,36,47,161,64,26,19,8,211,1,16,55,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,248,103,63,138,56,28,155,64,26,19,8,211,1,16,56,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,54,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,89,246,57,105,27,161,64,26,19,8,211,1,16,58,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,7,160,251,109,254,178,154,64,26,19,8,211,1,16,59,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,57,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,194,139,37,248,10,161,64,26,19,8,211,1,16,61,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,13,53,98,163,136,139,154,64,26,19,8,211,1,16,62,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,60,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,139,252,75,232,164,217,160,64,26,19,8,211,1,16,64,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,23,216,183,81,196,73,154,64,26,19,8,211,1,16,65,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,63,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,25,95,47,14,157,60,154,64,26,19,8,211,1,16,68,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,147,24,42,218,7,165,160,64,26,19,8,211,1,16,67,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,66,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,253,252,165,191,194,244,154,64,26,19,8,211,1,16,71,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,164,215,93,122,166,46,160,64,26,19,8,211,1,16,70,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,69,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,230,124,183,7,201,36,160,64,26,19,8,211,1,16,73,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,236,61,114,31,36,107,155,64,26,19,8,211,1,16,74,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,72,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,224,231,80,210,62,76,160,64,26,19,8,211,1,16,76,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,103,108,71,72,6,140,155,64,26,19,8,211,1,16,77,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,75,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,91,22,38,251,32,109,160,64,26,19,8,211,1,16,79,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,228,33,148,45,193,159,155,64,26,19,8,211,1,16,80,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,78,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,135,203,98,75,60,161,64,26,19,8,211,1,16,82,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,99,94,88,207,84,166,155,64,26,19,8,211,1,16,83,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,81,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,101,229,207,139,45,153,155,64,26,19,8,211,1,16,86,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,116,168,177,18,124,119,161,64,26,19,8,211,1,16,85,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,84,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,181,241,98,175,161,64,26,19,8,211,1,16,88,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,234,182,250,98,75,120,155,64,26,19,8,211,1,16,89,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,87,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,82,19,94,108,221,161,64,26,19,8,211,1,16,91,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,240,75,97,152,213,80,155,64,26,19,8,211,1,16,92,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,90,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,23,161,206,54,127,57,162,64,26,19,8,211,1,16,94,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,128,71,89,218,7,225,154,64,26,19,8,211,1,16,95,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,93,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,146,207,163,95,97,90,162,64,26,19,8,211,1,16,97,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,136,99,55,204,106,172,154,64,26,19,8,211,1,16,98,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,96,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,132,30,95,56,116,182,162,64,26,19,8,211,1,16,100,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,38,16,116,53,138,224,153,64,26,19,8,211,1,16,101,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,99,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,242,141,238,120,205,162,64,26,19,8,211,1,16,103,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,179,253,124,254,10,139,153,64,26,19,8,211,1,16,104,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,102,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,126,137,248,2,234,221,162,64,26,19,8,211,1,16,106,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,189,160,210,172,70,73,153,64,26,19,8,211,1,16,107,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,105,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,61,228,158,117,199,231,162,64,26,19,8,211,1,16,109,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,199,67,40,91,130,7,153,64,26,19,8,211,1,16,110,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,108,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,62,69,232,164,241,162,64,26,19,8,211,1,16,112,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,226,165,177,169,92,79,152,64,26,19,8,211,1,16,113,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,111,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,238,207,126,20,113,0,152,64,26,19,8,211,1,16,116,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,61,228,158,117,199,231,162,64,26,19,8,211,1,16,115,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,114,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,120,54,16,33,25,184,151,64,26,19,8,211,1,16,119,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,196,60,65,9,190,185,162,64,26,19,8,211,1,16,118,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,117,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,209,167,62,72,146,162,64,26,19,8,211,1,16,121,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,253,7,59,248,54,151,151,64,26,19,8,211,1,16,122,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,120,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,77,28,91,89,141,126,162,64,26,19,8,211,1,16,124,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,126,203,118,86,163,144,151,64,26,19,8,211,1,16,125,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,123,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,150,221,146,216,18,64,162,64,26,19,8,211,1,16,127,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,126,203,118,86,163,144,151,64,26,20,8,211,1,16,128,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,126,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,154,235,129,81,196,37,162,64,26,20,8,211,1,16,130,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,122,189,135,221,241,170,151,64,26,20,8,211,1,16,131,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,129,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,162,7,96,67,39,241,161,64,26,20,8,211,1,16,133,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,238,207,126,20,113,0,152,64,26,20,8,211,1,16,134,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,132,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,36,82,19,94,108,221,161,64,26,20,8,211,1,16,136,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,103,119,220,128,122,46,152,64,26,20,8,211,1,16,137,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,135,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,104,126,228,167,103,198,161,64,26,20,8,211,1,16,139,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,93,212,134,210,62,112,152,64,26,20,8,211,1,16,140,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,138,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,44,110,241,79,207,168,161,64,26,20,8,211,1,16,142,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,73,142,219,117,199,243,152,64,26,20,8,211,1,16,143,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,141,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,173,49,45,174,59,162,161,64,26,20,8,211,1,16,145,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,185,146,227,51,149,99,153,64,26,20,8,211,1,16,146,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,144,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,173,49,45,174,59,162,161,64,26,20,8,211,1,16,148,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,46,44,82,39,237,171,153,64,26,20,8,211,1,16,149,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,147,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,44,110,241,79,207,168,161,64,26,20,8,211,1,16,151,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,163,197,192,26,69,244,153,64,26,20,8,211,1,16,152,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,150,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,5,92,100,64,185,161,64,26,20,8,211,1,16,154,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,27,230,166,202,117,47,154,64,26,20,8,211,1,16,155,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,153,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,229,51,49,141,34,218,161,64,26,20,8,211,1,16,157,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,146,6,141,122,166,106,154,64,26,20,8,211,1,16,158,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,156,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,31,189,172,40,226,4,162,64,26,20,8,211,1,16,160,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,9,39,115,42,215,165,154,64,26,20,8,211,1,16,161,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,159,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,248,103,63,138,56,28,155,64,26,20,8,211,1,16,164,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,120,18,36,26,34,8,4,18,8,142,193,180,230,175,116,162,64,26,20,8,211,1,16,163,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,162,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,109,26,17,135,18,163,64,26,20,8,211,1,16,166,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,234,182,250,98,75,120,155,64,26,20,8,211,1,16,167,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,165,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,47,51,90,78,218,67,163,64,26,20,8,211,1,16,169,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,232,47,131,166,114,133,155,64,26,20,8,211,1,16,170,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,168,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,230,168,11,234,153,146,155,64,26,20,8,211,1,16,173,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,120,18,36,26,34,8,4,18,8,26,102,55,53,138,212,163,64,26,20,8,211,1,16,172,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,171,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,6,32,140,216,18,88,164,64,26,20,8,211,1,16,175,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,244,89,80,17,135,54,155,64,26,20,8,211,1,16,176,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,174,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,62,34,144,183,249,143,164,64,26,20,8,211,1,16,178,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,130,206,208,150,224,211,154,64,26,20,8,211,1,16,179,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,177,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,251,245,190,109,254,166,164,64,26,20,8,211,1,16,181,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,140,113,38,69,28,146,154,64,26,20,8,211,1,16,182,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,180,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,54,6,178,197,150,196,164,64,26,20,8,211,1,16,184,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,29,109,30,135,78,34,154,64,26,20,8,211,1,16,185,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,183,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,245,96,88,56,116,206,164,64,26,20,8,211,1,16,187,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,50,58,65,160,158,145,153,64,26,20,8,211,1,16,188,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,186,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,245,96,88,56,116,206,164,64,26,20,8,211,1,16,190,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,191,39,74,105,31,60,153,64,26,20,8,211,1,16,191,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,189,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,68,183,246,236,131,104,164,64,26,20,8,211,1,16,193,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,124,68,255,153,202,157,151,64,26,20,8,211,1,16,194,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,192,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,10,46,123,81,196,61,164,64,26,20,8,211,1,16,196,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,138,245,67,193,183,65,151,64,26,20,8,211,1,16,197,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,195,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,239,178,208,73,255,163,64,26,20,8,211,1,16,199,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,21,92,213,205,95,249,150,64,26,20,8,211,1,16,200,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,198,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,24,223,191,120,177,225,163,64,26,20,8,211,1,16,202,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,22,227,76,138,56,236,150,64,26,20,8,211,1,16,203,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,201,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,161,190,217,200,128,166,163,64,26,20,8,211,1,16,205,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,24,106,196,70,17,223,150,64,26,20,8,211,1,16,206,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,204,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,41,158,243,24,80,107,163,64,26,20,8,211,1,16,208,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,151,166,136,232,164,229,150,64,26,20,8,211,1,16,209,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,207,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,232,166,51,149,87,163,64,26,20,8,211,1,16,211,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,41,10,1,121,18,36,26,34,8,4,18,8,148,152,153,111,243,255,150,64,26,20,8,211,1,16,212,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,20,8,211,1,16,210,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,211,1,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,51,55,102,102,26,19,8,211,1,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,211,1,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,153,61,18,150,61,10,147,61,10,241,59,10,6,112,111,105,110,116,115,18,230,59,18,227,59,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,222,23,104,97,200,106,148,64,26,19,8,213,1,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,102,74,189,232,127,124,150,64,26,19,8,213,1,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,222,23,104,97,200,106,148,64,26,19,8,213,1,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,39,119,207,173,123,110,148,64,26,19,8,213,1,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,25,77,92,107,181,166,148,64,26,19,8,213,1,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,6,38,26,196,243,242,146,64,26,19,8,213,1,16,14,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,106,124,252,229,249,219,148,64,26,19,8,213,1,16,16,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,122,193,133,63,194,129,146,64,26,19,8,213,1,16,17,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,15,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,100,195,236,157,224,43,149,64,26,19,8,213,1,16,19,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,216,98,69,74,57,23,146,64,26,19,8,213,1,16,20,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,18,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,56,207,148,188,49,57,149,64,26,19,8,213,1,16,22,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,216,98,69,74,57,23,146,64,26,19,8,213,1,16,23,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,21,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,78,201,64,45,137,50,149,64,26,19,8,213,1,16,25,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,93,14,202,134,81,216,146,64,26,19,8,213,1,16,26,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,24,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,130,80,117,162,226,148,64,26,19,8,213,1,16,28,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,107,52,80,152,141,67,149,64,26,19,8,213,1,16,29,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,27,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,53,12,46,19,140,148,64,26,19,8,213,1,16,31,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,83,31,142,16,52,108,151,64,26,19,8,213,1,16,32,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,30,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,200,29,188,240,112,113,148,64,26,19,8,213,1,16,34,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,63,244,94,56,232,91,152,64,26,19,8,213,1,16,35,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,33,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,135,47,184,158,106,133,148,64,26,19,8,213,1,16,37,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,238,196,190,189,163,38,152,64,26,19,8,213,1,16,38,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,36,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,136,164,4,75,233,148,64,26,19,8,213,1,16,40,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,83,31,142,16,52,108,151,64,26,19,8,213,1,16,41,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,39,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,227,181,97,146,223,60,150,64,26,19,8,213,1,16,43,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,26,5,176,29,73,14,149,64,26,19,8,213,1,16,44,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,42,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,52,229,1,13,36,114,150,64,26,19,8,213,1,16,46,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,32,190,191,101,98,190,148,64,26,19,8,213,1,16,47,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,45,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,235,85,156,204,120,150,64,26,19,8,213,1,16,49,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,157,225,183,193,85,230,148,64,26,19,8,213,1,16,50,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,48,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,33,113,253,227,77,150,64,26,19,8,213,1,16,53,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,161,199,93,64,217,80,150,64,26,19,8,213,1,16,52,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,51,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,102,146,105,54,236,20,150,64,26,19,8,213,1,16,55,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,251,54,222,77,214,134,151,64,26,19,8,213,1,16,56,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,54,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,205,187,181,33,136,67,150,64,26,19,8,213,1,16,58,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,199,186,249,139,2,251,150,64,26,19,8,213,1,16,59,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,57,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,221,202,144,203,137,151,64,26,19,8,213,1,16,61,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,67,42,139,102,236,23,148,64,26,19,8,213,1,16,62,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,60,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,221,202,144,203,137,151,64,26,19,8,213,1,16,64,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,148,89,43,225,48,77,148,64,26,19,8,213,1,16,65,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,63,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,223,207,187,19,92,210,148,64,26,19,8,213,1,16,68,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,10,192,38,196,128,104,151,64,26,19,8,213,1,16,67,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,66,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,23,50,70,84,179,200,150,64,26,19,8,213,1,16,70,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,212,44,25,28,53,91,150,64,26,19,8,213,1,16,71,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,69,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,148,85,62,176,166,240,150,64,26,19,8,213,1,16,73,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,240,223,212,212,165,4,150,64,26,19,8,213,1,16,74,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,72,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,10,192,38,196,128,104,151,64,26,19,8,213,1,16,76,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,122,117,236,192,203,140,149,64,26,19,8,213,1,16,77,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,75,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,122,117,236,192,203,140,149,64,26,19,8,213,1,16,80,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,223,203,206,226,209,117,151,64,26,19,8,213,1,16,79,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,78,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,223,203,206,226,209,117,151,64,26,19,8,213,1,16,82,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,72,200,132,151,3,234,149,64,26,19,8,213,1,16,83,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,81,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,10,192,38,196,128,104,151,64,26,19,8,213,1,16,85,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,109,3,205,48,153,44,150,64,26,19,8,213,1,16,86,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,84,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,69,245,26,206,109,164,151,64,26,19,8,213,1,16,88,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,50,206,216,38,172,240,149,64,26,19,8,213,1,16,89,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,87,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,34,137,79,205,227,74,152,64,26,19,8,213,1,16,91,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,188,99,240,18,210,120,149,64,26,19,8,213,1,16,92,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,90,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,94,190,67,215,208,134,152,64,26,19,8,213,1,16,94,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,41,70,76,70,135,87,149,64,26,19,8,213,1,16,95,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,93,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,107,171,0,153,41,152,64,26,19,8,213,1,16,97,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,218,229,40,100,78,11,150,64,26,19,8,213,1,16,98,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,96,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,4,7,23,124,103,184,151,64,26,19,8,213,1,16,100,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,205,115,9,212,27,171,150,64,26,19,8,213,1,16,101,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,99,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,4,7,23,124,103,184,151,64,26,19,8,213,1,16,103,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,37,92,185,150,121,144,150,64,26,19,8,213,1,16,104,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,102,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,150,36,187,72,178,217,151,64,26,19,8,213,1,16,106,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,0,33,113,253,227,77,150,64,26,19,8,213,1,16,107,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,105,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,34,137,79,205,227,74,152,64,26,19,8,213,1,16,109,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,56,135,232,110,197,160,149,64,26,19,8,213,1,16,110,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,108,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,72,196,151,102,121,141,152,64,26,19,8,213,1,16,112,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,194,28,0,91,235,40,149,64,26,19,8,213,1,16,113,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,111,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,107,52,80,152,141,67,149,64,26,19,8,213,1,16,116,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,78,125,167,174,146,61,152,64,26,19,8,213,1,16,115,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,114,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,56,131,251,61,59,68,152,64,26,19,8,213,1,16,118,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,238,92,241,186,144,16,146,64,26,19,8,213,1,16,119,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,117,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,122,113,255,143,65,48,152,64,26,19,8,213,1,16,121,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,157,45,81,64,76,219,145,64,26,19,8,213,1,16,122,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,120,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,72,179,164,165,1,152,64,26,19,8,213,1,16,124,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,10,16,173,115,1,186,145,64,26,19,8,213,1,16,125,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,123,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,238,12,107,11,16,191,151,64,26,19,8,213,1,16,127,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,76,254,176,197,7,166,145,64,26,20,8,213,1,16,128,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,126,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,104,97,230,206,247,253,150,64,26,20,8,213,1,16,130,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,76,254,176,197,7,166,145,64,26,20,8,213,1,16,131,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,129,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,176,8,250,104,23,154,150,64,26,20,8,213,1,16,133,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,222,27,85,146,82,199,145,64,26,20,8,213,1,16,134,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,132,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,183,193,9,177,48,74,150,64,26,20,8,213,1,16,136,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,3,87,157,43,232,9,146,64,26,20,8,213,1,16,137,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,135,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,168,128,109,136,242,0,150,64,26,20,8,213,1,16,139,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,187,175,137,145,200,109,146,64,26,20,8,213,1,16,140,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,138,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,87,81,205,13,174,203,149,64,26,20,8,213,1,16,142,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,49,26,114,165,162,229,146,64,26,20,8,213,1,16,143,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,141,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,152,63,209,95,180,183,149,64,26,20,8,213,1,16,145,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,146,138,174,72,37,100,147,64,26,20,8,213,1,16,146,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,144,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,174,57,125,208,11,177,149,64,26,20,8,213,1,16,148,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,8,245,150,92,255,219,147,64,26,20,8,213,1,16,149,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,147,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,170,83,215,81,136,70,148,64,26,20,8,213,1,16,152,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,87,81,205,13,174,203,149,64,26,20,8,213,1,16,151,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,150,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,189,122,25,249,73,250,149,64,26,20,8,213,1,16,154,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,185,148,115,122,198,143,148,64,26,20,8,213,1,16,155,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,153,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,74,223,173,125,123,107,150,64,26,20,8,213,1,16,157,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,179,219,99,50,173,223,148,64,26,20,8,213,1,16,158,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,156,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,30,235,85,156,204,120,150,64,26,20,8,213,1,16,160,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,179,219,99,50,173,223,148,64,26,20,8,213,1,16,161,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,159,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,28,28,217,3,193,143,149,64,26,20,8,213,1,16,163,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,251,130,119,204,204,123,148,64,26,20,8,213,1,16,164,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,162,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,118,168,86,81,213,148,64,26,20,8,213,1,16,166,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,214,71,47,51,55,57,148,64,26,20,8,213,1,16,167,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,165,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,220,31,200,50,40,148,64,26,20,8,213,1,16,169,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,45,48,223,245,148,30,148,64,26,20,8,213,1,16,170,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,168,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,45,48,223,245,148,30,148,64,26,20,8,213,1,16,173,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,51,49,155,139,26,103,147,64,26,20,8,213,1,16,172,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,171,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,7,79,160,126,56,147,64,26,20,8,213,1,16,175,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,23,54,51,133,61,37,148,64,26,20,8,213,1,16,176,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,174,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,234,170,211,51,23,147,64,26,20,8,213,1,16,178,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,148,89,43,225,48,77,148,64,26,20,8,213,1,16,179,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,177,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,102,222,2,181,226,9,147,64,26,20,8,213,1,16,181,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,185,148,115,122,198,143,148,64,26,20,8,213,1,16,182,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,180,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,102,222,2,181,226,9,147,64,26,20,8,213,1,16,184,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,157,225,183,193,85,230,148,64,26,20,8,213,1,16,185,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,183,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,7,79,160,126,56,147,64,26,20,8,213,1,16,187,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,107,52,80,152,141,67,149,64,26,20,8,213,1,16,188,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,186,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,141,232,199,230,131,53,148,64,26,20,8,213,1,16,190,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,28,212,44,182,84,247,149,64,26,20,8,213,1,16,191,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,189,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,118,168,86,81,213,148,64,26,20,8,213,1,16,193,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,153,247,36,18,72,31,150,64,26,20,8,213,1,16,194,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,192,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,115,4,137,198,30,117,149,64,26,20,8,213,1,16,196,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,131,253,120,161,240,37,150,64,26,20,8,213,1,16,197,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,195,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,233,110,113,218,248,236,149,64,26,20,8,213,1,16,199,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,175,241,208,130,159,24,150,64,26,20,8,213,1,16,200,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,198,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,6,218,128,69,253,253,149,64,26,20,8,213,1,16,203,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,183,193,9,177,48,74,150,64,26,20,8,213,1,16,202,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,201,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,137,182,136,233,9,214,149,64,26,20,8,213,1,16,206,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,242,246,253,186,29,134,150,64,26,20,8,213,1,16,205,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,204,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,56,135,232,110,197,160,149,64,26,20,8,213,1,16,209,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,67,38,158,53,98,187,150,64,26,20,8,213,1,16,208,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,213,1,16,207,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,213,1,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,52,55,97,102,57,26,19,8,213,1,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,213,1,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,213,1,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,222,26,18,219,26,10,216,26,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,215,1,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,215,1,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,215,1,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,182,25,10,6,112,111,105,110,116,115,18,171,25,18,168,25,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,78,20,66,108,145,228,141,64,26,19,8,215,1,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,89,200,171,56,122,117,163,64,26,19,8,215,1,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,77,245,226,78,163,140,64,26,19,8,215,1,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,219,24,187,233,155,114,163,64,26,19,8,215,1,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,26,13,4,80,239,138,64,26,19,8,215,1,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,164,216,149,90,176,25,163,64,26,19,8,215,1,16,14,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,210,224,196,80,228,204,138,64,26,19,8,215,1,16,16,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,47,107,226,207,88,11,163,64,26,19,8,215,1,16,17,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,15,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,99,86,51,7,62,204,162,64,26,19,8,215,1,16,20,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,219,34,2,21,107,193,138,64,26,19,8,215,1,16,19,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,18,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,200,158,135,140,93,216,138,64,26,19,8,215,1,16,22,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,108,152,112,203,196,192,162,64,26,19,8,215,1,16,23,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,21,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,10,35,226,25,75,139,64,26,19,8,215,1,16,25,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,131,189,9,182,21,164,162,64,26,19,8,215,1,16,26,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,24,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,167,17,218,38,14,140,64,26,19,8,215,1,16,28,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,145,160,101,220,223,146,162,64,26,19,8,215,1,16,29,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,27,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,74,11,184,30,200,174,140,64,26,19,8,215,1,16,31,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,145,160,101,220,223,146,162,64,26,19,8,215,1,16,32,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,30,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,136,94,40,24,89,158,162,64,26,19,8,215,1,16,35,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,18,127,72,133,159,243,140,64,26,19,8,215,1,16,34,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,33,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,236,118,83,116,132,33,141,64,26,19,8,215,1,16,37,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,127,28,235,83,210,169,162,64,26,19,8,215,1,16,38,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,36,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,168,166,22,213,113,141,64,26,19,8,215,1,16,40,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,99,86,51,7,62,204,162,64,26,19,8,215,1,16,41,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,39,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,134,160,177,5,186,159,141,64,26,19,8,215,1,16,43,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,196,63,108,9,136,241,162,64,26,19,8,215,1,16,44,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,42,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,143,226,238,201,64,148,141,64,26,19,8,215,1,16,46,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,57,173,31,148,223,255,162,64,26,19,8,215,1,16,47,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,45,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,33,136,134,169,142,28,163,64,26,19,8,215,1,16,50,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,246,184,144,56,11,22,141,64,26,19,8,215,1,16,49,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,48,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,158,93,223,4,133,71,140,64,26,19,8,215,1,16,52,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,15,4,12,33,129,51,163,64,26,19,8,215,1,16,53,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,51,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,32,250,56,192,227,166,139,64,26,19,8,215,1,16,55,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,136,18,222,13,28,60,163,64,26,19,8,215,1,16,56,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,54,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,134,168,89,12,98,139,64,26,19,8,215,1,16,58,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,1,33,176,250,182,68,163,64,26,19,8,215,1,16,59,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,57,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,122,47,130,231,81,77,163,64,26,19,8,215,1,16,62,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,116,76,96,166,160,63,139,64,26,19,8,215,1,16,61,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,60,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,39,141,214,54,123,163,64,26,19,8,215,1,16,65,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,163,150,146,123,66,6,139,64,26,19,8,215,1,16,64,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,63,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,154,84,85,183,187,17,139,64,26,19,8,215,1,16,67,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,182,16,198,216,128,160,163,64,26,19,8,215,1,16,68,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,66,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,70,2,46,209,254,120,139,64,26,19,8,215,1,16,70,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,28,155,29,61,14,192,163,64,26,19,8,215,1,16,71,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,69,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,214,233,78,158,173,2,140,64,26,19,8,215,1,16,73,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,145,8,209,199,101,206,163,64,26,19,8,215,1,16,74,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,72,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,145,8,209,199,101,206,163,64,26,19,8,215,1,16,77,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,130,151,39,184,240,105,140,64,26,19,8,215,1,16,76,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,75,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,46,69,0,210,51,209,140,64,26,19,8,215,1,16,79,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,149,169,239,41,169,200,163,64,26,19,8,215,1,16,80,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,78,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,64,201,122,90,65,186,140,64,26,19,8,215,1,16,82,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,52,192,182,39,95,163,163,64,26,19,8,215,1,16,83,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,81,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,102,209,111,107,92,140,140,64,26,19,8,215,1,16,85,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,201,148,64,97,142,137,163,64,26,19,8,215,1,16,86,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,84,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,35,151,81,25,37,140,64,26,19,8,215,1,16,88,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,84,39,141,214,54,123,163,64,26,19,8,215,1,16,89,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,87,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,35,151,81,25,37,140,64,26,19,8,215,1,16,91,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,89,200,171,56,122,117,163,64,26,19,8,215,1,16,92,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,90,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,215,1,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,221,13,18,218,13,10,215,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,215,1,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,215,1,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,215,1,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,142,64,26,19,8,215,1,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,252,151,64,26,19,8,215,1,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,141,64,26,19,8,215,1,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,252,151,64,26,19,8,215,1,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,140,64,26,19,8,215,1,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,151,64,26,19,8,215,1,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,129,64,26,19,8,215,1,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,188,151,64,26,19,8,215,1,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,111,64,26,19,8,215,1,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,151,64,26,19,8,215,1,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,44,192,26,19,8,215,1,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,44,151,64,26,19,8,215,1,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,192,26,19,8,215,1,16,25,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,151,64,26,19,8,215,1,16,26,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,24,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,151,64,26,19,8,215,1,16,29,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,90,64,26,19,8,215,1,16,28,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,27,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,113,64,26,19,8,215,1,16,31,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,148,151,64,26,19,8,215,1,16,32,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,30,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,128,64,26,19,8,215,1,16,34,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,151,64,26,19,8,215,1,16,35,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,33,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,134,64,26,19,8,215,1,16,37,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,164,151,64,26,19,8,215,1,16,38,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,36,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,145,64,26,19,8,215,1,16,40,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,151,64,26,19,8,215,1,16,41,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,39,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,147,64,26,19,8,215,1,16,43,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,150,64,26,19,8,215,1,16,44,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,42,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,148,64,26,19,8,215,1,16,46,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,150,64,26,19,8,215,1,16,47,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,45,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,215,1,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,215,1,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,215,1,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,215,1,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,83,9,191,221,21,151,64,26,19,8,215,1,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,199,199,173,27,234,224,145,64,26,19,8,215,1,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,215,1,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,83,9,191,221,21,151,64,26,19,8,215,1,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,51,142,219,255,127,115,146,64,26,19,8,215,1,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,215,1,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,247,15,161,6,35,135,151,64,26,19,8,215,1,16,13,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,102,86,226,171,82,179,147,64,26,19,8,215,1,16,14,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,215,1,16,12,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,215,1,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,215,1,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,246,5,18,243,5,10,240,5,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,212,245,34,124,108,151,64,26,19,8,218,1,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,102,86,226,171,82,179,147,64,26,19,8,218,1,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,218,1,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,212,245,34,124,108,151,64,26,19,8,218,1,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,150,96,120,72,163,212,147,64,26,19,8,218,1,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,218,1,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,93,159,91,46,55,151,64,26,19,8,218,1,16,13,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,98,59,210,101,218,169,148,64,26,19,8,218,1,16,14,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,218,1,16,12,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,192,201,233,218,41,151,64,26,19,8,218,1,16,16,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,200,40,127,244,117,20,149,64,26,19,8,218,1,16,17,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,218,1,16,15,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,69,188,190,201,120,0,149,64,26,19,8,218,1,16,20,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,120,18,35,26,33,8,4,18,8,62,192,201,233,218,41,151,64,26,19,8,218,1,16,19,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,218,1,16,18,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,218,1,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,218,1,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,218,1,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,218,1,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,218,1,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,219,1,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,219,1,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,219,1,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,20,143,180,162,132,48,151,64,26,19,8,219,1,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,21,178,40,45,40,223,148,64,26,19,8,219,1,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,219,1,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,21,178,40,45,40,223,148,64,26,19,8,219,1,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,120,18,35,26,33,8,4,18,8,154,185,229,220,3,99,152,64,26,19,8,219,1,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,219,1,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,219,1,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,219,1,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,219,1,16,2,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,102,98,49,97,99,26,19,8,219,1,16,3,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,219,1,16,4,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,166,121,116,185,115,133,159,64,26,19,8,219,1,16,6,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,70,136,52,160,11,57,145,64,26,19,8,219,1,16,7,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,64,23,33,245,87,49,100,64,26,19,8,219,1,16,8,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,160,61,197,158,79,187,87,64,26,19,8,219,1,16,9,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,219,1,16,5,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,70,136,52,160,11,57,145,64,26,19,8,219,1,16,12,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,166,121,116,185,115,133,159,64,26,19,8,219,1,16,13,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,219,1,16,11,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,219,1,16,10,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,219,1,16,1,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,102,98,49,97,99,26,19,8,221,1,16,3,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,221,1,16,4,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,166,121,116,185,115,133,159,64,26,19,8,221,1,16,6,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,70,136,52,160,11,57,145,64,26,19,8,221,1,16,7,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,64,23,33,245,87,49,100,64,26,19,8,221,1,16,8,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,160,61,197,158,79,187,87,64,26,19,8,221,1,16,9,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,221,1,16,5,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,70,136,52,160,11,57,145,64,26,19,8,221,1,16,12,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,166,121,116,185,115,133,159,64,26,19,8,221,1,16,13,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,221,1,16,11,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,221,1,16,10,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,221,1,16,2,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,221,1,16,1,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,222,1,16,2,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,102,98,49,97,99,26,19,8,222,1,16,3,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,222,1,16,4,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,166,121,116,185,115,133,159,64,26,19,8,222,1,16,6,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,70,136,52,160,11,57,145,64,26,19,8,222,1,16,7,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,64,23,33,245,87,49,100,64,26,19,8,222,1,16,8,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,160,61,197,158,79,187,87,64,26,19,8,222,1,16,9,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,222,1,16,5,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,166,121,116,185,115,133,159,64,26,19,8,222,1,16,13,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,70,136,52,160,11,57,145,64,26,19,8,222,1,16,12,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,222,1,16,11,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,222,1,16,10,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,222,1,16,1,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,165,11,18,162,11,10,159,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,223,1,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,223,1,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,223,1,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,227,39,127,207,61,36,153,64,26,19,8,223,1,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,218,82,48,28,217,88,146,64,26,19,8,223,1,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,1,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,12,89,148,22,148,29,153,64,26,19,8,223,1,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,218,82,48,28,217,88,146,64,26,19,8,223,1,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,1,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,218,82,48,28,217,88,146,64,26,19,8,223,1,16,14,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,120,18,35,26,33,8,4,18,8,108,109,192,79,53,96,153,64,26,19,8,223,1,16,13,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,1,16,12,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,128,23,133,56,50,62,146,64,26,19,8,223,1,16,17,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,120,18,35,26,33,8,4,18,8,92,160,174,94,200,6,154,64,26,19,8,223,1,16,16,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,1,16,15,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,56,72,26,109,108,53,154,64,26,19,8,223,1,16,19,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,128,23,133,56,50,62,146,64,26,19,8,223,1,16,20,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,1,16,18,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,98,121,47,180,194,46,154,64,26,19,8,223,1,16,22,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,99,152,113,156,208,148,146,64,26,19,8,223,1,16,23,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,1,16,21,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,217,51,238,51,203,242,153,64,26,19,8,223,1,16,25,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,12,27,55,200,171,152,147,64,26,19,8,223,1,16,26,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,1,16,24,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,228,22,23,131,149,153,64,26,19,8,223,1,16,28,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,223,206,17,59,221,149,148,64,26,19,8,223,1,16,29,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,1,16,27,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,223,206,17,59,221,149,148,64,26,19,8,223,1,16,32,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,120,18,35,26,33,8,4,18,8,73,21,44,94,217,142,153,64,26,19,8,223,1,16,31,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,1,16,30,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,21,44,94,217,142,153,64,26,19,8,223,1,16,34,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,139,108,231,172,48,163,148,64,26,19,8,223,1,16,35,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,1,16,33,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,156,119,86,236,133,129,153,64,26,19,8,223,1,16,37,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,139,108,231,172,48,163,148,64,26,19,8,223,1,16,38,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,1,16,36,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,1,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,1,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,34,19,8,225,1,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,223,1,16,2,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,102,98,49,97,99,26,19,8,223,1,16,3,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,223,1,16,4,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,166,121,116,185,115,133,159,64,26,19,8,223,1,16,6,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,70,136,52,160,11,57,145,64,26,19,8,223,1,16,7,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,64,23,33,245,87,49,100,64,26,19,8,223,1,16,8,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,160,61,197,158,79,187,87,64,26,19,8,223,1,16,9,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,223,1,16,5,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,70,136,52,160,11,57,145,64,26,19,8,223,1,16,12,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,166,121,116,185,115,133,159,64,26,19,8,223,1,16,13,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,223,1,16,11,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,223,1,16,10,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,223,1,16,1,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,205,27,18,202,27,10,199,27,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,225,1,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,225,1,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,165,26,10,6,112,111,105,110,116,115,18,154,26,18,151,26,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,145,64,26,19,8,225,1,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,147,64,26,19,8,225,1,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,146,64,26,19,8,225,1,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,147,64,26,19,8,225,1,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,146,64,26,19,8,225,1,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,147,64,26,19,8,225,1,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,146,64,26,19,8,225,1,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,146,64,26,19,8,225,1,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,146,64,26,19,8,225,1,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,212,146,64,26,19,8,225,1,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,147,64,26,19,8,225,1,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,76,146,64,26,19,8,225,1,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,147,64,26,19,8,225,1,16,25,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,36,146,64,26,19,8,225,1,16,26,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,24,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,148,64,26,19,8,225,1,16,28,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,146,64,26,19,8,225,1,16,29,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,27,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,148,64,26,19,8,225,1,16,31,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,146,64,26,19,8,225,1,16,32,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,30,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,148,64,26,19,8,225,1,16,34,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,236,146,64,26,19,8,225,1,16,35,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,33,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,148,64,26,19,8,225,1,16,37,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,147,64,26,19,8,225,1,16,38,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,36,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,148,64,26,19,8,225,1,16,40,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,140,147,64,26,19,8,225,1,16,41,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,39,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,148,64,26,19,8,225,1,16,43,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,147,64,26,19,8,225,1,16,44,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,42,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,148,64,26,19,8,225,1,16,46,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,4,148,64,26,19,8,225,1,16,47,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,45,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,148,64,26,19,8,225,1,16,49,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,68,148,64,26,19,8,225,1,16,50,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,48,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,147,64,26,19,8,225,1,16,52,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,148,64,26,19,8,225,1,16,53,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,51,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,148,64,26,19,8,225,1,16,56,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,146,64,26,19,8,225,1,16,55,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,54,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,146,64,26,19,8,225,1,16,58,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,100,148,64,26,19,8,225,1,16,59,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,57,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,146,64,26,19,8,225,1,16,61,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,148,64,26,19,8,225,1,16,62,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,60,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,146,64,26,19,8,225,1,16,64,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,188,148,64,26,19,8,225,1,16,65,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,63,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,146,64,26,19,8,225,1,16,67,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,149,64,26,19,8,225,1,16,68,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,66,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,146,64,26,19,8,225,1,16,70,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,149,64,26,19,8,225,1,16,71,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,69,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,146,64,26,19,8,225,1,16,73,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,196,149,64,26,19,8,225,1,16,74,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,72,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,147,64,26,19,8,225,1,16,76,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,4,150,64,26,19,8,225,1,16,77,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,75,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,148,64,26,19,8,225,1,16,79,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,68,150,64,26,19,8,225,1,16,80,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,78,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,149,64,26,19,8,225,1,16,82,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,150,64,26,19,8,225,1,16,83,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,81,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,149,64,26,19,8,225,1,16,85,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,150,64,26,19,8,225,1,16,86,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,84,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,150,64,26,19,8,225,1,16,89,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,149,64,26,19,8,225,1,16,88,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,87,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,149,64,26,19,8,225,1,16,91,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,20,151,64,26,19,8,225,1,16,92,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,90,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,149,64,26,19,8,225,1,16,94,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,36,151,64,26,19,8,225,1,16,95,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,93,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,225,1,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,225,1,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,225,1,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,225,1,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,225,1,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,223,12,111,137,197,26,154,64,26,19,8,225,1,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,12,27,55,200,171,152,147,64,26,19,8,225,1,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,225,1,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,82,176,9,189,86,154,64,26,19,8,225,1,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,12,27,55,200,171,152,147,64,26,19,8,225,1,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,225,1,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,123,8,124,255,219,154,64,26,19,8,225,1,16,13,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,60,37,205,100,252,185,147,64,26,19,8,225,1,16,14,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,225,1,16,12,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,225,1,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,225,1,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,178,9,18,175,9,10,172,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,228,1,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,228,1,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,228,1,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,149,64,26,19,8,228,1,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,152,64,26,19,8,228,1,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,228,1,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,149,64,26,19,8,228,1,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,152,64,26,19,8,228,1,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,228,1,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,152,64,26,19,8,228,1,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,149,64,26,19,8,228,1,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,228,1,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,149,64,26,19,8,228,1,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,152,64,26,19,8,228,1,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,228,1,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,149,64,26,19,8,228,1,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,152,64,26,19,8,228,1,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,228,1,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,148,64,26,19,8,228,1,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,180,152,64,26,19,8,228,1,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,228,1,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,146,64,26,19,8,228,1,16,25,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,152,64,26,19,8,228,1,16,26,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,228,1,16,24,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,146,64,26,19,8,228,1,16,28,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,196,152,64,26,19,8,228,1,16,29,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,228,1,16,27,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,146,64,26,19,8,228,1,16,31,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,152,64,26,19,8,228,1,16,32,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,228,1,16,30,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,228,1,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,228,1,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,239,25,18,236,25,10,233,25,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,228,1,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,228,1,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,228,1,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,199,24,10,6,112,111,105,110,116,115,18,188,24,18,185,24,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,149,64,26,19,8,228,1,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,136,64,26,19,8,228,1,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,149,64,26,19,8,228,1,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,136,64,26,19,8,228,1,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,149,64,26,19,8,228,1,16,13,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,136,64,26,19,8,228,1,16,14,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,12,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,149,64,26,19,8,228,1,16,16,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,135,64,26,19,8,228,1,16,17,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,15,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,149,64,26,19,8,228,1,16,19,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,135,64,26,19,8,228,1,16,20,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,18,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,149,64,26,19,8,228,1,16,22,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,135,64,26,19,8,228,1,16,23,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,21,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,149,64,26,19,8,228,1,16,25,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,135,64,26,19,8,228,1,16,26,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,24,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,150,64,26,19,8,228,1,16,28,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,135,64,26,19,8,228,1,16,29,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,27,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,150,64,26,19,8,228,1,16,31,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,136,64,26,19,8,228,1,16,32,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,30,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,150,64,26,19,8,228,1,16,34,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,137,64,26,19,8,228,1,16,35,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,33,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,150,64,26,19,8,228,1,16,37,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,136,64,26,19,8,228,1,16,38,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,36,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,150,64,26,19,8,228,1,16,40,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,136,64,26,19,8,228,1,16,41,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,39,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,137,64,26,19,8,228,1,16,44,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,150,64,26,19,8,228,1,16,43,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,42,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,150,64,26,19,8,228,1,16,46,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,137,64,26,19,8,228,1,16,47,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,45,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,150,64,26,19,8,228,1,16,49,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,138,64,26,19,8,228,1,16,50,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,48,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,150,64,26,19,8,228,1,16,52,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,138,64,26,19,8,228,1,16,53,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,51,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,150,64,26,19,8,228,1,16,55,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,138,64,26,19,8,228,1,16,56,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,54,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,149,64,26,19,8,228,1,16,58,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,139,64,26,19,8,228,1,16,59,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,57,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,149,64,26,19,8,228,1,16,61,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,139,64,26,19,8,228,1,16,62,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,60,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,137,64,26,19,8,228,1,16,65,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,149,64,26,19,8,228,1,16,64,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,63,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,149,64,26,19,8,228,1,16,67,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,136,64,26,19,8,228,1,16,68,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,66,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,149,64,26,19,8,228,1,16,70,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,136,64,26,19,8,228,1,16,71,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,69,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,149,64,26,19,8,228,1,16,73,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,136,64,26,19,8,228,1,16,74,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,72,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,149,64,26,19,8,228,1,16,76,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,136,64,26,19,8,228,1,16,77,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,75,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,149,64,26,19,8,228,1,16,79,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,136,64,26,19,8,228,1,16,80,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,78,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,149,64,26,19,8,228,1,16,82,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,136,64,26,19,8,228,1,16,83,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,81,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,149,64,26,19,8,228,1,16,85,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,135,64,26,19,8,228,1,16,86,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,84,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,135,64,26,19,8,228,1,16,89,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,149,64,26,19,8,228,1,16,88,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,87,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,228,1,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,246,5,18,243,5,10,240,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,228,1,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,69,250,27,24,97,133,154,64,26,19,8,228,1,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,29,232,72,185,24,242,146,64,26,19,8,228,1,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,228,1,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,69,250,27,24,97,133,154,64,26,19,8,228,1,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,70,25,94,0,111,235,146,64,26,19,8,228,1,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,228,1,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,172,29,195,85,213,154,64,26,19,8,228,1,16,13,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,112,74,115,71,197,228,146,64,26,19,8,228,1,16,14,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,228,1,16,12,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,47,84,137,209,249,3,155,64,26,19,8,228,1,16,16,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,237,221,178,28,200,208,146,64,26,19,8,228,1,16,17,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,228,1,16,15,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,237,221,178,28,200,208,146,64,26,19,8,228,1,16,20,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,120,18,35,26,33,8,4,18,8,12,252,244,223,157,50,155,64,26,19,8,228,1,16,19,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,228,1,16,18,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,228,1,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,228,1,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,228,1,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,228,1,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,135,5,18,132,5,10,129,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,230,1,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,146,64,26,19,8,230,1,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,84,153,64,26,19,8,230,1,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,230,1,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,146,64,26,19,8,230,1,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,153,64,26,19,8,230,1,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,230,1,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,147,64,26,19,8,230,1,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,132,153,64,26,19,8,230,1,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,230,1,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,140,153,64,26,19,8,230,1,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,148,64,26,19,8,230,1,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,230,1,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,230,1,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,230,1,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,230,1,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,230,1,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,204,14,18,201,14,10,198,14,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,231,1,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,231,1,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,231,1,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,26,182,168,75,64,31,154,64,26,19,8,231,1,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,217,153,228,65,42,60,148,64,26,19,8,231,1,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,26,182,168,75,64,31,154,64,26,19,8,231,1,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,17,38,84,219,82,247,147,64,26,19,8,231,1,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,120,123,193,15,144,147,64,26,19,8,231,1,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,180,223,6,221,117,157,154,64,26,19,8,231,1,16,14,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,215,92,95,204,149,147,64,26,19,8,231,1,16,16,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,105,207,28,187,63,249,154,64,26,19,8,231,1,16,17,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,15,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,9,176,1,29,230,147,64,26,19,8,231,1,16,19,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,54,228,203,131,90,56,155,64,26,19,8,231,1,16,20,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,18,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,208,87,167,125,163,71,148,64,26,19,8,231,1,16,22,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,30,191,50,153,9,85,155,64,26,19,8,231,1,16,23,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,21,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,138,232,219,189,176,157,148,64,26,19,8,231,1,16,25,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,30,191,50,153,9,85,155,64,26,19,8,231,1,16,26,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,24,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,253,138,134,203,220,148,64,26,19,8,231,1,16,28,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,49,67,173,33,23,62,155,64,26,19,8,231,1,16,29,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,27,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,92,108,36,136,226,148,64,26,19,8,231,1,16,31,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,77,9,101,110,171,27,155,64,26,19,8,231,1,16,32,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,30,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,108,86,70,190,134,148,64,26,19,8,231,1,16,34,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,203,4,160,199,198,128,154,64,26,19,8,231,1,16,35,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,33,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,79,178,108,136,117,148,64,26,19,8,231,1,16,37,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,222,136,26,80,212,105,154,64,26,19,8,231,1,16,38,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,36,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,116,75,87,217,88,148,64,26,19,8,231,1,16,40,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,231,202,87,20,91,94,154,64,26,19,8,231,1,16,41,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,39,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,3,145,15,97,239,59,154,64,26,19,8,231,1,16,44,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,222,58,3,164,109,54,148,64,26,19,8,231,1,16,43,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,42,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,227,219,33,6,177,48,148,64,26,19,8,231,1,16,46,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,17,116,107,135,185,42,154,64,26,19,8,231,1,16,47,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,45,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,236,29,95,202,55,37,148,64,26,19,8,231,1,16,49,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,17,116,107,135,185,42,154,64,26,19,8,231,1,16,50,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,48,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,1,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,230,1,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,53,199,251,7,160,154,64,26,19,8,230,1,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,172,6,11,143,10,86,147,64,26,19,8,230,1,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,230,1,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,172,6,11,143,10,86,147,64,26,19,8,230,1,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,120,18,35,26,33,8,4,18,8,18,213,117,53,152,90,155,64,26,19,8,230,1,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,230,1,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,230,1,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,230,1,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,230,1,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,230,1,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,232,1,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,232,1,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,232,1,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,149,64,26,19,8,232,1,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,153,64,26,19,8,232,1,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,232,1,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,149,64,26,19,8,232,1,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,153,64,26,19,8,232,1,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,232,1,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,149,64,26,19,8,232,1,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,12,154,64,26,19,8,232,1,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,232,1,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,149,64,26,19,8,232,1,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,68,154,64,26,19,8,232,1,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,232,1,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,148,64,26,19,8,232,1,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,154,64,26,19,8,232,1,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,232,1,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,147,64,26,19,8,232,1,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,154,64,26,19,8,232,1,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,232,1,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,232,1,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,232,1,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,234,1,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,234,1,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,234,1,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,91,215,231,217,126,147,64,26,19,8,234,1,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,114,121,197,106,76,41,156,64,26,19,8,234,1,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,234,1,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,216,241,155,122,249,148,64,26,19,8,234,1,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,118,26,228,204,143,35,156,64,26,19,8,234,1,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,234,1,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,234,1,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,234,1,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,234,1,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,234,1,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,234,1,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,154,64,26,19,8,234,1,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,147,64,26,19,8,234,1,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,234,1,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,146,64,26,19,8,234,1,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,156,154,64,26,19,8,234,1,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,234,1,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,146,64,26,19,8,234,1,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,164,154,64,26,19,8,234,1,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,234,1,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,146,64,26,19,8,234,1,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,154,64,26,19,8,234,1,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,234,1,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,234,1,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,234,1,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,246,5,18,243,5,10,240,5,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,185,153,202,81,241,63,155,64,26,19,8,234,1,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,51,142,219,255,127,115,146,64,26,19,8,234,1,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,234,1,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,185,153,202,81,241,63,155,64,26,19,8,234,1,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,237,221,178,28,200,208,146,64,26,19,8,234,1,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,234,1,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,160,84,9,228,21,6,147,64,26,19,8,234,1,16,14,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,120,18,35,26,33,8,4,18,8,101,55,160,195,68,77,155,64,26,19,8,234,1,16,13,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,234,1,16,12,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,239,124,225,67,60,137,155,64,26,19,8,234,1,16,16,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,60,37,205,100,252,185,147,64,26,19,8,234,1,16,17,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,234,1,16,15,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,46,227,238,48,217,155,64,26,19,8,234,1,16,19,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,92,98,81,16,224,129,148,64,26,19,8,234,1,16,20,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,234,1,16,18,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,234,1,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,234,1,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,234,1,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,234,1,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,234,1,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,237,1,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,237,1,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,237,1,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,145,64,26,19,8,237,1,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,153,64,26,19,8,237,1,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,237,1,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,145,64,26,19,8,237,1,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,108,153,64,26,19,8,237,1,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,237,1,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,153,64,26,19,8,237,1,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,145,64,26,19,8,237,1,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,237,1,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,237,1,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,237,1,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,238,1,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,238,1,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,238,1,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,189,211,44,245,149,94,148,64,26,19,8,238,1,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,114,121,197,106,76,41,156,64,26,19,8,238,1,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,238,1,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,189,211,44,245,149,94,148,64,26,19,8,238,1,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,127,196,140,124,156,83,157,64,26,19,8,238,1,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,238,1,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,238,1,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,238,1,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,238,1,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,238,1,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,238,1,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,145,64,26,19,8,238,1,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,152,64,26,19,8,238,1,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,238,1,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,146,64,26,19,8,238,1,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,180,152,64,26,19,8,238,1,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,238,1,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,238,1,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,238,1,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,152,4,18,149,4,10,146,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,239,1,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,132,152,64,26,19,8,239,1,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,146,64,26,19,8,239,1,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,239,1,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,146,64,26,19,8,239,1,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,152,64,26,19,8,239,1,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,239,1,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,146,64,26,19,8,239,1,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,196,151,64,26,19,8,239,1,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,239,1,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,239,1,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,239,1,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,239,1,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,239,1,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,237,1,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,237,1,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,237,1,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,151,64,26,19,8,237,1,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,70,64,26,19,8,237,1,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,237,1,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,151,64,26,19,8,237,1,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,70,64,26,19,8,237,1,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,237,1,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,237,1,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,237,1,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,204,14,18,201,14,10,198,14,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,138,41,112,6,5,157,64,26,19,8,242,1,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,147,162,7,57,33,182,146,64,26,19,8,242,1,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,196,251,139,112,114,156,64,26,19,8,242,1,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,147,162,7,57,33,182,146,64,26,19,8,242,1,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,139,77,165,196,34,61,156,64,26,19,8,242,1,16,13,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,99,152,113,156,208,148,146,64,26,19,8,242,1,16,14,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,12,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,222,175,207,82,207,47,156,64,26,19,8,242,1,16,16,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,51,142,219,255,127,115,146,64,26,19,8,242,1,16,17,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,15,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,222,175,207,82,207,47,156,64,26,19,8,242,1,16,19,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,68,91,237,240,236,204,145,64,26,19,8,242,1,16,20,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,18,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,139,77,165,196,34,61,156,64,26,19,8,242,1,16,22,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,103,179,129,226,72,158,145,64,26,19,8,242,1,16,23,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,21,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,245,16,211,198,107,156,64,26,19,8,242,1,16,25,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,138,11,22,212,164,111,145,64,26,19,8,242,1,16,26,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,24,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,75,118,253,54,101,194,156,64,26,19,8,242,1,16,28,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,174,99,170,197,0,65,145,64,26,19,8,242,1,16,29,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,27,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,40,255,225,89,18,157,64,26,19,8,242,1,16,31,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,1,198,212,83,173,51,145,64,26,19,8,242,1,16,32,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,30,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,231,70,193,183,75,118,157,64,26,19,8,242,1,16,34,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,215,148,191,12,87,58,145,64,26,19,8,242,1,16,35,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,33,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,140,2,56,67,178,157,64,26,19,8,242,1,16,37,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,222,109,64,98,81,98,145,64,26,19,8,242,1,16,38,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,36,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,3,89,255,144,231,157,64,26,19,8,242,1,16,40,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,151,189,23,127,153,191,145,64,26,19,8,242,1,16,41,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,39,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,3,89,255,144,231,157,64,26,19,8,242,1,16,43,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,32,3,89,255,144,251,145,64,26,19,8,242,1,16,44,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,42,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,196,238,44,198,239,164,157,64,26,19,8,242,1,16,46,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,51,142,219,255,127,115,146,64,26,19,8,242,1,16,47,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,45,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,60,43,27,251,84,157,64,26,19,8,242,1,16,49,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,147,162,7,57,33,182,146,64,26,19,8,242,1,16,50,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,48,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,242,1,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,242,1,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,242,1,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,242,1,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,241,1,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,241,1,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,241,1,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,151,64,26,19,8,241,1,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,147,64,26,19,8,241,1,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,241,1,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,147,64,26,19,8,241,1,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,151,64,26,19,8,241,1,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,241,1,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,241,1,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,241,1,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,238,1,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,238,1,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,238,1,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,151,64,26,19,8,238,1,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,70,64,26,19,8,238,1,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,238,1,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,151,64,26,19,8,238,1,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,70,64,26,19,8,238,1,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,238,1,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,238,1,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,238,1,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,195,8,18,192,8,10,189,8,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,154,64,26,19,8,245,1,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,131,64,26,19,8,245,1,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,245,1,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,154,64,26,19,8,245,1,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,130,64,26,19,8,245,1,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,245,1,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,154,64,26,19,8,245,1,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,129,64,26,19,8,245,1,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,245,1,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,155,64,26,19,8,245,1,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,130,64,26,19,8,245,1,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,245,1,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,155,64,26,19,8,245,1,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,130,64,26,19,8,245,1,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,245,1,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,154,64,26,19,8,245,1,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,130,64,26,19,8,245,1,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,245,1,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,154,64,26,19,8,245,1,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,130,64,26,19,8,245,1,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,245,1,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,155,64,26,19,8,245,1,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,130,64,26,19,8,245,1,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,245,1,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,245,1,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,245,1,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,101,99,102,50,26,19,8,245,1,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,245,1,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,245,1,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,170,16,18,167,16,10,164,16,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,246,1,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,246,1,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,246,1,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,130,15,10,6,112,111,105,110,116,115,18,247,14,18,244,14,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,142,241,101,11,122,211,149,64,26,19,8,246,1,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,217,231,251,237,144,111,154,64,26,19,8,246,1,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,142,241,101,11,122,211,149,64,26,19,8,246,1,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,222,136,26,80,212,105,154,64,26,19,8,246,1,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,142,241,101,11,122,211,149,64,26,19,8,246,1,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,152,25,79,144,225,191,154,64,26,19,8,246,1,16,14,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,95,167,51,54,216,12,150,64,26,19,8,246,1,16,16,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,110,112,59,29,131,243,154,64,26,19,8,246,1,16,17,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,15,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,110,112,59,29,131,243,154,64,26,19,8,246,1,16,20,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,7,180,237,237,215,121,150,64,26,19,8,246,1,16,19,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,18,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,134,95,242,107,196,150,64,26,19,8,246,1,16,22,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,133,149,212,7,212,214,154,64,26,19,8,246,1,16,23,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,21,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,60,45,29,202,253,150,64,26,19,8,246,1,16,25,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,175,62,232,122,50,163,154,64,26,19,8,246,1,16,26,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,24,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,146,250,239,88,67,9,151,64,26,19,8,246,1,16,28,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,208,165,190,41,10,123,154,64,26,19,8,246,1,16,29,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,27,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,222,136,26,80,212,105,154,64,26,19,8,246,1,16,32,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,146,250,239,88,67,9,151,64,26,19,8,246,1,16,31,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,30,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,216,105,187,24,54,179,150,64,26,19,8,246,1,16,34,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,64,190,157,92,91,241,153,64,26,19,8,246,1,16,35,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,33,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,208,145,199,13,139,150,64,26,19,8,246,1,16,37,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,78,161,249,130,37,224,153,64,26,19,8,246,1,16,38,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,36,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,49,93,1,97,54,70,150,64,26,19,8,246,1,16,40,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,87,227,54,71,172,212,153,64,26,19,8,246,1,16,41,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,39,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,109,138,143,92,162,251,149,64,26,19,8,246,1,16,43,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,87,227,54,71,172,212,153,64,26,19,8,246,1,16,44,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,42,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,156,212,193,49,68,194,149,64,26,19,8,246,1,16,46,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,59,29,127,250,23,247,153,64,26,19,8,246,1,16,47,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,45,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,17,116,107,135,185,42,154,64,26,19,8,246,1,16,50,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,184,154,121,126,216,159,149,64,26,19,8,246,1,16,49,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,48,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,193,220,182,66,95,148,149,64,26,19,8,246,1,16,52,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,222,136,26,80,212,105,154,64,26,19,8,246,1,16,53,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,51,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,183,29,88,14,177,149,64,26,19,8,246,1,16,55,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,194,194,98,3,64,140,154,64,26,19,8,246,1,16,56,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,54,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,246,1,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,246,1,16,2,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,102,98,49,97,99,26,19,8,246,1,16,3,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,246,1,16,4,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,132,226,209,122,202,23,131,64,26,19,8,246,1,16,7,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,123,246,225,73,125,102,143,64,26,19,8,246,1,16,8,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,246,1,16,6,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,45,200,2,227,215,75,143,64,26,19,8,246,1,16,11,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,28,236,58,101,72,250,131,64,26,19,8,246,1,16,10,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,246,1,16,9,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,28,236,58,101,72,250,131,64,26,19,8,246,1,16,13,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,6,49,147,47,133,62,143,64,26,19,8,246,1,16,14,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,246,1,16,12,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,241,1,118,206,40,154,132,64,26,19,8,246,1,16,16,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,6,49,147,47,133,62,143,64,26,19,8,246,1,16,17,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,246,1,16,15,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,246,1,16,5,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,246,1,16,1,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,251,54,18,248,54,10,245,54,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,246,1,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,52,55,97,102,57,26,19,8,246,1,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,246,1,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,211,53,10,6,112,111,105,110,116,115,18,200,53,18,197,53,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,71,16,49,229,111,130,149,64,26,19,8,246,1,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,251,206,16,75,195,112,145,64,26,19,8,246,1,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,233,110,113,218,248,236,149,64,26,19,8,246,1,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,110,106,124,198,145,255,144,64,26,19,8,246,1,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,95,217,89,238,210,100,150,64,26,19,8,246,1,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,161,23,228,239,89,162,144,64,26,19,8,246,1,16,14,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,1,56,154,227,91,207,150,64,26,19,8,246,1,16,16,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,102,226,239,229,108,102,144,64,26,19,8,246,1,16,17,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,15,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,221,202,144,203,137,151,64,26,19,8,246,1,16,19,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,189,202,159,168,202,75,144,64,26,19,8,246,1,16,20,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,18,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,12,107,11,16,191,151,64,26,19,8,246,1,16,22,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,123,220,155,86,196,95,144,64,26,19,8,246,1,16,23,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,21,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,172,30,103,185,9,211,151,64,26,19,8,246,1,16,25,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,58,238,151,4,190,115,144,64,26,19,8,246,1,16,26,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,24,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,128,42,15,216,90,224,151,64,26,19,8,246,1,16,28,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,183,17,144,96,177,155,144,64,26,19,8,246,1,16,29,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,27,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,150,36,187,72,178,217,151,64,26,19,8,246,1,16,31,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,51,53,136,188,164,195,144,64,26,19,8,246,1,16,32,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,30,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,252,81,74,198,140,150,64,26,19,8,246,1,16,34,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,244,21,1,3,170,192,145,64,26,19,8,246,1,16,35,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,33,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,233,110,113,218,248,236,149,64,26,19,8,246,1,16,37,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,62,140,145,53,213,69,146,64,26,19,8,246,1,16,38,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,36,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,130,69,37,239,92,190,149,64,26,19,8,246,1,16,40,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,143,187,49,176,25,123,146,64,26,19,8,246,1,16,41,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,39,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,240,39,129,34,18,157,149,64,26,19,8,246,1,16,43,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,246,228,125,155,181,169,146,64,26,19,8,246,1,16,44,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,42,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,28,28,217,3,193,143,149,64,26,19,8,246,1,16,46,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,93,14,202,134,81,216,146,64,26,19,8,246,1,16,47,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,45,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,71,16,49,229,111,130,149,64,26,19,8,246,1,16,49,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,87,85,186,62,56,40,147,64,26,19,8,246,1,16,50,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,48,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,71,16,49,229,111,130,149,64,26,19,8,246,1,16,52,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,255,108,10,124,218,66,147,64,26,19,8,246,1,16,53,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,51,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,28,28,217,3,193,143,149,64,26,19,8,246,1,16,55,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,211,120,178,154,43,80,147,64,26,19,8,246,1,16,56,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,54,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,190,126,6,42,212,86,147,64,26,19,8,246,1,16,59,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,211,116,197,105,161,243,149,64,26,19,8,246,1,16,58,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,57,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,205,187,181,33,136,67,150,64,26,19,8,246,1,16,61,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,21,103,182,236,49,60,147,64,26,19,8,246,1,16,62,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,60,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,128,42,15,216,90,224,151,64,26,19,8,246,1,16,64,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,106,128,233,22,132,56,146,64,26,19,8,246,1,16,65,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,63,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,184,239,71,40,128,152,64,26,19,8,246,1,16,67,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,47,75,245,12,151,252,145,64,26,19,8,246,1,16,68,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,66,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,131,249,139,112,102,201,152,64,26,19,8,246,1,16,70,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,47,75,245,12,151,252,145,64,26,19,8,246,1,16,71,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,69,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,109,255,223,255,14,208,152,64,26,19,8,246,1,16,73,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,3,87,157,43,232,9,146,64,26,19,8,246,1,16,74,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,72,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,5,52,143,183,214,152,64,26,19,8,246,1,16,76,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,253,157,141,227,206,89,146,64,26,19,8,246,1,16,77,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,75,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,225,59,51,196,174,152,64,26,19,8,246,1,16,79,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,71,20,30,22,250,222,146,64,26,19,8,246,1,16,80,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,78,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,181,166,243,153,46,108,152,64,26,19,8,246,1,16,82,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,65,91,14,206,224,46,147,64,26,19,8,246,1,16,83,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,81,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,89,175,82,159,21,152,64,26,19,8,246,1,16,85,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,36,168,82,21,112,133,147,64,26,19,8,246,1,16,86,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,84,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,67,38,158,53,98,187,150,64,26,19,8,246,1,16,88,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,17,125,35,61,36,117,148,64,26,19,8,246,1,16,89,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,87,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,117,211,5,95,42,94,150,64,26,19,8,246,1,16,91,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,201,213,15,163,4,217,148,64,26,19,8,246,1,16,92,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,90,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,205,187,181,33,136,67,150,64,26,19,8,246,1,16,94,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,4,11,4,173,241,20,149,64,26,19,8,246,1,16,95,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,93,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,170,185,115,142,47,150,64,26,19,8,246,1,16,97,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,188,99,240,18,210,120,149,64,26,19,8,246,1,16,98,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,96,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,225,158,56,172,103,187,149,64,26,19,8,246,1,16,101,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,14,170,185,115,142,47,150,64,26,19,8,246,1,16,100,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,99,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,205,187,181,33,136,67,150,64,26,19,8,246,1,16,103,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,159,176,52,90,97,207,149,64,26,19,8,246,1,16,104,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,102,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,52,229,1,13,36,114,150,64,26,19,8,246,1,16,106,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,137,182,136,233,9,214,149,64,26,19,8,246,1,16,107,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,105,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,45,44,242,196,10,194,150,64,26,19,8,246,1,16,109,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,159,176,52,90,97,207,149,64,26,19,8,246,1,16,110,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,108,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,138,50,186,147,44,151,64,26,19,8,246,1,16,112,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,100,123,64,80,116,147,149,64,26,19,8,246,1,16,113,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,111,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,91,239,198,62,197,157,151,64,26,19,8,246,1,16,115,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,172,34,84,234,147,47,149,64,26,19,8,246,1,16,116,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,114,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,89,175,82,159,21,152,64,26,19,8,246,1,16,118,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,76,178,23,71,17,177,148,64,26,19,8,246,1,16,119,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,117,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,212,40,44,235,170,254,152,64,26,19,8,246,1,16,121,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,198,6,147,10,249,239,147,64,26,19,8,246,1,16,122,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,120,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,200,8,9,114,178,153,64,26,19,8,246,1,16,124,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,249,179,250,51,193,146,147,64,26,19,8,246,1,16,125,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,123,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,251,50,241,28,76,42,154,64,26,19,8,246,1,16,127,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,146,138,174,72,37,100,147,64,26,20,8,246,1,16,128,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,126,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,245,121,225,212,50,122,154,64,26,20,8,246,1,16,130,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,146,138,174,72,37,100,147,64,26,20,8,246,1,16,131,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,129,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,124,144,2,216,205,106,147,64,26,20,8,246,1,16,134,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,223,127,53,100,219,128,154,64,26,20,8,246,1,16,133,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,132,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,201,133,137,243,131,135,154,64,26,20,8,246,1,16,136,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,161,203,74,113,99,173,147,64,26,20,8,246,1,16,137,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,135,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,245,121,225,212,50,122,154,64,26,20,8,246,1,16,139,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,220,0,63,123,80,233,147,64,26,20,8,246,1,16,140,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,138,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,208,62,153,59,157,55,154,64,26,20,8,246,1,16,142,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,148,89,43,225,48,77,148,64,26,20,8,246,1,16,143,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,141,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,223,207,187,19,92,210,148,64,26,20,8,246,1,16,146,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,46,224,88,70,20,205,153,64,26,20,8,246,1,16,145,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,144,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,41,70,76,70,135,87,149,64,26,20,8,246,1,16,149,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,227,105,200,19,233,71,153,64,26,20,8,246,1,16,148,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,147,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,30,103,185,9,211,151,64,26,20,8,246,1,16,151,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,205,115,9,212,27,171,150,64,26,20,8,246,1,16,152,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,150,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,26,1,195,236,190,177,151,64,26,20,8,246,1,16,154,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,243,174,81,109,177,237,150,64,26,20,8,246,1,16,155,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,153,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,47,251,110,93,22,171,151,64,26,20,8,246,1,16,157,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,111,210,73,201,164,21,151,64,26,20,8,246,1,16,158,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,156,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,166,243,153,46,108,152,64,26,20,8,246,1,16,160,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,179,143,202,179,182,234,151,64,26,20,8,246,1,16,161,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,159,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,188,95,3,226,71,28,152,64,26,20,8,246,1,16,163,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,173,214,186,107,157,58,152,64,26,20,8,246,1,16,164,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,162,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,19,72,179,164,165,1,152,64,26,20,8,246,1,16,166,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,225,82,159,45,113,198,152,64,26,20,8,246,1,16,167,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,165,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,231,83,91,195,246,14,152,64,26,20,8,246,1,16,169,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,28,136,147,55,94,2,153,64,26,20,8,246,1,16,170,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,168,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,241,147,59,86,175,15,153,64,26,20,8,246,1,16,173,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,122,113,255,143,65,48,152,64,26,20,8,246,1,16,172,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,171,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,166,243,153,46,108,152,64,26,20,8,246,1,16,175,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,219,153,143,229,87,22,153,64,26,20,8,246,1,16,176,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,174,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,28,136,147,55,94,2,153,64,26,20,8,246,1,16,179,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,131,249,139,112,102,201,152,64,26,20,8,246,1,16,178,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,177,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,203,88,243,188,25,205,152,64,26,20,8,246,1,16,182,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,102,70,208,183,245,31,153,64,26,20,8,246,1,16,181,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,180,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,96,141,192,111,220,111,153,64,26,20,8,246,1,16,184,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,166,29,171,35,132,138,152,64,26,20,8,246,1,16,185,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,183,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,236,241,84,244,13,225,153,64,26,20,8,246,1,16,187,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,48,179,194,15,170,18,152,64,26,20,8,246,1,16,188,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,246,1,16,186,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,246,1,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,249,1,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,16,246,42,178,94,110,150,64,26,19,8,249,1,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,119,178,120,225,9,232,154,64,26,19,8,249,1,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,249,1,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,16,246,42,178,94,110,150,64,26,19,8,249,1,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,2,249,122,76,117,119,155,64,26,19,8,249,1,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,249,1,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,249,1,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,249,1,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,249,1,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,249,1,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,249,1,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,249,1,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,249,1,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,145,64,26,19,8,249,1,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,147,64,26,19,8,249,1,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,249,1,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,144,64,26,19,8,249,1,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,148,64,26,19,8,249,1,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,249,1,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,144,64,26,19,8,249,1,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,220,149,64,26,19,8,249,1,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,249,1,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,144,64,26,19,8,249,1,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,150,64,26,19,8,249,1,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,249,1,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,144,64,26,19,8,249,1,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,68,150,64,26,19,8,249,1,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,249,1,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,249,1,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,249,1,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,251,1,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,251,1,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,101,246,113,81,24,150,64,26,19,8,251,1,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,254,87,92,234,49,125,155,64,26,19,8,251,1,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,251,1,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,2,249,122,76,117,119,155,64,26,19,8,251,1,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,202,134,95,242,107,196,150,64,26,19,8,251,1,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,251,1,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,251,1,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,251,1,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,251,1,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,212,7,18,209,7,10,206,7,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,250,1,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,145,64,26,19,8,250,1,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,204,149,64,26,19,8,250,1,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,250,1,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,149,64,26,19,8,250,1,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,145,64,26,19,8,250,1,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,250,1,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,146,64,26,19,8,250,1,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,108,149,64,26,19,8,250,1,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,250,1,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,146,64,26,19,8,250,1,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,68,149,64,26,19,8,250,1,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,250,1,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,146,64,26,19,8,250,1,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,20,149,64,26,19,8,250,1,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,250,1,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,148,64,26,19,8,250,1,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,220,148,64,26,19,8,250,1,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,250,1,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,150,64,26,19,8,250,1,16,25,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,148,64,26,19,8,250,1,16,26,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,250,1,16,24,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,250,1,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,250,1,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,250,1,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,250,1,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,255,1,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,101,99,102,50,26,19,8,255,1,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,255,1,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,154,64,26,19,8,255,1,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,130,64,26,19,8,255,1,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,255,1,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,155,64,26,19,8,255,1,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,130,64,26,19,8,255,1,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,255,1,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,155,64,26,19,8,255,1,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,130,64,26,19,8,255,1,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,255,1,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,255,1,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,255,1,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,254,1,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,254,1,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,254,1,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,52,56,12,175,43,151,64,26,19,8,254,1,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,133,149,212,7,212,214,154,64,26,19,8,254,1,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,254,1,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,52,56,12,175,43,151,64,26,19,8,254,1,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,244,21,31,38,171,136,155,64,26,19,8,254,1,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,254,1,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,254,1,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,254,1,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,255,1,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,52,56,12,175,43,151,64,26,19,8,255,1,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,240,116,0,196,103,142,155,64,26,19,8,255,1,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,255,1,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,52,56,12,175,43,151,64,26,19,8,255,1,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,240,116,0,196,103,142,155,64,26,19,8,255,1,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,255,1,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,255,1,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,255,1,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,255,1,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,255,1,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,178,9,18,175,9,10,172,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,254,1,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,254,1,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,254,1,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,151,64,26,19,8,254,1,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,70,64,26,19,8,254,1,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,254,1,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,152,64,26,19,8,254,1,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,69,64,26,19,8,254,1,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,254,1,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,152,64,26,19,8,254,1,16,13,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,72,64,26,19,8,254,1,16,14,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,254,1,16,12,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,152,64,26,19,8,254,1,16,16,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,75,64,26,19,8,254,1,16,17,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,254,1,16,15,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,152,64,26,19,8,254,1,16,19,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,79,64,26,19,8,254,1,16,20,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,254,1,16,18,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,151,64,26,19,8,254,1,16,22,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,87,64,26,19,8,254,1,16,23,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,254,1,16,21,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,151,64,26,19,8,254,1,16,25,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,92,64,26,19,8,254,1,16,26,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,254,1,16,24,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,151,64,26,19,8,254,1,16,28,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,96,64,26,19,8,254,1,16,29,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,254,1,16,27,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,151,64,26,19,8,254,1,16,31,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,94,64,26,19,8,254,1,16,32,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,254,1,16,30,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,254,1,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,254,1,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,155,64,26,19,8,130,2,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,130,64,26,19,8,130,2,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,130,2,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,130,64,26,19,8,130,2,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,154,64,26,19,8,130,2,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,130,2,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,130,2,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,130,2,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,101,99,102,50,26,19,8,130,2,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,130,2,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,130,2,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,133,2,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,133,2,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,133,2,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,249,182,61,136,238,130,155,64,26,19,8,133,2,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,118,52,56,12,175,43,151,64,26,19,8,133,2,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,133,2,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,67,73,231,212,201,106,151,64,26,19,8,133,2,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,249,182,61,136,238,130,155,64,26,19,8,133,2,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,133,2,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,133,2,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,133,2,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,221,13,18,218,13,10,215,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,134,2,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,225,171,248,220,188,167,150,64,26,19,8,134,2,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,81,18,239,187,116,81,156,64,26,19,8,134,2,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,208,145,199,13,139,150,64,26,19,8,134,2,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,16,68,66,94,197,161,156,64,26,19,8,134,2,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,208,145,199,13,139,150,64,26,19,8,134,2,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,202,212,118,158,210,247,156,64,26,19,8,134,2,16,14,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,235,237,53,161,67,156,150,64,26,19,8,134,2,16,16,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,183,80,252,21,197,14,157,64,26,19,8,134,2,16,17,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,15,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,137,184,178,148,188,20,151,64,26,19,8,134,2,16,19,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,132,101,171,222,223,77,157,64,26,19,8,134,2,16,20,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,18,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,57,7,170,16,67,118,151,64,26,19,8,134,2,16,22,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,127,196,140,124,156,83,157,64,26,19,8,134,2,16,23,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,21,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,189,119,59,161,175,151,64,26,19,8,134,2,16,25,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,146,72,7,5,170,60,157,64,26,19,8,134,2,16,26,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,24,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,248,56,253,178,147,198,151,64,26,19,8,134,2,16,28,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,192,146,57,218,75,3,157,64,26,19,8,134,2,16,29,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,27,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,248,56,253,178,147,198,151,64,26,19,8,134,2,16,31,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,230,154,46,235,102,213,156,64,26,19,8,134,2,16,32,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,30,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,6,28,89,217,93,181,151,64,26,19,8,134,2,16,34,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,39,105,219,72,22,133,156,64,26,19,8,134,2,16,35,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,33,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,15,94,150,157,228,169,151,64,26,19,8,134,2,16,37,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,53,76,55,111,224,115,156,64,26,19,8,134,2,16,38,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,36,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,118,26,228,204,143,35,156,64,26,19,8,134,2,16,41,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,146,250,239,88,67,9,151,64,26,19,8,134,2,16,40,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,39,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,179,97,198,7,27,225,150,64,26,19,8,134,2,16,43,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,114,121,197,106,76,41,156,64,26,19,8,134,2,16,44,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,42,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,81,18,239,187,116,81,156,64,26,19,8,134,2,16,47,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,221,10,218,122,121,173,150,64,26,19,8,134,2,16,46,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,45,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,134,2,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,134,2,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,134,2,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,134,2,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,51,55,102,102,26,19,8,134,2,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,134,2,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,216,179,219,252,57,163,64,26,19,8,134,2,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,97,226,84,118,199,123,129,64,26,19,8,134,2,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,134,2,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,176,246,149,172,70,61,163,64,26,19,8,134,2,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,213,233,182,116,210,46,133,64,26,19,8,134,2,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,134,2,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,47,51,90,78,218,67,163,64,26,19,8,134,2,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,183,0,182,105,31,244,133,64,26,19,8,134,2,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,134,2,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,218,183,186,227,113,163,64,26,19,8,134,2,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,59,64,212,75,240,61,137,64,26,19,8,134,2,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,134,2,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,167,83,64,254,10,127,163,64,26,19,8,134,2,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,37,115,177,50,160,206,137,64,26,19,8,134,2,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,134,2,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,134,2,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,134,2,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,135,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,135,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,135,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,145,64,26,19,8,135,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,149,64,26,19,8,135,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,135,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,144,64,26,19,8,135,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,150,64,26,19,8,135,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,135,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,151,64,26,19,8,135,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,143,64,26,19,8,135,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,135,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,135,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,135,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,137,2,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,137,2,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,137,2,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,251,132,149,241,108,152,64,26,19,8,137,2,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,12,211,76,37,118,48,154,64,26,19,8,137,2,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,137,2,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,251,132,149,241,108,152,64,26,19,8,137,2,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,184,232,144,42,63,211,155,64,26,19,8,137,2,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,137,2,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,137,2,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,137,2,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,246,5,18,243,5,10,240,5,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,137,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,137,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,151,64,26,19,8,137,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,141,64,26,19,8,137,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,137,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,150,64,26,19,8,137,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,142,64,26,19,8,137,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,137,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,148,64,26,19,8,137,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,143,64,26,19,8,137,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,137,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,146,64,26,19,8,137,2,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,143,64,26,19,8,137,2,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,137,2,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,146,64,26,19,8,137,2,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,143,64,26,19,8,137,2,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,137,2,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,137,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,137,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,137,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,135,2,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,240,20,120,125,144,64,163,64,26,19,8,135,2,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,170,79,113,66,50,80,134,64,26,19,8,135,2,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,135,2,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,195,243,186,142,23,111,164,64,26,19,8,135,2,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,170,79,113,66,50,80,134,64,26,19,8,135,2,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,135,2,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,135,2,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,135,2,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,51,55,102,102,26,19,8,135,2,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,135,2,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,139,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,139,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,139,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,146,64,26,19,8,139,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,142,64,26,19,8,139,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,139,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,142,64,26,19,8,139,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,147,64,26,19,8,139,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,139,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,148,64,26,19,8,139,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,142,64,26,19,8,139,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,139,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,149,64,26,19,8,139,2,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,143,64,26,19,8,139,2,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,139,2,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,150,64,26,19,8,139,2,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,143,64,26,19,8,139,2,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,139,2,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,143,64,26,19,8,139,2,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,151,64,26,19,8,139,2,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,139,2,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,151,64,26,19,8,139,2,16,25,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,143,64,26,19,8,139,2,16,26,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,139,2,16,24,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,139,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,139,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,222,26,18,219,26,10,216,26,10,182,25,10,6,112,111,105,110,116,115,18,171,25,18,168,25,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,145,64,26,19,8,141,2,16,7,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,139,64,26,19,8,141,2,16,8,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,6,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,145,64,26,19,8,141,2,16,10,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,146,64,26,19,8,141,2,16,11,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,9,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,145,64,26,19,8,141,2,16,13,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,146,64,26,19,8,141,2,16,14,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,12,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,145,64,26,19,8,141,2,16,16,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,146,64,26,19,8,141,2,16,17,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,15,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,146,64,26,19,8,141,2,16,19,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,145,64,26,19,8,141,2,16,20,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,18,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,147,64,26,19,8,141,2,16,22,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,76,144,64,26,19,8,141,2,16,23,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,21,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,147,64,26,19,8,141,2,16,25,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,143,64,26,19,8,141,2,16,26,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,24,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,149,64,26,19,8,141,2,16,28,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,139,64,26,19,8,141,2,16,29,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,27,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,149,64,26,19,8,141,2,16,31,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,141,64,26,19,8,141,2,16,32,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,30,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,149,64,26,19,8,141,2,16,34,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,142,64,26,19,8,141,2,16,35,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,33,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,150,64,26,19,8,141,2,16,37,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,141,64,26,19,8,141,2,16,38,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,36,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,150,64,26,19,8,141,2,16,40,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,139,64,26,19,8,141,2,16,41,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,39,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,150,64,26,19,8,141,2,16,43,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,140,64,26,19,8,141,2,16,44,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,42,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,150,64,26,19,8,141,2,16,46,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,142,64,26,19,8,141,2,16,47,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,45,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,150,64,26,19,8,141,2,16,49,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,141,64,26,19,8,141,2,16,50,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,48,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,141,64,26,19,8,141,2,16,53,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,151,64,26,19,8,141,2,16,52,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,51,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,144,64,26,19,8,141,2,16,55,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,144,64,26,19,8,141,2,16,56,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,54,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,143,64,26,19,8,141,2,16,58,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,180,144,64,26,19,8,141,2,16,59,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,57,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,142,64,26,19,8,141,2,16,61,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,196,144,64,26,19,8,141,2,16,62,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,60,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,140,64,26,19,8,141,2,16,64,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,144,64,26,19,8,141,2,16,65,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,63,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,134,64,26,19,8,141,2,16,67,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,142,64,26,19,8,141,2,16,68,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,66,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,136,64,26,19,8,141,2,16,70,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,141,64,26,19,8,141,2,16,71,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,69,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,140,64,26,19,8,141,2,16,74,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,137,64,26,19,8,141,2,16,73,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,72,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,140,64,26,19,8,141,2,16,76,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,139,64,26,19,8,141,2,16,77,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,75,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,143,64,26,19,8,141,2,16,79,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,139,64,26,19,8,141,2,16,80,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,78,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,148,64,26,19,8,141,2,16,82,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,140,64,26,19,8,141,2,16,83,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,81,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,148,64,26,19,8,141,2,16,85,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,143,64,26,19,8,141,2,16,86,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,84,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,143,64,26,19,8,141,2,16,89,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,147,64,26,19,8,141,2,16,88,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,87,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,147,64,26,19,8,141,2,16,91,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,144,64,26,19,8,141,2,16,92,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,90,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,5,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,141,2,16,2,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,55,102,51,48,52,26,19,8,141,2,16,3,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,141,2,16,4,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,141,2,16,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,141,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,141,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,141,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,152,64,26,19,8,141,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,142,64,26,19,8,141,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,141,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,142,64,26,19,8,141,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,151,64,26,19,8,141,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,141,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,151,64,26,19,8,141,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,142,64,26,19,8,141,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,141,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,150,64,26,19,8,141,2,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,142,64,26,19,8,141,2,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,141,2,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,150,64,26,19,8,141,2,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,142,64,26,19,8,141,2,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,141,2,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,148,64,26,19,8,141,2,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,143,64,26,19,8,141,2,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,141,2,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,147,64,26,19,8,141,2,16,25,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,143,64,26,19,8,141,2,16,26,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,141,2,16,24,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,141,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,141,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,138,2,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,51,55,102,102,26,19,8,138,2,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,138,2,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,1,139,37,163,136,127,164,64,26,19,8,138,2,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,134,231,51,115,221,129,128,64,26,19,8,138,2,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,2,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,1,139,37,163,136,127,164,64,26,19,8,138,2,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,96,69,179,72,6,68,136,64,26,19,8,138,2,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,2,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,2,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,138,2,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,143,2,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,143,2,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,143,2,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,185,71,209,106,120,152,64,26,19,8,143,2,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,236,107,118,118,158,88,154,64,26,19,8,143,2,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,143,2,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,65,135,0,93,252,152,64,26,19,8,143,2,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,236,107,118,118,158,88,154,64,26,19,8,143,2,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,143,2,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,65,135,0,93,252,152,64,26,19,8,143,2,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,231,202,87,20,91,94,154,64,26,19,8,143,2,16,14,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,143,2,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,89,214,235,170,160,137,152,64,26,19,8,143,2,16,16,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,249,182,61,136,238,130,155,64,26,19,8,143,2,16,17,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,143,2,16,15,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,150,3,122,166,12,63,152,64,26,19,8,143,2,16,19,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,34,200,188,230,210,138,156,64,26,19,8,143,2,16,20,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,143,2,16,18,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,143,2,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,143,2,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,152,4,18,149,4,10,146,4,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,143,64,26,19,8,143,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,147,64,26,19,8,143,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,143,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,148,64,26,19,8,143,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,143,64,26,19,8,143,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,143,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,150,64,26,19,8,143,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,100,144,64,26,19,8,143,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,143,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,143,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,143,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,143,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,143,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,143,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,172,53,18,169,53,10,166,53,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,146,2,16,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,97,100,51,98,53,26,19,8,146,2,16,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,146,2,16,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,239,51,10,6,112,111,105,110,116,115,18,228,51,18,225,51,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,131,64,26,19,8,146,2,16,8,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,149,64,26,19,8,146,2,16,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,133,64,26,19,8,146,2,16,11,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,146,64,26,19,8,146,2,16,10,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,9,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,147,64,26,19,8,146,2,16,13,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,134,64,26,19,8,146,2,16,14,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,12,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,133,64,26,19,8,146,2,16,17,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,149,64,26,19,8,146,2,16,16,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,15,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,149,64,26,19,8,146,2,16,19,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,132,64,26,19,8,146,2,16,20,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,18,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,148,64,26,19,8,146,2,16,22,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,130,64,26,19,8,146,2,16,23,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,21,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,129,64,26,19,8,146,2,16,26,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,145,64,26,19,8,146,2,16,25,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,24,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,143,64,26,19,8,146,2,16,28,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,130,64,26,19,8,146,2,16,29,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,27,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,142,64,26,19,8,146,2,16,31,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,131,64,26,19,8,146,2,16,32,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,30,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,141,64,26,19,8,146,2,16,34,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,146,2,16,35,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,33,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,141,64,26,19,8,146,2,16,37,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,133,64,26,19,8,146,2,16,38,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,36,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,142,64,26,19,8,146,2,16,40,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,133,64,26,19,8,146,2,16,41,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,39,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,143,64,26,19,8,146,2,16,43,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,134,64,26,19,8,146,2,16,44,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,42,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,145,64,26,19,8,146,2,16,46,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,134,64,26,19,8,146,2,16,47,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,45,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,147,64,26,19,8,146,2,16,49,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,134,64,26,19,8,146,2,16,50,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,48,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,148,64,26,19,8,146,2,16,52,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,134,64,26,19,8,146,2,16,53,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,51,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,148,64,26,19,8,146,2,16,55,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,133,64,26,19,8,146,2,16,56,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,54,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,132,64,26,19,8,146,2,16,59,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,147,64,26,19,8,146,2,16,58,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,57,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,131,64,26,19,8,146,2,16,62,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,146,64,26,19,8,146,2,16,61,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,60,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,144,64,26,19,8,146,2,16,64,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,132,64,26,19,8,146,2,16,65,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,63,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,140,64,26,19,8,146,2,16,67,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,133,64,26,19,8,146,2,16,68,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,66,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,138,64,26,19,8,146,2,16,70,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,134,64,26,19,8,146,2,16,71,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,69,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,138,64,26,19,8,146,2,16,73,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,136,64,26,19,8,146,2,16,74,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,72,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,137,64,26,19,8,146,2,16,77,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,138,64,26,19,8,146,2,16,76,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,75,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,146,64,26,19,8,146,2,16,79,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,137,64,26,19,8,146,2,16,80,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,78,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,136,64,26,19,8,146,2,16,83,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,147,64,26,19,8,146,2,16,82,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,81,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,148,64,26,19,8,146,2,16,85,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,134,64,26,19,8,146,2,16,86,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,84,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,148,64,26,19,8,146,2,16,88,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,133,64,26,19,8,146,2,16,89,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,87,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,147,64,26,19,8,146,2,16,91,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,131,64,26,19,8,146,2,16,92,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,90,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,145,64,26,19,8,146,2,16,94,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,146,2,16,95,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,93,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,141,64,26,19,8,146,2,16,97,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,131,64,26,19,8,146,2,16,98,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,96,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,131,64,26,19,8,146,2,16,100,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,137,64,26,19,8,146,2,16,101,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,99,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,131,64,26,19,8,146,2,16,103,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,139,64,26,19,8,146,2,16,104,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,102,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,134,64,26,19,8,146,2,16,106,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,140,64,26,19,8,146,2,16,107,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,105,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,141,64,26,19,8,146,2,16,110,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,140,64,26,19,8,146,2,16,109,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,108,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,144,64,26,19,8,146,2,16,112,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,141,64,26,19,8,146,2,16,113,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,111,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,146,64,26,19,8,146,2,16,115,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,139,64,26,19,8,146,2,16,116,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,114,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,148,64,26,19,8,146,2,16,118,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,137,64,26,19,8,146,2,16,119,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,117,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,148,64,26,19,8,146,2,16,121,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,135,64,26,19,8,146,2,16,122,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,120,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,148,64,26,19,8,146,2,16,124,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,134,64,26,19,8,146,2,16,125,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,123,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,110,18,108,10,106,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,132,64,26,20,8,146,2,16,128,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,147,64,26,19,8,146,2,16,127,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,126,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,140,64,26,20,8,146,2,16,130,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,130,64,26,20,8,146,2,16,131,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,129,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,128,64,26,20,8,146,2,16,133,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,130,64,26,20,8,146,2,16,134,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,132,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,115,64,26,20,8,146,2,16,136,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,132,64,26,20,8,146,2,16,137,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,135,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,108,64,26,20,8,146,2,16,139,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,134,64,26,20,8,146,2,16,140,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,138,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,106,64,26,20,8,146,2,16,142,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,136,64,26,20,8,146,2,16,143,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,141,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,112,64,26,20,8,146,2,16,145,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,137,64,26,20,8,146,2,16,146,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,144,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,123,64,26,20,8,146,2,16,148,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,138,64,26,20,8,146,2,16,149,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,147,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,133,64,26,20,8,146,2,16,151,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,138,64,26,20,8,146,2,16,152,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,150,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,138,64,26,20,8,146,2,16,155,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,138,64,26,20,8,146,2,16,154,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,153,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,135,64,26,20,8,146,2,16,157,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,131,64,26,20,8,146,2,16,158,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,156,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,87,64,26,20,8,146,2,16,160,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,134,64,26,20,8,146,2,16,161,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,159,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,135,64,26,20,8,146,2,16,164,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,88,64,26,20,8,146,2,16,163,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,162,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,98,64,26,20,8,146,2,16,166,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,24,135,64,26,20,8,146,2,16,167,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,165,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,114,64,26,20,8,146,2,16,169,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,129,64,26,20,8,146,2,16,170,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,168,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,113,64,26,20,8,146,2,16,172,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,224,128,64,26,20,8,146,2,16,173,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,171,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,109,64,26,20,8,146,2,16,175,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,128,64,26,20,8,146,2,16,176,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,174,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,100,64,26,20,8,146,2,16,178,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,128,64,26,20,8,146,2,16,179,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,177,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,34,192,26,20,8,146,2,16,181,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,128,64,26,20,8,146,2,16,182,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,146,2,16,180,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,146,2,16,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,34,19,8,159,2,16,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,229,6,18,226,6,10,223,6,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,145,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,145,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,150,64,26,19,8,145,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,92,144,64,26,19,8,145,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,145,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,149,64,26,19,8,145,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,144,64,26,19,8,145,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,145,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,147,64,26,19,8,145,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,144,64,26,19,8,145,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,145,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,146,64,26,19,8,145,2,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,108,145,64,26,19,8,145,2,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,145,2,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,145,64,26,19,8,145,2,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,145,64,26,19,8,145,2,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,145,2,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,145,64,26,19,8,145,2,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,164,145,64,26,19,8,145,2,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,145,2,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,145,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,145,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,145,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,147,2,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,147,2,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,147,2,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,197,77,172,123,174,5,152,64,26,19,8,147,2,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,178,175,221,179,129,20,157,64,26,19,8,147,2,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,2,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,150,3,122,166,12,63,152,64,26,19,8,147,2,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,174,14,191,81,62,26,157,64,26,19,8,147,2,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,2,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,122,61,194,89,120,97,152,64,26,19,8,147,2,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,178,175,221,179,129,20,157,64,26,19,8,147,2,16,14,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,2,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,145,98,91,68,201,68,152,64,26,19,8,147,2,16,16,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,206,117,149,0,22,242,156,64,26,19,8,147,2,16,17,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,2,16,15,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,206,117,149,0,22,242,156,64,26,19,8,147,2,16,20,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,164,230,213,204,214,45,152,64,26,19,8,147,2,16,19,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,2,16,18,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,2,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,2,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,195,8,18,192,8,10,189,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,147,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,147,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,147,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,145,64,26,19,8,147,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,144,64,26,19,8,147,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,147,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,145,64,26,19,8,147,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,132,144,64,26,19,8,147,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,147,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,146,64,26,19,8,147,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,144,64,26,19,8,147,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,147,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,146,64,26,19,8,147,2,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,236,144,64,26,19,8,147,2,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,147,2,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,148,64,26,19,8,147,2,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,228,145,64,26,19,8,147,2,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,147,2,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,12,146,64,26,19,8,147,2,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,149,64,26,19,8,147,2,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,147,2,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,149,64,26,19,8,147,2,16,25,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,12,146,64,26,19,8,147,2,16,26,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,147,2,16,24,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,145,64,26,19,8,147,2,16,29,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,149,64,26,19,8,147,2,16,28,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,147,2,16,27,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,147,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,147,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,159,85,18,156,85,10,153,85,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,143,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,143,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,143,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,247,83,10,6,112,111,105,110,116,115,18,236,83,18,233,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,148,64,26,19,8,143,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,143,64,26,19,8,143,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,148,64,26,19,8,143,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,143,64,26,19,8,143,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,12,144,64,26,19,8,143,2,16,14,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,148,64,26,19,8,143,2,16,13,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,12,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,148,64,26,19,8,143,2,16,16,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,92,144,64,26,19,8,143,2,16,17,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,15,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,144,64,26,19,8,143,2,16,20,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,148,64,26,19,8,143,2,16,19,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,18,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,148,64,26,19,8,143,2,16,22,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,144,64,26,19,8,143,2,16,23,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,21,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,149,64,26,19,8,143,2,16,25,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,144,64,26,19,8,143,2,16,26,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,24,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,149,64,26,19,8,143,2,16,28,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,144,64,26,19,8,143,2,16,29,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,27,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,149,64,26,19,8,143,2,16,31,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,156,144,64,26,19,8,143,2,16,32,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,30,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,149,64,26,19,8,143,2,16,34,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,144,64,26,19,8,143,2,16,35,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,33,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,149,64,26,19,8,143,2,16,37,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,144,64,26,19,8,143,2,16,38,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,36,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,144,64,26,19,8,143,2,16,41,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,149,64,26,19,8,143,2,16,40,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,39,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,149,64,26,19,8,143,2,16,43,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,143,64,26,19,8,143,2,16,44,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,42,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,143,64,26,19,8,143,2,16,47,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,149,64,26,19,8,143,2,16,46,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,45,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,143,64,26,19,8,143,2,16,50,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,149,64,26,19,8,143,2,16,49,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,48,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,143,64,26,19,8,143,2,16,53,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,149,64,26,19,8,143,2,16,52,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,51,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,149,64,26,19,8,143,2,16,55,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,141,64,26,19,8,143,2,16,56,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,54,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,149,64,26,19,8,143,2,16,58,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,141,64,26,19,8,143,2,16,59,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,57,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,140,64,26,19,8,143,2,16,62,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,149,64,26,19,8,143,2,16,61,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,60,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,149,64,26,19,8,143,2,16,64,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,140,64,26,19,8,143,2,16,65,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,63,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,148,64,26,19,8,143,2,16,67,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,141,64,26,19,8,143,2,16,68,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,66,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,148,64,26,19,8,143,2,16,70,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,141,64,26,19,8,143,2,16,71,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,69,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,148,64,26,19,8,143,2,16,73,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,142,64,26,19,8,143,2,16,74,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,72,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,148,64,26,19,8,143,2,16,76,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,143,64,26,19,8,143,2,16,77,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,75,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,148,64,26,19,8,143,2,16,79,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,143,64,26,19,8,143,2,16,80,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,78,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,142,64,26,19,8,143,2,16,83,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,148,64,26,19,8,143,2,16,82,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,81,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,141,64,26,19,8,143,2,16,86,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,149,64,26,19,8,143,2,16,85,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,84,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,149,64,26,19,8,143,2,16,88,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,140,64,26,19,8,143,2,16,89,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,87,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,149,64,26,19,8,143,2,16,91,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,140,64,26,19,8,143,2,16,92,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,90,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,149,64,26,19,8,143,2,16,94,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,140,64,26,19,8,143,2,16,95,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,93,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,149,64,26,19,8,143,2,16,97,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,141,64,26,19,8,143,2,16,98,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,96,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,141,64,26,19,8,143,2,16,101,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,149,64,26,19,8,143,2,16,100,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,99,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,149,64,26,19,8,143,2,16,103,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,142,64,26,19,8,143,2,16,104,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,102,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,149,64,26,19,8,143,2,16,106,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,142,64,26,19,8,143,2,16,107,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,105,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,149,64,26,19,8,143,2,16,109,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,143,64,26,19,8,143,2,16,110,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,108,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,149,64,26,19,8,143,2,16,112,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,143,64,26,19,8,143,2,16,113,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,111,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,148,64,26,19,8,143,2,16,115,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,144,64,26,19,8,143,2,16,116,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,114,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,148,64,26,19,8,143,2,16,118,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,4,144,64,26,19,8,143,2,16,119,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,117,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,148,64,26,19,8,143,2,16,121,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,143,64,26,19,8,143,2,16,122,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,120,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,148,64,26,19,8,143,2,16,124,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,143,64,26,19,8,143,2,16,125,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,123,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,148,64,26,19,8,143,2,16,127,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,142,64,26,20,8,143,2,16,128,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,126,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,148,64,26,20,8,143,2,16,130,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,141,64,26,20,8,143,2,16,131,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,129,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,141,64,26,20,8,143,2,16,134,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,148,64,26,20,8,143,2,16,133,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,132,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,148,64,26,20,8,143,2,16,136,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,141,64,26,20,8,143,2,16,137,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,135,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,149,64,26,20,8,143,2,16,139,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,140,64,26,20,8,143,2,16,140,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,138,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,149,64,26,20,8,143,2,16,142,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,140,64,26,20,8,143,2,16,143,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,141,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,140,64,26,20,8,143,2,16,146,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,149,64,26,20,8,143,2,16,145,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,144,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,168,140,64,26,20,8,143,2,16,149,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,149,64,26,20,8,143,2,16,148,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,147,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,20,150,64,26,20,8,143,2,16,151,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,141,64,26,20,8,143,2,16,152,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,150,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,4,150,64,26,20,8,143,2,16,154,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,142,64,26,20,8,143,2,16,155,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,153,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,149,64,26,20,8,143,2,16,157,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,142,64,26,20,8,143,2,16,158,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,156,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,149,64,26,20,8,143,2,16,160,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,142,64,26,20,8,143,2,16,161,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,159,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,149,64,26,20,8,143,2,16,163,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,142,64,26,20,8,143,2,16,164,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,162,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,149,64,26,20,8,143,2,16,166,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,141,64,26,20,8,143,2,16,167,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,165,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,149,64,26,20,8,143,2,16,169,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,141,64,26,20,8,143,2,16,170,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,168,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,149,64,26,20,8,143,2,16,172,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,141,64,26,20,8,143,2,16,173,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,171,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,149,64,26,20,8,143,2,16,175,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,142,64,26,20,8,143,2,16,176,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,174,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,252,149,64,26,20,8,143,2,16,178,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,142,64,26,20,8,143,2,16,179,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,177,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,149,64,26,20,8,143,2,16,181,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,143,64,26,20,8,143,2,16,182,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,180,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,149,64,26,20,8,143,2,16,184,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,143,64,26,20,8,143,2,16,185,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,183,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,149,64,26,20,8,143,2,16,187,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,144,64,26,20,8,143,2,16,188,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,186,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,149,64,26,20,8,143,2,16,190,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,144,64,26,20,8,143,2,16,191,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,189,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,149,64,26,20,8,143,2,16,193,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,36,144,64,26,20,8,143,2,16,194,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,192,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,149,64,26,20,8,143,2,16,196,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,24,144,64,26,20,8,143,2,16,197,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,195,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,149,64,26,20,8,143,2,16,199,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,143,64,26,20,8,143,2,16,200,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,198,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,149,64,26,20,8,143,2,16,202,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,143,64,26,20,8,143,2,16,203,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,201,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,143,64,26,20,8,143,2,16,206,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,149,64,26,20,8,143,2,16,205,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,204,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,149,64,26,20,8,143,2,16,208,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,20,144,64,26,20,8,143,2,16,209,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,207,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,149,64,26,20,8,143,2,16,211,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,84,144,64,26,20,8,143,2,16,212,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,210,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,144,64,26,20,8,143,2,16,215,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,149,64,26,20,8,143,2,16,214,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,213,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,148,64,26,20,8,143,2,16,217,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,20,144,64,26,20,8,143,2,16,218,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,216,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,148,64,26,20,8,143,2,16,220,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,143,64,26,20,8,143,2,16,221,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,219,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,148,64,26,20,8,143,2,16,223,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,143,64,26,20,8,143,2,16,224,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,222,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,149,64,26,20,8,143,2,16,226,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,143,64,26,20,8,143,2,16,227,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,225,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,149,64,26,20,8,143,2,16,229,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,143,64,26,20,8,143,2,16,230,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,228,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,149,64,26,20,8,143,2,16,232,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,143,64,26,20,8,143,2,16,233,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,231,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,24,143,64,26,20,8,143,2,16,236,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,149,64,26,20,8,143,2,16,235,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,234,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,149,64,26,20,8,143,2,16,238,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,143,64,26,20,8,143,2,16,239,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,237,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,143,64,26,20,8,143,2,16,242,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,149,64,26,20,8,143,2,16,241,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,240,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,149,64,26,20,8,143,2,16,244,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,144,64,26,20,8,143,2,16,245,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,243,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,149,64,26,20,8,143,2,16,247,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,144,64,26,20,8,143,2,16,248,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,246,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,149,64,26,20,8,143,2,16,250,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,92,144,64,26,20,8,143,2,16,251,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,249,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,149,64,26,20,8,143,2,16,253,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,144,64,26,20,8,143,2,16,254,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,252,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,149,64,26,20,8,143,2,16,128,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,144,64,26,20,8,143,2,16,129,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,255,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,60,149,64,26,20,8,143,2,16,131,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,144,64,26,20,8,143,2,16,132,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,130,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,149,64,26,20,8,143,2,16,134,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,144,64,26,20,8,143,2,16,135,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,133,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,168,143,64,26,20,8,143,2,16,138,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,20,149,64,26,20,8,143,2,16,137,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,136,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,149,64,26,20,8,143,2,16,140,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,143,64,26,20,8,143,2,16,141,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,139,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,149,64,26,20,8,143,2,16,143,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,142,64,26,20,8,143,2,16,144,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,142,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,149,64,26,20,8,143,2,16,146,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,142,64,26,20,8,143,2,16,147,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,145,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,142,64,26,20,8,143,2,16,150,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,149,64,26,20,8,143,2,16,149,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,148,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,149,64,26,20,8,143,2,16,152,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,142,64,26,20,8,143,2,16,153,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,151,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,149,64,26,20,8,143,2,16,155,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,48,143,64,26,20,8,143,2,16,156,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,154,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,149,64,26,20,8,143,2,16,158,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,143,64,26,20,8,143,2,16,159,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,157,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,149,64,26,20,8,143,2,16,161,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,143,64,26,20,8,143,2,16,162,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,143,2,16,160,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,143,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,144,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,144,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,144,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,144,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,149,64,26,19,8,144,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,144,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,148,64,26,19,8,144,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,144,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,144,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,144,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,144,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,150,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,150,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,150,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,160,64,26,19,8,150,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,144,64,26,19,8,150,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,150,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,160,64,26,19,8,150,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,172,145,64,26,19,8,150,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,150,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,150,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,150,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,151,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,151,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,151,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,38,160,64,26,19,8,151,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,44,145,64,26,19,8,151,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,151,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,166,160,64,26,19,8,151,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,44,145,64,26,19,8,151,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,151,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,151,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,151,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,152,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,152,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,152,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,154,160,64,26,19,8,152,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,20,144,64,26,19,8,152,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,152,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,145,64,26,19,8,152,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,154,160,64,26,19,8,152,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,152,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,152,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,152,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,212,7,18,209,7,10,206,7,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,159,64,26,19,8,153,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,164,145,64,26,19,8,153,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,153,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,158,64,26,19,8,153,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,143,64,26,19,8,153,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,153,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,159,64,26,19,8,153,2,16,13,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,144,64,26,19,8,153,2,16,14,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,153,2,16,12,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,160,64,26,19,8,153,2,16,16,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,145,64,26,19,8,153,2,16,17,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,153,2,16,15,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,54,160,64,26,19,8,153,2,16,19,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,145,64,26,19,8,153,2,16,20,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,153,2,16,18,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,160,64,26,19,8,153,2,16,22,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,144,64,26,19,8,153,2,16,23,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,153,2,16,21,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,160,64,26,19,8,153,2,16,25,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,143,64,26,19,8,153,2,16,26,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,153,2,16,24,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,153,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,153,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,153,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,153,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,153,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,180,35,18,177,35,10,174,35,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,154,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,154,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,154,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,140,34,10,6,112,111,105,110,116,115,18,129,34,18,254,33,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,160,64,26,19,8,154,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,144,64,26,19,8,154,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,158,64,26,19,8,154,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,144,64,26,19,8,154,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,158,64,26,19,8,154,2,16,13,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,145,64,26,19,8,154,2,16,14,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,12,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,159,64,26,19,8,154,2,16,16,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,144,64,26,19,8,154,2,16,17,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,15,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,54,160,64,26,19,8,154,2,16,19,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,92,144,64,26,19,8,154,2,16,20,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,18,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,54,160,64,26,19,8,154,2,16,22,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,145,64,26,19,8,154,2,16,23,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,21,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,188,145,64,26,19,8,154,2,16,26,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,58,160,64,26,19,8,154,2,16,25,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,24,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,160,64,26,19,8,154,2,16,28,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,145,64,26,19,8,154,2,16,29,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,27,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,218,160,64,26,19,8,154,2,16,31,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,20,145,64,26,19,8,154,2,16,32,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,30,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,14,161,64,26,19,8,154,2,16,34,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,144,64,26,19,8,154,2,16,35,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,33,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,180,144,64,26,19,8,154,2,16,38,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,14,161,64,26,19,8,154,2,16,37,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,36,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,161,64,26,19,8,154,2,16,40,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,144,64,26,19,8,154,2,16,41,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,39,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,160,64,26,19,8,154,2,16,43,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,143,64,26,19,8,154,2,16,44,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,42,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,26,160,64,26,19,8,154,2,16,46,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,142,64,26,19,8,154,2,16,47,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,45,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,141,64,26,19,8,154,2,16,50,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,159,64,26,19,8,154,2,16,49,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,48,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,159,64,26,19,8,154,2,16,52,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,141,64,26,19,8,154,2,16,53,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,51,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,159,64,26,19,8,154,2,16,55,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,142,64,26,19,8,154,2,16,56,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,54,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,159,64,26,19,8,154,2,16,58,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,144,64,26,19,8,154,2,16,59,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,57,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,158,64,26,19,8,154,2,16,61,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,145,64,26,19,8,154,2,16,62,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,60,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,159,64,26,19,8,154,2,16,64,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,145,64,26,19,8,154,2,16,65,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,63,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,159,64,26,19,8,154,2,16,67,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,252,144,64,26,19,8,154,2,16,68,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,66,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,144,64,26,19,8,154,2,16,71,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,6,160,64,26,19,8,154,2,16,70,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,69,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,110,160,64,26,19,8,154,2,16,73,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,108,144,64,26,19,8,154,2,16,74,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,72,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,110,160,64,26,19,8,154,2,16,76,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,116,144,64,26,19,8,154,2,16,77,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,75,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,90,160,64,26,19,8,154,2,16,79,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,144,64,26,19,8,154,2,16,80,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,78,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,220,145,64,26,19,8,154,2,16,83,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,66,160,64,26,19,8,154,2,16,82,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,81,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,159,64,26,19,8,154,2,16,85,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,145,64,26,19,8,154,2,16,86,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,84,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,4,146,64,26,19,8,154,2,16,89,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,159,64,26,19,8,154,2,16,88,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,87,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,159,64,26,19,8,154,2,16,91,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,196,145,64,26,19,8,154,2,16,92,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,90,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,159,64,26,19,8,154,2,16,94,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,140,145,64,26,19,8,154,2,16,95,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,93,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,159,64,26,19,8,154,2,16,97,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,145,64,26,19,8,154,2,16,98,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,96,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,160,64,26,19,8,154,2,16,100,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,144,64,26,19,8,154,2,16,101,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,99,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,160,64,26,19,8,154,2,16,103,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,144,64,26,19,8,154,2,16,104,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,102,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,160,64,26,19,8,154,2,16,106,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,144,64,26,19,8,154,2,16,107,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,105,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,194,160,64,26,19,8,154,2,16,109,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,145,64,26,19,8,154,2,16,110,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,108,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,218,160,64,26,19,8,154,2,16,112,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,145,64,26,19,8,154,2,16,113,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,111,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,160,64,26,19,8,154,2,16,115,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,100,145,64,26,19,8,154,2,16,116,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,114,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,174,160,64,26,19,8,154,2,16,118,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,44,145,64,26,19,8,154,2,16,119,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,117,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,4,145,64,26,19,8,154,2,16,122,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,160,64,26,19,8,154,2,16,121,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,120,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,154,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,255,11,18,252,11,10,249,11,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,143,2,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,215,10,10,6,112,111,105,110,116,115,18,204,10,18,201,10,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,17,1,211,200,128,190,165,64,26,19,8,143,2,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,100,83,162,193,183,41,136,64,26,19,8,143,2,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,143,2,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,154,224,236,24,80,131,165,64,26,19,8,143,2,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,100,83,162,193,183,41,136,64,26,19,8,143,2,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,143,2,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,71,124,95,235,142,3,166,64,26,19,8,143,2,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,222,140,12,35,14,237,132,64,26,19,8,143,2,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,143,2,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,4,80,142,161,147,26,166,64,26,19,8,143,2,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,226,154,251,155,191,210,132,64,26,19,8,143,2,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,143,2,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,96,129,249,43,56,166,64,26,19,8,143,2,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,226,154,251,155,191,210,132,64,26,19,8,143,2,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,143,2,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,123,112,116,81,196,85,166,64,26,19,8,143,2,16,22,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,140,102,112,55,127,21,135,64,26,19,8,143,2,16,23,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,143,2,16,21,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,59,82,146,128,122,82,166,64,26,19,8,143,2,16,25,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,127,181,43,16,146,113,135,64,26,19,8,143,2,16,26,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,143,2,16,24,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,210,226,240,247,54,187,165,64,26,19,8,143,2,16,28,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,80,13,247,100,64,173,136,64,26,19,8,143,2,16,29,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,143,2,16,27,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,221,12,190,98,75,108,165,64,26,19,8,143,2,16,31,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,98,204,42,5,223,54,136,64,26,19,8,143,2,16,32,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,143,2,16,30,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,94,208,249,192,183,101,165,64,26,19,8,143,2,16,34,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,103,97,145,58,105,15,136,64,26,19,8,143,2,16,35,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,143,2,16,33,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,94,208,249,192,183,101,165,64,26,19,8,143,2,16,37,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,107,111,128,179,26,245,135,64,26,19,8,143,2,16,38,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,143,2,16,36,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,158,238,219,145,1,105,165,64,26,19,8,143,2,16,40,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,107,111,128,179,26,245,135,64,26,19,8,143,2,16,41,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,143,2,16,39,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,143,2,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,143,2,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,51,55,102,102,26,19,8,143,2,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,143,2,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,151,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,151,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,151,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,148,64,26,19,8,151,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,126,64,26,19,8,151,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,151,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,145,64,26,19,8,151,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,127,64,26,19,8,151,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,151,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,133,64,26,19,8,151,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,128,64,26,19,8,151,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,151,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,130,64,26,19,8,151,2,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,128,64,26,19,8,151,2,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,151,2,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,123,64,26,19,8,151,2,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,128,64,26,19,8,151,2,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,151,2,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,151,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,151,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,34,19,8,168,2,16,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,152,2,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,152,2,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,152,2,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,53,205,72,93,143,152,64,26,19,8,152,2,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,170,157,201,24,239,168,154,64,26,19,8,152,2,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,152,2,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,47,45,216,55,66,189,152,64,26,19,8,152,2,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,119,178,120,225,9,232,154,64,26,19,8,152,2,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,152,2,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,152,2,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,152,2,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,139,6,18,136,6,10,133,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,152,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,152,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,152,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,152,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,127,64,26,19,8,152,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,152,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,136,64,26,19,8,152,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,124,64,26,19,8,152,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,152,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,144,64,26,19,8,152,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,122,64,26,19,8,152,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,152,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,121,64,26,19,8,152,2,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,150,64,26,19,8,152,2,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,152,2,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,153,64,26,19,8,152,2,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,120,64,26,19,8,152,2,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,152,2,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,152,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,152,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,34,19,8,170,2,16,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,250,6,18,247,6,10,244,6,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,153,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,150,64,26,19,8,153,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,121,64,26,19,8,153,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,153,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,150,64,26,19,8,153,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,121,64,26,19,8,153,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,153,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,147,64,26,19,8,153,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,124,64,26,19,8,153,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,153,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,142,64,26,19,8,153,2,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,127,64,26,19,8,153,2,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,153,2,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,138,64,26,19,8,153,2,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,128,64,26,19,8,153,2,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,153,2,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,127,64,26,19,8,153,2,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,132,64,26,19,8,153,2,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,153,2,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,153,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,153,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,153,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,153,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,34,19,8,162,2,16,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,155,2,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,155,2,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,155,2,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,53,205,72,93,143,152,64,26,19,8,155,2,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,142,215,17,204,90,203,154,64,26,19,8,155,2,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,155,2,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,235,154,115,187,200,152,64,26,19,8,155,2,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,110,112,59,29,131,243,154,64,26,19,8,155,2,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,155,2,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,155,2,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,155,2,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,216,8,18,213,8,10,210,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,155,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,155,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,155,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,122,64,26,19,8,155,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,135,64,26,19,8,155,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,155,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,125,64,26,19,8,155,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,135,64,26,19,8,155,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,155,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,135,64,26,19,8,155,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,129,64,26,19,8,155,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,155,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,137,64,26,19,8,155,2,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,134,64,26,19,8,155,2,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,155,2,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,145,64,26,19,8,155,2,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,133,64,26,19,8,155,2,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,155,2,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,145,64,26,19,8,155,2,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,132,64,26,19,8,155,2,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,155,2,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,145,64,26,19,8,155,2,16,25,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,131,64,26,19,8,155,2,16,26,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,155,2,16,24,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,145,64,26,19,8,155,2,16,28,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,130,64,26,19,8,155,2,16,29,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,155,2,16,27,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,155,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,155,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,34,19,8,160,2,16,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,204,14,18,201,14,10,198,14,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,235,0,116,210,154,166,64,26,19,8,152,2,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,211,98,63,184,249,59,133,64,26,19,8,152,2,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,235,0,116,210,154,166,64,26,19,8,152,2,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,70,106,161,182,4,239,136,64,26,19,8,152,2,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,50,175,60,210,62,148,166,64,26,19,8,152,2,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,135,209,9,2,245,60,135,64,26,19,8,152,2,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,50,175,60,210,62,148,166,64,26,19,8,152,2,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,199,56,114,77,229,138,133,64,26,19,8,152,2,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,235,0,116,210,154,166,64,26,19,8,152,2,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,232,47,98,209,73,171,132,64,26,19,8,152,2,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,70,167,230,175,164,166,64,26,19,8,152,2,16,22,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,3,146,235,31,36,243,131,64,26,19,8,152,2,16,23,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,21,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,207,34,130,111,207,166,64,26,19,8,152,2,16,25,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,75,21,50,93,119,12,130,64,26,19,8,152,2,16,26,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,24,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,28,226,25,185,238,36,167,64,26,19,8,152,2,16,28,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,42,30,66,217,18,236,130,64,26,19,8,152,2,16,29,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,27,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,203,4,4,72,6,152,167,64,26,19,8,152,2,16,31,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,164,186,10,13,168,119,134,64,26,19,8,152,2,16,32,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,30,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,203,4,4,72,6,152,167,64,26,19,8,152,2,16,34,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,160,172,27,148,246,145,134,64,26,19,8,152,2,16,35,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,33,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,35,230,24,80,155,167,64,26,19,8,152,2,16,37,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,232,47,98,209,73,171,132,64,26,19,8,152,2,16,38,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,36,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,25,95,14,57,116,98,131,64,26,19,8,152,2,16,41,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,199,246,20,207,84,178,167,64,26,19,8,152,2,16,40,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,39,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,190,88,235,142,27,168,64,26,19,8,152,2,16,43,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,66,114,220,174,59,78,130,64,26,19,8,152,2,16,44,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,42,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,103,97,145,58,105,15,136,64,26,19,8,152,2,16,47,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,241,71,212,134,78,70,168,64,26,19,8,152,2,16,46,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,45,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,241,71,212,134,78,70,168,64,26,19,8,152,2,16,49,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,80,13,247,100,64,173,136,64,26,19,8,152,2,16,50,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,48,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,152,2,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,51,55,102,102,26,19,8,152,2,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,152,2,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,152,2,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,128,198,3,18,252,197,3,10,248,197,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,152,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,152,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,152,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,213,196,3,10,6,112,111,105,110,116,115,18,201,196,3,18,197,196,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,146,155,187,205,115,161,152,64,26,19,8,152,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,55,229,250,50,114,153,148,64,26,19,8,152,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,27,88,176,28,168,152,64,26,19,8,152,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,55,229,250,50,114,153,148,64,26,19,8,152,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,193,97,180,239,179,226,148,64,26,19,8,152,2,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,65,27,88,176,28,168,152,64,26,19,8,152,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,27,31,235,202,154,152,64,26,19,8,152,2,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,140,223,251,33,82,17,149,64,26,19,8,152,2,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,117,157,16,126,126,121,152,64,26,19,8,152,2,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,88,93,67,84,240,63,149,64,26,19,8,152,2,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,93,215,224,37,121,190,149,64,26,19,8,152,2,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,4,165,100,63,169,217,151,64,26,19,8,152,2,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,231,166,185,239,179,177,151,64,26,19,8,152,2,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,188,214,25,235,202,203,149,64,26,19,8,152,2,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,94,42,0,51,114,104,151,64,26,19,8,152,2,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,188,214,25,235,202,203,149,64,26,19,8,152,2,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,44,85,227,124,64,151,64,26,19,8,152,2,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,173,87,68,67,208,183,149,64,26,19,8,152,2,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,132,45,227,88,217,37,151,64,26,19,8,152,2,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,226,217,252,16,50,137,149,64,26,19,8,152,2,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,183,92,124,25,66,77,149,64,26,19,8,152,2,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,118,174,13,177,222,17,151,64,26,19,8,152,2,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,46,113,206,53,11,151,64,26,19,8,152,2,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,126,96,38,122,87,253,148,64,26,19,8,152,2,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,27,24,117,138,181,234,152,64,26,19,8,152,2,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,94,249,218,139,57,239,146,64,26,19,8,152,2,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,193,146,217,150,236,91,153,64,26,19,8,152,2,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,122,247,133,219,46,23,147,64,26,19,8,152,2,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,142,104,251,40,185,153,64,26,19,8,152,2,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,3,116,63,152,112,96,147,64,26,19,8,152,2,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,12,176,45,199,231,153,64,26,19,8,152,2,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,60,112,149,55,91,176,147,64,26,19,8,152,2,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,10,91,125,188,15,154,64,26,19,8,152,2,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,212,107,36,156,151,13,148,64,26,19,8,152,2,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,93,8,6,205,177,55,154,64,26,19,8,152,2,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,164,99,9,160,190,186,148,64,26,19,8,152,2,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,93,8,6,205,177,55,154,64,26,19,8,152,2,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,112,225,80,210,92,233,148,64,26,19,8,152,2,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,9,148,66,14,29,154,64,26,19,8,152,2,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,169,221,166,113,71,57,149,64,26,19,8,152,2,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,12,176,45,199,231,153,64,26,19,8,152,2,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,131,218,195,75,224,123,149,64,26,19,8,152,2,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,12,87,125,8,34,197,149,64,26,19,8,152,2,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,207,17,175,62,231,111,153,64,26,19,8,152,2,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,20,203,41,160,58,153,64,26,19,8,152,2,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,107,86,182,205,115,210,149,64,26,19,8,152,2,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,37,46,170,147,135,24,151,64,26,19,8,152,2,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,193,97,180,239,179,226,148,64,26,19,8,152,2,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,89,176,98,97,233,233,150,64,26,19,8,152,2,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,27,231,79,227,124,113,148,64,26,19,8,152,2,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,8,238,220,105,249,222,147,64,26,19,8,152,2,16,83,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,75,49,141,185,238,213,150,64,26,19,8,152,2,16,82,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,81,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,176,41,156,151,220,150,64,26,19,8,152,2,16,85,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,141,240,248,84,178,169,147,64,26,19,8,152,2,16,86,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,84,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,46,113,206,53,11,151,64,26,19,8,152,2,16,88,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,245,244,105,240,117,76,147,64,26,19,8,152,2,16,89,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,87,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,170,99,80,201,97,151,64,26,19,8,152,2,16,91,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,189,248,19,81,139,252,146,64,26,19,8,152,2,16,92,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,90,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,212,156,73,67,208,134,152,64,26,19,8,152,2,16,94,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,9,255,217,156,89,119,146,64,26,19,8,152,2,16,95,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,93,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,151,74,50,176,254,152,64,26,19,8,152,2,16,97,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,89,127,61,186,176,112,146,64,26,19,8,152,2,16,98,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,96,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,32,146,18,92,62,105,153,64,26,19,8,152,2,16,100,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,184,126,118,127,2,126,146,64,26,19,8,152,2,16,101,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,99,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,13,62,163,35,205,153,64,26,19,8,152,2,16,103,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,132,252,189,177,160,172,146,64,26,19,8,152,2,16,104,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,102,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,10,34,184,106,2,154,64,26,19,8,152,2,16,106,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,174,121,62,169,144,232,146,64,26,19,8,152,2,16,107,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,105,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,8,205,7,96,42,154,64,26,19,8,152,2,16,109,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,56,246,247,101,210,49,147,64,26,19,8,152,2,16,110,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,108,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,93,8,6,205,177,55,154,64,26,19,8,152,2,16,112,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,112,242,77,5,189,129,147,64,26,19,8,152,2,16,113,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,111,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,12,176,45,199,231,153,64,26,19,8,152,2,16,115,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,131,235,192,126,64,20,148,64,26,19,8,152,2,16,116,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,114,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,32,146,18,92,62,105,153,64,26,19,8,152,2,16,118,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,188,231,22,30,43,100,148,64,26,19,8,152,2,16,119,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,117,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,70,149,245,129,165,38,153,64,26,19,8,152,2,16,121,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,202,102,236,197,37,120,148,64,26,19,8,152,2,16,122,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,120,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,13,153,159,226,186,214,152,64,26,19,8,152,2,16,124,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,122,230,136,168,206,126,148,64,26,19,8,152,2,16,125,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,123,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,226,27,31,235,202,154,152,64,26,19,8,152,2,16,127,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,13,104,122,59,130,93,148,64,26,20,8,152,2,16,128,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,126,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,117,157,16,126,126,121,152,64,26,20,8,152,2,16,130,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,226,234,249,67,146,33,148,64,26,20,8,152,2,16,131,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,129,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,117,157,16,126,126,121,152,64,26,20,8,152,2,16,133,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,74,239,106,223,85,196,147,64,26,20,8,152,2,16,134,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,132,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,3,116,63,152,112,96,147,64,26,20,8,152,2,16,137,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,37,29,173,96,39,128,152,64,26,20,8,152,2,16,136,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,135,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,65,27,88,176,28,168,152,64,26,20,8,152,2,16,139,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,108,120,176,51,52,3,147,64,26,20,8,152,2,16,140,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,138,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,202,151,17,109,94,241,152,64,26,20,8,152,2,16,142,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,227,251,246,118,242,185,146,64,26,20,8,152,2,16,143,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,141,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,32,146,18,92,62,105,153,64,26,20,8,152,2,16,145,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,23,126,175,68,84,139,146,64,26,20,8,152,2,16,146,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,144,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,50,139,133,213,193,251,153,64,26,20,8,152,2,16,148,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,103,254,18,98,171,132,146,64,26,20,8,152,2,16,149,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,147,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,135,133,134,196,161,115,154,64,26,20,8,152,2,16,151,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,51,124,90,148,73,179,146,64,26,20,8,152,2,16,152,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,150,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,112,1,121,70,53,202,154,64,26,20,8,152,2,16,154,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,108,120,176,51,52,3,147,64,26,20,8,152,2,16,155,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,153,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,140,255,35,150,42,242,154,64,26,20,8,152,2,16,157,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,3,116,63,152,112,96,147,64,26,20,8,152,2,16,158,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,156,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,74,254,149,32,206,12,155,64,26,20,8,152,2,16,160,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,183,109,121,76,162,229,147,64,26,20,8,152,2,16,161,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,159,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,103,13,62,163,35,205,153,64,26,20,8,152,2,16,163,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,159,216,110,155,213,163,149,64,26,20,8,152,2,16,164,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,162,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,55,22,32,218,170,18,153,64,26,20,8,152,2,16,166,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,188,214,25,235,202,203,149,64,26,20,8,152,2,16,167,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,165,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,4,165,100,63,169,217,151,64,26,20,8,152,2,16,169,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,121,213,139,117,110,230,149,64,26,20,8,152,2,16,170,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,168,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,122,40,171,130,103,144,151,64,26,20,8,152,2,16,172,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,254,215,167,96,39,177,149,64,26,20,8,152,2,16,173,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,171,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,37,46,170,147,135,24,151,64,26,20,8,152,2,16,175,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,169,221,166,113,71,57,149,64,26,20,8,152,2,16,176,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,174,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,48,198,126,64,227,150,64,26,20,8,152,2,16,178,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,84,227,165,130,103,193,148,64,26,20,8,152,2,16,179,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,177,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,61,178,183,17,244,193,150,64,26,20,8,152,2,16,181,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,74,239,106,223,85,196,147,64,26,20,8,152,2,16,182,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,180,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,156,177,240,214,69,207,150,64,26,20,8,152,2,16,184,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,207,241,134,202,14,143,147,64,26,20,8,152,2,16,185,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,183,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,37,46,170,147,135,24,151,64,26,20,8,152,2,16,187,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,217,246,190,160,128,36,147,64,26,20,8,152,2,16,188,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,186,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,136,167,128,42,98,164,151,64,26,20,8,152,2,16,190,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,65,251,47,60,68,199,146,64,26,20,8,152,2,16,191,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,189,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,31,201,75,224,74,152,64,26,20,8,152,2,16,193,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,198,253,75,39,253,145,146,64,26,20,8,152,2,16,194,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,192,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,136,150,131,247,1,12,153,64,26,20,8,152,2,16,196,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,118,125,232,9,166,152,146,64,26,20,8,152,2,16,197,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,195,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,193,146,217,150,236,91,153,64,26,20,8,152,2,16,199,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,132,252,189,177,160,172,146,64,26,20,8,152,2,16,200,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,198,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,88,142,104,251,40,185,153,64,26,20,8,152,2,16,202,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,108,120,176,51,52,3,147,64,26,20,8,152,2,16,203,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,201,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,8,14,5,222,209,191,153,64,26,20,8,152,2,16,205,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,217,246,190,160,128,36,147,64,26,20,8,152,2,16,206,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,204,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,14,204,24,128,178,153,64,26,20,8,152,2,16,208,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,193,114,177,34,20,123,147,64,26,20,8,152,2,16,209,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,207,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,89,110,64,135,80,216,147,64,26,20,8,152,2,16,212,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,126,145,75,33,144,118,153,64,26,20,8,152,2,16,211,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,210,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,231,149,188,188,83,25,153,64,26,20,8,152,2,16,214,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,51,107,93,97,233,26,148,64,26,20,8,152,2,16,215,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,213,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,117,157,16,126,126,121,152,64,26,20,8,152,2,16,217,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,254,232,164,147,135,73,148,64,26,20,8,152,2,16,218,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,216,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,231,166,185,239,179,177,151,64,26,20,8,152,2,16,220,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,107,103,179,0,212,106,148,64,26,20,8,152,2,16,221,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,219,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,194,180,211,252,172,140,150,64,26,20,8,152,2,16,223,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,103,237,21,47,75,236,147,64,26,20,8,152,2,16,224,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,222,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,71,183,239,231,101,87,150,64,26,20,8,152,2,16,226,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,70,117,205,13,205,69,147,64,26,20,8,152,2,16,227,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,225,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,99,181,154,55,91,127,150,64,26,20,8,152,2,16,229,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,189,248,19,81,139,252,146,64,26,20,8,152,2,16,230,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,228,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,118,174,13,177,222,17,151,64,26,20,8,152,2,16,232,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,160,250,104,1,150,212,146,64,26,20,8,152,2,16,233,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,231,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,18,36,58,231,163,237,151,64,26,20,8,152,2,16,235,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,65,251,47,60,68,199,146,64,26,20,8,152,2,16,236,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,234,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,126,145,75,33,144,118,153,64,26,20,8,152,2,16,238,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,136,118,91,131,41,43,147,64,26,20,8,152,2,16,239,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,237,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,179,243,219,122,25,103,147,64,26,20,8,152,2,16,242,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,197,12,119,104,117,218,153,64,26,20,8,152,2,16,241,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,240,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,107,135,219,116,172,75,154,64,26,20,8,152,2,16,244,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,155,111,206,252,172,189,147,64,26,20,8,152,2,16,245,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,243,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,83,3,206,246,63,162,154,64,26,20,8,152,2,16,247,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,145,106,150,38,59,40,148,64,26,20,8,152,2,16,248,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,246,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,227,44,28,30,43,51,151,64,26,20,8,152,2,16,250,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,183,92,124,25,66,77,149,64,26,20,8,152,2,16,251,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,249,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,102,220,24,252,234,83,149,64,26,20,8,152,2,16,254,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,251,193,38,207,247,116,149,64,26,20,8,152,2,16,253,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,252,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,208,7,23,159,66,148,64,26,20,8,152,2,16,128,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,169,221,166,113,71,57,149,64,26,20,8,152,2,16,129,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,255,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,46,224,194,92,0,4,149,64,26,20,8,152,2,16,132,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,100,215,148,157,27,176,147,64,26,20,8,152,2,16,131,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,130,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,98,47,162,4,199,146,64,26,20,8,152,2,16,134,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,136,101,94,80,201,146,148,64,26,20,8,152,2,16,135,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,133,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,6,233,88,11,42,59,146,64,26,20,8,152,2,16,137,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,65,234,50,9,228,46,148,64,26,20,8,152,2,16,138,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,136,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,97,104,103,86,212,146,64,26,20,8,152,2,16,140,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,56,246,247,101,210,49,147,64,26,20,8,152,2,16,141,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,139,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,221,147,174,59,56,147,64,26,20,8,152,2,16,143,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,27,248,76,22,221,9,147,64,26,20,8,152,2,16,144,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,142,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,227,251,246,118,242,185,146,64,26,20,8,152,2,16,147,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,119,208,7,23,159,66,148,64,26,20,8,152,2,16,146,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,145,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,237,66,81,39,253,96,149,64,26,20,8,152,2,16,149,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,23,126,175,68,84,139,146,64,26,20,8,152,2,16,150,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,148,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,246,54,140,202,14,94,150,64,26,20,8,152,2,16,152,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,103,254,18,98,171,132,146,64,26,20,8,152,2,16,153,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,151,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,118,174,13,177,222,17,151,64,26,20,8,152,2,16,155,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,160,250,104,1,150,212,146,64,26,20,8,152,2,16,156,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,154,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,94,42,0,51,114,104,151,64,26,20,8,152,2,16,158,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,217,246,190,160,128,36,147,64,26,20,8,152,2,16,159,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,157,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,189,41,57,248,195,117,151,64,26,20,8,152,2,16,161,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,236,239,49,26,4,183,147,64,26,20,8,152,2,16,162,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,160,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,65,234,50,9,228,46,148,64,26,20,8,152,2,16,165,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,118,174,13,177,222,17,151,64,26,20,8,152,2,16,164,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,163,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,61,178,183,17,244,193,150,64,26,20,8,152,2,16,167,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,188,231,22,30,43,100,148,64,26,20,8,152,2,16,168,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,166,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,55,229,250,50,114,153,148,64,26,20,8,152,2,16,171,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,232,183,182,34,20,74,150,64,26,20,8,152,2,16,170,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,169,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,147,189,181,51,52,210,149,64,26,20,8,152,2,16,173,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,55,229,250,50,114,153,148,64,26,20,8,152,2,16,174,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,172,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,23,192,209,30,237,156,149,64,26,20,8,152,2,16,176,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,107,103,179,0,212,106,148,64,26,20,8,152,2,16,177,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,175,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,63,167,198,231,176,149,64,26,20,8,152,2,16,179,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,193,114,177,34,20,123,147,64,26,20,8,152,2,16,180,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,178,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,28,58,111,240,117,27,150,64,26,20,8,152,2,16,182,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,174,121,62,169,144,232,146,64,26,20,8,152,2,16,183,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,181,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,13,153,159,226,186,214,152,64,26,20,8,152,2,16,185,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,75,0,104,18,182,92,146,64,26,20,8,152,2,16,186,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,184,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,37,253,132,236,78,159,146,64,26,20,8,152,2,16,189,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,3,148,103,12,73,65,153,64,26,20,8,152,2,16,188,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,187,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,141,16,33,201,138,138,153,64,26,20,8,152,2,16,191,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,131,235,192,126,64,20,148,64,26,20,8,152,2,16,192,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,190,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,99,181,154,55,91,127,150,64,26,20,8,152,2,16,194,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,12,87,125,8,34,197,149,64,26,20,8,152,2,16,195,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,193,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,213,207,64,220,240,79,148,64,26,20,8,152,2,16,197,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,169,221,166,113,71,57,149,64,26,20,8,152,2,16,198,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,196,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,90,210,92,199,169,26,148,64,26,20,8,152,2,16,200,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,178,226,222,71,185,206,148,64,26,20,8,152,2,16,201,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,199,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,157,211,234,60,6,0,148,64,26,20,8,152,2,16,203,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,79,105,8,177,222,66,148,64,26,20,8,152,2,16,204,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,202,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,74,239,106,223,85,196,147,64,26,20,8,152,2,16,207,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,171,82,192,228,0,20,148,64,26,20,8,152,2,16,206,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,205,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,66,78,79,73,61,113,148,64,26,20,8,152,2,16,209,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,193,114,177,34,20,123,147,64,26,20,8,152,2,16,210,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,208,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,245,244,105,240,117,76,147,64,26,20,8,152,2,16,213,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,71,200,236,26,198,239,148,64,26,20,8,152,2,16,212,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,211,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,137,184,125,93,194,60,150,64,26,20,8,152,2,16,215,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,245,244,105,240,117,76,147,64,26,20,8,152,2,16,216,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,214,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,174,121,62,169,144,232,146,64,26,20,8,152,2,16,219,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,57,73,23,115,203,219,148,64,26,20,8,152,2,16,218,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,217,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,73,222,173,121,206,148,64,26,20,8,152,2,16,221,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,89,127,61,186,176,112,146,64,26,20,8,152,2,16,222,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,220,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,232,200,179,85,116,226,148,64,26,20,8,152,2,16,224,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,47,2,189,194,192,52,146,64,26,20,8,152,2,16,225,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,223,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,114,69,109,18,182,43,149,64,26,20,8,152,2,16,227,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,70,134,202,64,45,222,145,64,26,20,8,152,2,16,228,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,226,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,222,178,126,76,162,180,150,64,26,20,8,152,2,16,230,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,56,7,245,152,50,202,145,64,26,20,8,152,2,16,231,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,229,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,160,43,142,168,206,77,151,64,26,20,8,152,2,16,233,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,208,2,132,253,110,39,146,64,26,20,8,152,2,16,234,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,232,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,189,41,57,248,195,117,151,64,26,20,8,152,2,16,236,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,236,0,47,77,100,79,146,64,26,20,8,152,2,16,237,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,235,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,174,170,99,80,201,97,151,64,26,20,8,152,2,16,239,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,184,126,118,127,2,126,146,64,26,20,8,152,2,16,240,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,238,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,132,45,227,88,217,37,151,64,26,20,8,152,2,16,242,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,37,253,132,236,78,159,146,64,26,20,8,152,2,16,243,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,241,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,47,51,226,105,249,173,150,64,26,20,8,152,2,16,245,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,146,123,147,89,155,192,146,64,26,20,8,152,2,16,246,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,244,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,76,66,138,236,78,110,149,64,26,20,8,152,2,16,248,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,65,251,47,60,68,199,146,64,26,20,8,152,2,16,249,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,247,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,132,252,189,177,160,172,146,64,26,20,8,152,2,16,252,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,208,68,166,215,7,57,149,64,26,20,8,152,2,16,251,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,250,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,103,254,18,98,171,132,146,64,26,20,8,152,2,16,255,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,99,198,151,106,187,23,149,64,26,20,8,152,2,16,254,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,253,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,180,70,251,135,18,17,149,64,26,20,8,152,2,16,129,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,236,0,47,77,100,79,146,64,26,20,8,152,2,16,130,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,128,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,208,68,166,215,7,57,149,64,26,20,8,152,2,16,132,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,113,3,75,56,29,26,146,64,26,20,8,152,2,16,133,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,131,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,165,182,40,173,183,100,150,64,26,20,8,152,2,16,135,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,4,133,60,203,208,248,145,64,26,20,8,152,2,16,136,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,134,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,23,175,212,235,140,4,151,64,26,20,8,152,2,16,138,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,99,132,117,144,34,6,146,64,26,20,8,152,2,16,139,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,137,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,174,170,99,80,201,97,151,64,26,20,8,152,2,16,141,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,208,2,132,253,110,39,146,64,26,20,8,152,2,16,142,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,140,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,56,39,29,13,11,171,151,64,26,20,8,152,2,16,144,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,156,128,203,47,13,86,146,64,26,20,8,152,2,16,145,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,143,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,23,126,175,68,84,139,146,64,26,20,8,152,2,16,148,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,98,164,157,4,251,230,151,64,26,20,8,152,2,16,147,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,146,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,179,36,1,34,82,224,151,64,26,20,8,152,2,16,150,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,136,118,91,131,41,43,147,64,26,20,8,152,2,16,151,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,149,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,13,170,156,21,27,111,151,64,26,20,8,152,2,16,153,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,193,114,177,34,20,123,147,64,26,20,8,152,2,16,154,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,152,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,61,178,183,17,244,193,150,64,26,20,8,152,2,16,156,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,60,112,149,55,91,176,147,64,26,20,8,152,2,16,157,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,155,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,161,60,139,219,46,230,149,64,26,20,8,152,2,16,159,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,169,238,163,164,167,209,147,64,26,20,8,152,2,16,160,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,158,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,190,75,51,94,132,166,148,64,26,20,8,152,2,16,162,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,74,239,106,223,85,196,147,64,26,20,8,152,2,16,163,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,161,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,43,202,65,203,208,199,148,64,26,20,8,152,2,16,165,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,170,255,160,215,7,106,146,64,26,20,8,152,2,16,166,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,164,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,65,195,177,160,123,149,64,26,20,8,152,2,16,168,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,75,0,104,18,182,92,146,64,26,20,8,152,2,16,169,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,167,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,56,225,122,25,54,150,64,26,20,8,152,2,16,171,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,75,0,104,18,182,92,146,64,26,20,8,152,2,16,172,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,170,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,151,55,83,5,189,80,150,64,26,20,8,152,2,16,174,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,170,255,160,215,7,106,146,64,26,20,8,152,2,16,175,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,173,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,141,50,27,47,75,187,150,64,26,20,8,152,2,16,177,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,98,115,120,93,194,109,147,64,26,20,8,152,2,16,178,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,176,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,137,184,125,93,194,60,150,64,26,20,8,152,2,16,180,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,74,239,106,223,85,196,147,64,26,20,8,152,2,16,181,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,179,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,63,167,198,231,176,149,64,26,20,8,152,2,16,183,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,36,236,135,185,238,6,148,64,26,20,8,152,2,16,184,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,182,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,71,200,236,26,198,239,148,64,26,20,8,152,2,16,186,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,65,234,50,9,228,46,148,64,26,20,8,152,2,16,187,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,185,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,80,164,249,71,73,148,64,26,20,8,152,2,16,189,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,226,234,249,67,146,33,148,64,26,20,8,152,2,16,190,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,188,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,82,192,228,0,20,148,64,26,20,8,152,2,16,192,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,117,108,235,214,69,0,148,64,26,20,8,152,2,16,193,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,191,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,157,211,234,60,6,0,148,64,26,20,8,152,2,16,195,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,32,114,234,231,101,136,147,64,26,20,8,152,2,16,196,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,194,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,80,164,249,71,73,148,64,26,20,8,152,2,16,198,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,70,117,205,13,205,69,147,64,26,20,8,152,2,16,199,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,197,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,232,200,179,85,116,226,148,64,26,20,8,152,2,16,201,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,42,119,34,190,215,29,147,64,26,20,8,152,2,16,202,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,200,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,118,191,10,228,62,170,149,64,26,20,8,152,2,16,204,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,203,119,233,248,133,16,147,64,26,20,8,152,2,16,205,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,203,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,56,56,26,64,107,67,150,64,26,20,8,152,2,16,207,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,122,247,133,219,46,23,147,64,26,20,8,152,2,16,208,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,206,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,32,180,12,194,254,153,150,64,26,20,8,152,2,16,210,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,136,118,91,131,41,43,147,64,26,20,8,152,2,16,211,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,209,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,9,48,255,67,146,240,150,64,26,20,8,152,2,16,213,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,245,244,105,240,117,76,147,64,26,20,8,152,2,16,214,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,212,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,65,44,85,227,124,64,151,64,26,20,8,152,2,16,216,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,112,242,77,5,189,129,147,64,26,20,8,152,2,16,217,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,215,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,255,42,199,109,32,91,151,64,26,20,8,152,2,16,219,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,250,110,7,194,254,202,147,64,26,20,8,152,2,16,220,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,218,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,51,173,127,59,130,44,151,64,26,20,8,152,2,16,222,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,131,235,192,126,64,20,148,64,26,20,8,152,2,16,223,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,221,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,165,182,40,173,183,100,150,64,26,20,8,152,2,16,225,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,122,230,136,168,206,126,148,64,26,20,8,152,2,16,226,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,224,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,251,193,38,207,247,116,149,64,26,20,8,152,2,16,228,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,17,226,23,13,11,220,148,64,26,20,8,152,2,16,229,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,227,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,95,76,250,152,50,153,148,64,26,20,8,152,2,16,231,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,126,96,38,122,87,253,148,64,26,20,8,152,2,16,232,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,230,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,33,214,6,40,191,202,147,64,26,20,8,152,2,16,234,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,221,95,95,63,169,10,149,64,26,20,8,152,2,16,235,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,233,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,43,219,62,254,48,96,147,64,26,20,8,152,2,16,237,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,126,96,38,122,87,253,148,64,26,20,8,152,2,16,238,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,236,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,162,94,133,65,239,22,147,64,26,20,8,152,2,16,240,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,17,226,23,13,11,220,148,64,26,20,8,152,2,16,241,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,239,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,97,104,103,86,212,146,64,26,20,8,152,2,16,243,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,231,100,151,21,27,160,148,64,26,20,8,152,2,16,244,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,242,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,80,164,249,71,73,148,64,26,20,8,152,2,16,246,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,236,239,49,26,4,183,147,64,26,20,8,152,2,16,247,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,245,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,123,74,165,232,39,193,148,64,26,20,8,152,2,16,249,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,141,240,248,84,178,169,147,64,26,20,8,152,2,16,250,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,248,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,104,64,53,60,68,150,149,64,26,20,8,152,2,16,252,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,141,240,248,84,178,169,147,64,26,20,8,152,2,16,253,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,251,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,132,62,224,139,57,190,149,64,26,20,8,152,2,16,255,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,236,239,49,26,4,183,147,64,26,20,8,152,2,16,128,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,254,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,104,64,53,60,68,150,149,64,26,20,8,152,2,16,130,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,183,109,121,76,162,229,147,64,26,20,8,152,2,16,131,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,129,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,195,123,127,2,77,149,64,26,20,8,152,2,16,133,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,117,108,235,214,69,0,148,64,26,20,8,152,2,16,134,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,132,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,190,75,51,94,132,166,148,64,26,20,8,152,2,16,136,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,145,106,150,38,59,40,148,64,26,20,8,152,2,16,137,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,135,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,212,120,178,98,229,147,64,26,20,8,152,2,16,139,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,240,105,207,235,140,53,148,64,26,20,8,152,2,16,140,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,138,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,97,104,103,86,212,146,64,26,20,8,152,2,16,142,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,131,235,192,126,64,20,148,64,26,20,8,152,2,16,143,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,141,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,62,229,174,170,20,139,146,64,26,20,8,152,2,16,145,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,169,238,163,164,167,209,147,64,26,20,8,152,2,16,146,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,144,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,115,103,103,120,118,92,146,64,26,20,8,152,2,16,148,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,193,114,177,34,20,123,147,64,26,20,8,152,2,16,149,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,147,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,100,232,145,208,123,72,146,64,26,20,8,152,2,16,151,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,108,120,176,51,52,3,147,64,26,20,8,152,2,16,152,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,150,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,238,100,75,141,189,145,146,64,26,20,8,152,2,16,154,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,255,249,161,198,231,225,146,64,26,20,8,152,2,16,155,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,153,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,219,5,57,223,82,147,64,26,20,8,152,2,16,157,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,132,252,189,177,160,172,146,64,26,20,8,152,2,16,158,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,156,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,161,77,136,14,143,126,148,64,26,20,8,152,2,16,160,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,37,253,132,236,78,159,146,64,26,20,8,152,2,16,161,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,159,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,123,57,168,181,199,40,150,64,26,20,8,152,2,16,163,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,174,121,62,169,144,232,146,64,26,20,8,152,2,16,164,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,162,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,245,244,105,240,117,76,147,64,26,20,8,152,2,16,167,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,156,177,240,214,69,207,150,64,26,20,8,152,2,16,166,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,165,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,80,171,42,139,119,84,151,64,26,20,8,152,2,16,169,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,74,239,106,223,85,196,147,64,26,20,8,152,2,16,170,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,168,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,65,44,85,227,124,64,151,64,26,20,8,152,2,16,172,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,103,237,21,47,75,236,147,64,26,20,8,152,2,16,173,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,171,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,250,176,41,156,151,220,150,64,26,20,8,152,2,16,175,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,79,105,8,177,222,66,148,64,26,20,8,152,2,16,176,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,174,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,216,229,193,109,32,140,148,64,26,20,8,152,2,16,179,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,0,60,196,160,128,243,149,64,26,20,8,152,2,16,178,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,177,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,180,70,251,135,18,17,149,64,26,20,8,152,2,16,181,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,245,227,108,189,21,180,148,64,26,20,8,152,2,16,182,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,180,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,10,82,249,169,82,33,148,64,26,20,8,152,2,16,184,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,69,100,208,218,108,173,148,64,26,20,8,152,2,16,185,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,183,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,109,220,204,115,141,69,147,64,26,20,8,152,2,16,187,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,216,229,193,109,32,140,148,64,26,20,8,152,2,16,188,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,186,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,225,4,74,255,218,146,64,26,20,8,152,2,16,190,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,13,104,122,59,130,93,148,64,26,20,8,152,2,16,191,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,189,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,77,100,132,82,15,159,146,64,26,20,8,152,2,16,193,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,65,234,50,9,228,46,148,64,26,20,8,152,2,16,194,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,192,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,34,231,3,91,31,99,146,64,26,20,8,152,2,16,196,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,22,109,178,17,244,242,147,64,26,20,8,152,2,16,197,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,195,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,195,231,202,149,205,85,146,64,26,20,8,152,2,16,199,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,155,111,206,252,172,189,147,64,26,20,8,152,2,16,200,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,198,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,127,113,35,173,183,149,147,64,26,20,8,152,2,16,203,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,185,226,146,191,91,192,146,64,26,20,8,152,2,16,202,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,201,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,112,242,77,5,189,129,147,64,26,20,8,152,2,16,206,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,218,90,219,224,217,102,147,64,26,20,8,152,2,16,205,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,204,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,71,194,194,192,3,149,64,26,20,8,152,2,16,208,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,32,114,234,231,101,136,147,64,26,20,8,152,2,16,209,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,207,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,251,193,38,207,247,116,149,64,26,20,8,152,2,16,211,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,221,112,92,114,9,163,147,64,26,20,8,152,2,16,212,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,210,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,80,188,39,190,215,236,149,64,26,20,8,152,2,16,214,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,93,232,221,88,217,86,148,64,26,20,8,152,2,16,215,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,213,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,208,68,166,215,7,57,149,64,26,20,8,152,2,16,217,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,136,101,94,80,201,146,148,64,26,20,8,152,2,16,218,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,216,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,80,164,249,71,73,148,64,26,20,8,152,2,16,220,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,69,100,208,218,108,173,148,64,26,20,8,152,2,16,221,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,219,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,190,92,48,145,228,62,147,64,26,20,8,152,2,16,223,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,150,228,51,248,195,166,148,64,26,20,8,152,2,16,224,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,222,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,100,232,145,208,123,72,146,64,26,20,8,152,2,16,226,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,188,231,22,30,43,100,148,64,26,20,8,152,2,16,227,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,225,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,243,239,229,145,166,168,145,64,26,20,8,152,2,16,229,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,103,237,21,47,75,236,147,64,26,20,8,152,2,16,230,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,228,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,116,243,15,19,82,145,64,26,20,8,152,2,16,232,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,193,114,177,34,20,123,147,64,26,20,8,152,2,16,233,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,231,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,77,117,129,133,111,55,145,64,26,20,8,152,2,16,235,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,13,121,119,110,226,245,146,64,26,20,8,152,2,16,236,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,234,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,222,129,89,165,105,59,146,64,26,20,8,152,2,16,239,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,172,116,186,74,193,68,145,64,26,20,8,152,2,16,238,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,237,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,175,187,96,131,41,250,149,64,26,20,8,152,2,16,241,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,250,127,4,245,94,99,146,64,26,20,8,152,2,16,242,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,240,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,61,178,183,17,244,193,150,64,26,20,8,152,2,16,244,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,122,247,133,219,46,23,147,64,26,20,8,152,2,16,245,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,243,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,146,172,184,0,212,57,151,64,26,20,8,152,2,16,247,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,74,239,106,223,85,196,147,64,26,20,8,152,2,16,248,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,246,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,132,45,227,88,217,37,151,64,26,20,8,152,2,16,250,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,212,107,36,156,151,13,148,64,26,20,8,152,2,16,251,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,249,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,250,176,41,156,151,220,150,64,26,20,8,152,2,16,253,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,122,230,136,168,206,126,148,64,26,20,8,152,2,16,254,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,252,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,14,187,153,72,123,7,150,64,26,20,8,152,2,16,128,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,98,98,123,42,98,213,148,64,26,20,8,152,2,16,129,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,255,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,28,75,108,35,214,179,148,64,26,20,8,152,2,16,131,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,221,95,95,63,169,10,149,64,26,20,8,152,2,16,132,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,130,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,126,96,38,122,87,253,148,64,26,20,8,152,2,16,135,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,209,85,163,10,104,209,147,64,26,20,8,152,2,16,134,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,133,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,178,226,222,71,185,206,148,64,26,20,8,152,2,16,138,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,10,99,246,220,178,185,146,64,26,20,8,152,2,16,137,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,136,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,104,245,237,210,65,146,64,26,20,8,152,2,16,140,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,202,102,236,197,37,120,148,64,26,20,8,152,2,16,141,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,139,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,238,144,225,155,208,145,64,26,20,8,152,2,16,143,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,212,107,36,156,151,13,148,64,26,20,8,152,2,16,144,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,142,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,82,239,30,87,248,181,145,64,26,20,8,152,2,16,146,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,89,110,64,135,80,216,147,64,26,20,8,152,2,16,147,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,145,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,53,241,115,7,3,142,145,64,26,20,8,152,2,16,149,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,84,244,162,181,199,89,147,64,26,20,8,152,2,16,150,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,148,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,82,239,30,87,248,181,145,64,26,20,8,152,2,16,152,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,108,120,176,51,52,3,147,64,26,20,8,152,2,16,153,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,151,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,226,146,191,91,192,146,64,26,20,8,152,2,16,155,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,132,252,189,177,160,172,146,64,26,20,8,152,2,16,156,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,154,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,81,222,33,36,152,29,147,64,26,20,8,152,2,16,158,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,132,252,189,177,160,172,146,64,26,20,8,152,2,16,159,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,157,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,62,212,177,119,180,242,147,64,26,20,8,152,2,16,161,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,241,122,204,30,237,205,146,64,26,20,8,152,2,16,162,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,160,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,190,75,51,94,132,166,148,64,26,20,8,152,2,16,164,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,108,120,176,51,52,3,147,64,26,20,8,152,2,16,165,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,163,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,166,199,37,224,23,253,148,64,26,20,8,152,2,16,167,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,231,117,148,72,123,56,147,64,26,20,8,152,2,16,168,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,166,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,196,66,186,176,63,149,64,26,20,8,152,2,16,170,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,193,114,177,34,20,123,147,64,26,20,8,152,2,16,171,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,169,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,65,195,177,160,123,149,64,26,20,8,152,2,16,173,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,89,110,64,135,80,216,147,64,26,20,8,152,2,16,174,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,172,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,9,65,252,118,242,136,149,64,26,20,8,152,2,16,176,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,240,105,207,235,140,53,148,64,26,20,8,152,2,16,177,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,175,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,208,68,166,215,7,57,149,64,26,20,8,152,2,16,179,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,27,231,79,227,124,113,148,64,26,20,8,152,2,16,180,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,178,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,95,76,250,152,50,153,148,64,26,20,8,152,2,16,182,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,231,100,151,21,27,160,148,64,26,20,8,152,2,16,183,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,181,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,180,87,248,186,114,169,147,64,26,20,8,152,2,16,185,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,245,227,108,189,21,180,148,64,26,20,8,152,2,16,186,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,184,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,62,229,174,170,20,139,146,64,26,20,8,152,2,16,188,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,41,102,37,139,119,133,148,64,26,20,8,152,2,16,189,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,187,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,110,237,201,166,237,221,145,64,26,20,8,152,2,16,191,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,131,235,192,126,64,20,148,64,26,20,8,152,2,16,192,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,190,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,134,113,215,36,90,135,145,64,26,20,8,152,2,16,194,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,112,242,77,5,189,129,147,64,26,20,8,152,2,16,195,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,193,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,91,244,86,45,106,75,145,64,26,20,8,152,2,16,197,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,241,122,204,30,237,205,146,64,26,20,8,152,2,16,198,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,196,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,252,244,29,104,24,62,145,64,26,20,8,152,2,16,200,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,113,3,75,56,29,26,146,64,26,20,8,152,2,16,201,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,199,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,39,114,158,95,8,122,145,64,26,20,8,152,2,16,203,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,14,138,116,161,66,142,145,64,26,20,8,152,2,16,204,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,202,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,233,31,70,216,45,146,64,26,20,8,152,2,16,206,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,23,143,172,119,180,35,145,64,26,20,8,152,2,16,207,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,205,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,156,145,200,98,109,238,144,64,26,20,8,152,2,16,210,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,53,224,118,212,162,245,146,64,26,20,8,152,2,16,209,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,208,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,156,145,200,98,109,238,144,64,26,20,8,152,2,16,213,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,100,215,148,157,27,176,147,64,26,20,8,152,2,16,212,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,211,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,147,206,178,102,148,106,148,64,26,20,8,152,2,16,215,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,9,16,215,207,185,15,145,64,26,20,8,152,2,16,216,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,214,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,10,159,249,71,122,145,64,26,20,8,152,2,16,219,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,85,71,194,194,192,3,149,64,26,20,8,152,2,16,218,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,217,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,32,131,231,26,198,32,146,64,26,20,8,152,2,16,222,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,156,194,237,9,166,103,149,64,26,20,8,152,2,16,221,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,220,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,192,152,89,155,143,149,64,26,20,8,152,2,16,224,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,165,116,6,211,30,83,147,64,26,20,8,152,2,16,225,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,223,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,74,239,106,223,85,196,147,64,26,20,8,152,2,16,228,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,76,66,138,236,78,110,149,64,26,20,8,152,2,16,227,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,226,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,246,71,137,253,110,246,148,64,26,20,8,152,2,16,230,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,150,228,51,248,195,166,148,64,26,20,8,152,2,16,231,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,229,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,208,7,23,159,66,148,64,26,20,8,152,2,16,233,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,197,219,81,193,60,97,149,64,26,20,8,152,2,16,234,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,232,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,228,95,19,183,75,252,146,64,26,20,8,152,2,16,236,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,150,211,54,197,99,14,150,64,26,20,8,152,2,16,237,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,235,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,157,228,231,111,102,152,146,64,26,20,8,152,2,16,239,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,150,211,54,197,99,14,150,64,26,20,8,152,2,16,240,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,238,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,205,253,255,158,159,131,144,64,26,20,8,152,2,16,242,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,179,243,219,122,25,103,147,64,26,20,8,152,2,16,243,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,241,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,124,14,12,236,164,144,64,26,20,8,152,2,16,245,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,89,127,61,186,176,112,146,64,26,20,8,152,2,16,246,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,244,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,49,119,214,53,122,15,145,64,26,20,8,152,2,16,248,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,203,136,230,43,230,168,145,64,26,20,8,152,2,16,249,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,247,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,107,17,217,139,12,146,64,26,20,8,152,2,16,251,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,75,17,101,69,22,245,144,64,26,20,8,152,2,16,252,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,250,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,48,102,217,2,26,119,146,64,26,20,8,152,2,16,254,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,61,146,143,157,27,225,144,64,26,20,8,152,2,16,255,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,253,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,219,5,57,223,82,147,64,26,20,8,152,2,16,129,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,222,146,86,216,201,211,144,64,26,20,8,152,2,16,130,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,128,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,209,149,140,251,39,148,64,26,20,8,152,2,16,132,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,90,144,58,237,16,9,145,64,26,20,8,152,2,16,133,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,131,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,195,123,127,2,77,149,64,26,20,8,152,2,16,135,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,130,32,224,23,46,146,64,26,20,8,152,2,16,136,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,134,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,192,152,89,155,143,149,64,26,20,8,152,2,16,138,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,255,249,161,198,231,225,146,64,26,20,8,152,2,16,139,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,137,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,23,192,209,30,237,156,149,64,26,20,8,152,2,16,141,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,113,35,173,183,149,147,64,26,20,8,152,2,16,142,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,140,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,61,195,180,68,84,90,149,64,26,20,8,152,2,16,144,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,216,229,193,109,32,140,148,64,26,20,8,152,2,16,145,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,143,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,69,100,208,218,108,173,148,64,26,20,8,152,2,16,148,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,33,197,9,245,94,50,149,64,26,20,8,152,2,16,147,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,146,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,52,207,121,161,66,93,148,64,26,20,8,152,2,16,150,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,140,223,251,33,82,17,149,64,26,20,8,152,2,16,151,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,149,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,71,217,233,77,38,136,147,64,26,20,8,152,2,16,153,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,235,222,52,231,163,30,149,64,26,20,8,152,2,16,154,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,152,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,109,220,204,115,141,69,147,64,26,20,8,152,2,16,156,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,178,226,222,71,185,206,148,64,26,20,8,152,2,16,157,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,155,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,228,95,19,183,75,252,146,64,26,20,8,152,2,16,159,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,160,233,107,206,53,60,148,64,26,20,8,152,2,16,160,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,158,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,133,96,218,241,249,238,146,64,26,20,8,152,2,16,162,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,46,241,191,143,96,156,147,64,26,20,8,152,2,16,163,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,161,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,67,95,76,124,157,9,147,64,26,20,8,152,2,16,165,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,27,248,76,22,221,9,147,64,26,20,8,152,2,16,166,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,164,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,43,219,62,254,48,96,147,64,26,20,8,152,2,16,168,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,198,253,75,39,253,145,146,64,26,20,8,152,2,16,169,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,167,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,237,83,78,90,93,249,147,64,26,20,8,152,2,16,171,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,130,32,224,23,46,146,64,26,20,8,152,2,16,172,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,170,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,175,204,93,182,137,146,148,64,26,20,8,152,2,16,174,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,85,5,160,232,39,242,145,64,26,20,8,152,2,16,175,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,173,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,180,70,251,135,18,17,149,64,26,20,8,152,2,16,177,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,85,5,160,232,39,242,145,64,26,20,8,152,2,16,178,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,176,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,251,193,38,207,247,116,149,64,26,20,8,152,2,16,180,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,179,4,217,173,121,255,145,64,26,20,8,152,2,16,181,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,179,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,94,59,253,101,210,0,150,64,26,20,8,152,2,16,183,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,250,127,4,245,94,99,146,64,26,20,8,152,2,16,184,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,182,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,132,252,189,177,160,172,146,64,26,20,8,152,2,16,187,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,203,185,11,211,30,34,150,64,26,20,8,152,2,16,186,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,185,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,14,187,153,72,123,7,150,64,26,20,8,152,2,16,189,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,189,248,19,81,139,252,146,64,26,20,8,152,2,16,190,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,188,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,132,62,224,139,57,190,149,64,26,20,8,152,2,16,192,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,245,244,105,240,117,76,147,64,26,20,8,152,2,16,193,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,191,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,112,242,77,5,189,129,147,64,26,20,8,152,2,16,196,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,142,67,24,98,171,83,149,64,26,20,8,152,2,16,195,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,194,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,212,120,178,98,229,147,64,26,20,8,152,2,16,198,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,169,238,163,164,167,209,147,64,26,20,8,152,2,16,199,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,197,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,90,219,224,217,102,147,64,26,20,8,152,2,16,201,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,221,112,92,114,9,163,147,64,26,20,8,152,2,16,202,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,200,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,162,94,133,65,239,22,147,64,26,20,8,152,2,16,204,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,136,118,91,131,41,43,147,64,26,20,8,152,2,16,205,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,203,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,250,127,4,245,94,99,146,64,26,20,8,152,2,16,208,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,242,222,232,94,70,16,147,64,26,20,8,152,2,16,207,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,206,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,246,5,103,35,214,228,145,64,26,20,8,152,2,16,211,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,204,219,5,57,223,82,147,64,26,20,8,152,2,16,210,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,209,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,61,195,180,68,84,90,149,64,26,20,8,152,2,16,213,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,94,10,216,190,153,135,145,64,26,20,8,152,2,16,214,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,212,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,132,62,224,139,57,190,149,64,26,20,8,152,2,16,216,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,203,136,230,43,230,168,145,64,26,20,8,152,2,16,217,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,215,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,241,188,238,248,133,223,149,64,26,20,8,152,2,16,219,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,56,7,245,152,50,202,145,64,26,20,8,152,2,16,220,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,218,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,14,187,153,72,123,7,150,64,26,20,8,152,2,16,222,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,194,131,174,85,116,19,146,64,26,20,8,152,2,16,223,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,221,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,80,188,39,190,215,236,149,64,26,20,8,152,2,16,225,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,250,127,4,245,94,99,146,64,26,20,8,152,2,16,226,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,224,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,28,75,108,35,214,179,148,64,26,20,8,152,2,16,228,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,70,117,205,13,205,69,147,64,26,20,8,152,2,16,229,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,227,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,104,81,50,111,164,46,148,64,26,20,8,152,2,16,231,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,179,243,219,122,25,103,147,64,26,20,8,152,2,16,232,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,230,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,71,217,233,77,38,136,147,64,26,20,8,152,2,16,234,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,98,115,120,93,194,109,147,64,26,20,8,152,2,16,235,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,233,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,43,219,62,254,48,96,147,64,26,20,8,152,2,16,237,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,70,117,205,13,205,69,147,64,26,20,8,152,2,16,238,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,236,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,95,93,247,203,146,49,147,64,26,20,8,152,2,16,240,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,174,121,62,169,144,232,146,64,26,20,8,152,2,16,241,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,239,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,176,221,90,233,233,42,147,64,26,20,8,152,2,16,243,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,184,126,118,127,2,126,146,64,26,20,8,152,2,16,244,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,242,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,152,72,80,56,29,233,148,64,26,20,8,152,2,16,246,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,161,11,102,52,246,108,145,64,26,20,8,152,2,16,247,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,245,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,76,66,138,236,78,110,149,64,26,20,8,152,2,16,249,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,241,139,201,81,77,102,145,64,26,20,8,152,2,16,250,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,248,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,227,61,25,81,139,203,149,64,26,20,8,152,2,16,252,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,161,11,102,52,246,108,145,64,26,20,8,152,2,16,253,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,251,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,14,187,153,72,123,7,150,64,26,20,8,152,2,16,255,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,14,138,116,161,66,142,145,64,26,20,8,152,2,16,128,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,254,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,56,56,26,64,107,67,150,64,26,20,8,152,2,16,130,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,137,135,88,182,137,195,145,64,26,20,8,152,2,16,131,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,129,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,175,187,96,131,41,250,149,64,26,20,8,152,2,16,133,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,241,122,204,30,237,205,146,64,26,20,8,152,2,16,134,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,132,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,208,68,166,215,7,57,149,64,26,20,8,152,2,16,136,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,245,244,105,240,117,76,147,64,26,20,8,152,2,16,137,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,135,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,137,201,122,144,34,213,148,64,26,20,8,152,2,16,139,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,179,243,219,122,25,103,147,64,26,20,8,152,2,16,140,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,138,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,205,235,43,230,119,148,64,26,20,8,152,2,16,142,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,3,116,63,152,112,96,147,64,26,20,8,152,2,16,143,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,141,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,104,81,50,111,164,46,148,64,26,20,8,152,2,16,145,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,56,246,247,101,210,49,147,64,26,20,8,152,2,16,146,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,144,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,77,193,211,224,139,148,64,26,20,8,152,2,16,148,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,14,138,116,161,66,142,145,64,26,20,8,152,2,16,149,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,147,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,227,12,244,169,82,82,145,64,26,20,8,152,2,16,152,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,71,200,236,26,198,239,148,64,26,20,8,152,2,16,151,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,150,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,9,65,252,118,242,136,149,64,26,20,8,152,2,16,154,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,199,14,73,90,93,42,145,64,26,20,8,152,2,16,155,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,153,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,109,186,210,13,205,20,150,64,26,20,8,152,2,16,157,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,104,15,16,149,11,29,145,64,26,20,8,152,2,16,158,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,156,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,54,197,143,96,107,150,64,26,20,8,152,2,16,160,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,132,13,187,228,0,69,145,64,26,20,8,152,2,16,161,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,159,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,250,176,41,156,151,220,150,64,26,20,8,152,2,16,163,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,179,4,217,173,121,255,145,64,26,20,8,152,2,16,164,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,162,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,89,176,98,97,233,233,150,64,26,20,8,152,2,16,166,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,9,255,217,156,89,119,146,64,26,20,8,152,2,16,167,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,165,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,208,51,169,164,167,160,150,64,26,20,8,152,2,16,169,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,245,244,105,240,117,76,147,64,26,20,8,152,2,16,170,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,168,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,203,185,11,211,30,34,150,64,26,20,8,152,2,16,172,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,221,112,92,114,9,163,147,64,26,20,8,152,2,16,173,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,171,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,137,201,122,144,34,213,148,64,26,20,8,152,2,16,175,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,8,238,220,105,249,222,147,64,26,20,8,152,2,16,176,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,174,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,109,203,207,64,45,173,148,64,26,20,8,152,2,16,178,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,155,111,206,252,172,189,147,64,26,20,8,152,2,16,179,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,177,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,205,235,43,230,119,148,64,26,20,8,152,2,16,181,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,179,243,219,122,25,103,147,64,26,20,8,152,2,16,182,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,180,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,228,78,22,132,235,99,148,64,26,20,8,152,2,16,184,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,189,248,19,81,139,252,146,64,26,20,8,152,2,16,185,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,183,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,228,78,22,132,235,99,148,64,26,20,8,152,2,16,187,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,194,131,174,85,116,19,146,64,26,20,8,152,2,16,188,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,186,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,196,66,186,176,63,149,64,26,20,8,152,2,16,190,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,255,10,159,249,71,122,145,64,26,20,8,152,2,16,191,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,189,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,161,11,102,52,246,108,145,64,26,20,8,152,2,16,194,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,14,187,153,72,123,7,150,64,26,20,8,152,2,16,193,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,192,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,56,56,26,64,107,67,150,64,26,20,8,152,2,16,196,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,94,10,216,190,153,135,145,64,26,20,8,152,2,16,197,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,195,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,180,53,254,84,178,120,150,64,26,20,8,152,2,16,199,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,42,136,31,241,55,182,145,64,26,20,8,152,2,16,200,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,198,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,32,180,12,194,254,153,150,64,26,20,8,152,2,16,202,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,194,131,174,85,116,19,146,64,26,20,8,152,2,16,203,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,201,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,192,152,89,155,143,149,64,26,20,8,152,2,16,205,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,56,246,247,101,210,49,147,64,26,20,8,152,2,16,206,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,204,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,33,197,9,245,94,50,149,64,26,20,8,152,2,16,208,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,165,116,6,211,30,83,147,64,26,20,8,152,2,16,209,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,207,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,57,73,23,115,203,219,148,64,26,20,8,152,2,16,211,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,3,116,63,152,112,96,147,64,26,20,8,152,2,16,212,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,210,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,95,76,250,152,50,153,148,64,26,20,8,152,2,16,214,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,84,244,162,181,199,89,147,64,26,20,8,152,2,16,215,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,213,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,161,77,136,14,143,126,148,64,26,20,8,152,2,16,217,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,151,245,48,43,36,63,147,64,26,20,8,152,2,16,218,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,216,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,81,205,36,241,55,133,148,64,26,20,8,152,2,16,220,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,203,119,233,248,133,16,147,64,26,20,8,152,2,16,221,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,219,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,192,152,89,155,143,149,64,26,20,8,152,2,16,223,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,89,127,61,186,176,112,146,64,26,20,8,152,2,16,224,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,222,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,47,51,226,105,249,173,150,64,26,20,8,152,2,16,226,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,184,126,118,127,2,126,146,64,26,20,8,152,2,16,227,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,225,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,161,60,139,219,46,230,149,64,26,20,8,152,2,16,229,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,221,112,92,114,9,163,147,64,26,20,8,152,2,16,230,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,228,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,76,66,138,236,78,110,149,64,26,20,8,152,2,16,232,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,8,238,220,105,249,222,147,64,26,20,8,152,2,16,233,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,231,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,246,71,137,253,110,246,148,64,26,20,8,152,2,16,235,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,117,108,235,214,69,0,148,64,26,20,8,152,2,16,236,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,234,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,205,235,43,230,119,148,64,26,20,8,152,2,16,238,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,131,235,192,126,64,20,148,64,26,20,8,152,2,16,239,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,237,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,52,207,121,161,66,93,148,64,26,20,8,152,2,16,241,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,212,107,36,156,151,13,148,64,26,20,8,152,2,16,242,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,240,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,208,7,23,159,66,148,64,26,20,8,152,2,16,244,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,113,35,173,183,149,147,64,26,20,8,152,2,16,245,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,243,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,194,197,208,47,13,37,149,64,26,20,8,152,2,16,247,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,18,243,20,64,107,116,147,64,26,20,8,152,2,16,248,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,246,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,208,68,166,215,7,57,149,64,26,20,8,152,2,16,250,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,18,243,20,64,107,116,147,64,26,20,8,152,2,16,251,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,249,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,76,66,138,236,78,110,149,64,26,20,8,152,2,16,253,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,207,241,134,202,14,143,147,64,26,20,8,152,2,16,254,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,252,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,47,68,223,156,89,70,149,64,26,20,8,152,2,16,128,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,89,110,64,135,80,216,147,64,26,20,8,152,2,16,129,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,255,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,43,202,65,203,208,199,148,64,26,20,8,152,2,16,131,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,226,234,249,67,146,33,148,64,26,20,8,152,2,16,132,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,130,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,77,193,211,224,139,148,64,26,20,8,152,2,16,134,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,160,233,107,206,53,60,148,64,26,20,8,152,2,16,135,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,133,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,82,192,228,0,20,148,64,26,20,8,152,2,16,137,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,174,104,65,118,48,80,148,64,26,20,8,152,2,16,138,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,136,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,169,238,163,164,167,209,147,64,26,20,8,152,2,16,141,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,90,210,92,199,169,26,148,64,26,20,8,152,2,16,140,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,139,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,142,67,24,98,171,83,149,64,26,20,8,152,2,16,143,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,46,241,191,143,96,156,147,64,26,20,8,152,2,16,144,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,142,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,9,65,252,118,242,136,149,64,26,20,8,152,2,16,146,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,141,240,248,84,178,169,147,64,26,20,8,152,2,16,147,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,145,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,118,191,10,228,62,170,149,64,26,20,8,152,2,16,149,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,169,238,163,164,167,209,147,64,26,20,8,152,2,16,150,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,148,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,118,191,10,228,62,170,149,64,26,20,8,152,2,16,152,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,212,107,36,156,151,13,148,64,26,20,8,152,2,16,153,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,151,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,65,195,177,160,123,149,64,26,20,8,152,2,16,155,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,188,231,22,30,43,100,148,64,26,20,8,152,2,16,156,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,154,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,155,94,209,201,76,37,149,64,26,20,8,152,2,16,159,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,95,93,247,203,146,49,147,64,26,20,8,152,2,16,158,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,157,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,162,94,133,65,239,22,147,64,26,20,8,152,2,16,161,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,207,224,137,151,174,246,148,64,26,20,8,152,2,16,162,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,160,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,164,99,9,160,190,186,148,64,26,20,8,152,2,16,165,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,162,94,133,65,239,22,147,64,26,20,8,152,2,16,164,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,163,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,29,92,105,86,54,76,147,64,26,20,8,152,2,16,167,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,188,231,22,30,43,100,148,64,26,20,8,152,2,16,168,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,166,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,5,216,91,216,201,162,147,64,26,20,8,152,2,16,170,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,51,107,93,97,233,26,148,64,26,20,8,152,2,16,171,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,169,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,232,200,179,85,116,226,148,64,26,20,8,152,2,16,173,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,169,238,163,164,167,209,147,64,26,20,8,152,2,16,174,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,172,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,166,199,37,224,23,253,148,64,26,20,8,152,2,16,176,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,8,238,220,105,249,222,147,64,26,20,8,152,2,16,177,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,175,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,57,73,23,115,203,219,148,64,26,20,8,152,2,16,179,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,240,105,207,235,140,53,148,64,26,20,8,152,2,16,180,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,178,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,14,204,150,123,219,159,148,64,26,20,8,152,2,16,182,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,188,231,22,30,43,100,148,64,26,20,8,152,2,16,183,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,181,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,150,228,51,248,195,166,148,64,26,20,8,152,2,16,186,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,124,91,162,27,136,89,147,64,26,20,8,152,2,16,185,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,184,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,152,89,77,107,125,129,147,64,26,20,8,152,2,16,188,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,98,115,120,93,194,109,147,64,26,20,8,152,2,16,189,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,187,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,62,212,177,119,180,242,147,64,26,20,8,152,2,16,191,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,122,247,133,219,46,23,147,64,26,20,8,152,2,16,192,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,190,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,208,68,166,215,7,57,149,64,26,20,8,152,2,16,194,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,108,120,176,51,52,3,147,64,26,20,8,152,2,16,195,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,193,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,9,65,252,118,242,136,149,64,26,20,8,152,2,16,197,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,217,246,190,160,128,36,147,64,26,20,8,152,2,16,198,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,196,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,179,243,219,122,25,103,147,64,26,20,8,152,2,16,201,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,52,190,124,110,226,196,149,64,26,20,8,152,2,16,200,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,199,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,161,60,139,219,46,230,149,64,26,20,8,152,2,16,203,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,198,236,78,244,156,249,147,64,26,20,8,152,2,16,204,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,202,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,241,188,238,248,133,223,149,64,26,20,8,152,2,16,206,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,145,106,150,38,59,40,148,64,26,20,8,152,2,16,207,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,205,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,22,92,181,222,147,90,149,64,26,20,8,152,2,16,210,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,48,85,220,207,185,222,147,64,26,20,8,152,2,16,209,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,208,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,53,224,118,212,162,245,146,64,26,20,8,152,2,16,212,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,60,112,149,55,91,176,147,64,26,20,8,152,2,16,213,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,211,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,176,221,90,233,233,42,147,64,26,20,8,152,2,16,215,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,122,247,133,219,46,23,147,64,26,20,8,152,2,16,216,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,214,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,166,216,34,19,120,149,147,64,26,20,8,152,2,16,218,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,118,125,232,9,166,152,146,64,26,20,8,152,2,16,219,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,217,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,82,192,228,0,20,148,64,26,20,8,152,2,16,221,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,156,128,203,47,13,86,146,64,26,20,8,152,2,16,222,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,220,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,175,204,93,182,137,146,148,64,26,20,8,152,2,16,224,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,47,2,189,194,192,52,146,64,26,20,8,152,2,16,225,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,223,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,203,119,233,248,133,16,147,64,26,20,8,152,2,16,228,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,42,185,68,152,112,47,150,64,26,20,8,152,2,16,227,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,226,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,175,187,96,131,41,250,149,64,26,20,8,152,2,16,230,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,112,242,77,5,189,129,147,64,26,20,8,152,2,16,231,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,229,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,9,65,252,118,242,136,149,64,26,20,8,152,2,16,233,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,183,109,121,76,162,229,147,64,26,20,8,152,2,16,234,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,232,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,99,198,151,106,187,23,149,64,26,20,8,152,2,16,236,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,145,106,150,38,59,40,148,64,26,20,8,152,2,16,237,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,235,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,67,95,76,124,157,9,147,64,26,20,8,152,2,16,239,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,169,238,163,164,167,209,147,64,26,20,8,152,2,16,240,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,238,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,209,85,163,10,104,209,147,64,26,20,8,152,2,16,242,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,156,128,203,47,13,86,146,64,26,20,8,152,2,16,243,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,241,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,208,7,23,159,66,148,64,26,20,8,152,2,16,245,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,222,129,89,165,105,59,146,64,26,20,8,152,2,16,246,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,244,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,73,222,173,121,206,148,64,26,20,8,152,2,16,248,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,130,32,224,23,46,146,64,26,20,8,152,2,16,249,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,247,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,90,193,95,148,73,130,149,64,26,20,8,152,2,16,251,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,130,32,224,23,46,146,64,26,20,8,152,2,16,252,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,250,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,63,167,198,231,176,149,64,26,20,8,152,2,16,254,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,236,0,47,77,100,79,146,64,26,20,8,152,2,16,255,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,253,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,175,187,96,131,41,250,149,64,26,20,8,152,2,16,129,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,198,253,75,39,253,145,146,64,26,20,8,152,2,16,130,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,128,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,80,188,39,190,215,236,149,64,26,20,8,152,2,16,132,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,198,236,78,244,156,249,147,64,26,20,8,152,2,16,133,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,131,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,104,64,53,60,68,150,149,64,26,20,8,152,2,16,135,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,79,105,8,177,222,66,148,64,26,20,8,152,2,16,136,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,134,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,150,228,51,248,195,166,148,64,26,20,8,152,2,16,139,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,166,199,37,224,23,253,148,64,26,20,8,152,2,16,138,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,137,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,52,207,121,161,66,93,148,64,26,20,8,152,2,16,141,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,178,226,222,71,185,206,148,64,26,20,8,152,2,16,142,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,140,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,98,98,123,42,98,213,148,64,26,20,8,152,2,16,145,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,157,211,234,60,6,0,148,64,26,20,8,152,2,16,144,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,143,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,90,219,224,217,102,147,64,26,20,8,152,2,16,147,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,131,235,192,126,64,20,148,64,26,20,8,152,2,16,148,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,146,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,57,90,20,166,43,116,147,64,26,20,8,152,2,16,150,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,60,112,149,55,91,176,147,64,26,20,8,152,2,16,151,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,149,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,48,85,220,207,185,222,147,64,26,20,8,152,2,16,153,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,165,116,6,211,30,83,147,64,26,20,8,152,2,16,154,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,152,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,90,210,92,199,169,26,148,64,26,20,8,152,2,16,156,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,231,117,148,72,123,56,147,64,26,20,8,152,2,16,157,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,155,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,123,74,165,232,39,193,148,64,26,20,8,152,2,16,159,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,103,237,21,47,75,236,147,64,26,20,8,152,2,16,160,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,158,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,77,193,211,224,139,148,64,26,20,8,152,2,16,162,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,240,105,207,235,140,53,148,64,26,20,8,152,2,16,163,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,161,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,76,83,135,31,175,6,148,64,26,20,8,152,2,16,165,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,231,100,151,21,27,160,148,64,26,20,8,152,2,16,166,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,164,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,152,89,77,107,125,129,147,64,26,20,8,152,2,16,168,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,17,226,23,13,11,220,148,64,26,20,8,152,2,16,169,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,167,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,221,147,174,59,56,147,64,26,20,8,152,2,16,171,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,193,97,180,239,179,226,148,64,26,20,8,152,2,16,172,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,170,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,90,193,95,148,73,130,149,64,26,20,8,152,2,16,174,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,141,240,248,84,178,169,147,64,26,20,8,152,2,16,175,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,173,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,9,65,252,118,242,136,149,64,26,20,8,152,2,16,177,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,51,107,93,97,233,26,148,64,26,20,8,152,2,16,178,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,176,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,66,78,79,73,61,113,148,64,26,20,8,152,2,16,180,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,183,92,124,25,66,77,149,64,26,20,8,152,2,16,181,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,179,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,57,90,20,166,43,116,147,64,26,20,8,152,2,16,183,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,117,91,238,163,229,103,149,64,26,20,8,152,2,16,184,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,182,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,90,219,224,217,102,147,64,26,20,8,152,2,16,186,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,175,155,56,15,81,25,144,64,26,20,8,152,2,16,187,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,185,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,48,85,220,207,185,222,147,64,26,20,8,152,2,16,189,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,161,28,99,103,86,5,144,64,26,20,8,152,2,16,190,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,188,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,161,28,99,103,86,5,144,64,26,20,8,152,2,16,193,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,119,208,7,23,159,66,148,64,26,20,8,152,2,16,192,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,191,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,175,204,93,182,137,146,148,64,26,20,8,152,2,16,195,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,95,27,213,241,249,31,144,64,26,20,8,152,2,16,196,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,194,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,202,8,6,127,186,148,64,26,20,8,152,2,16,198,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,203,136,230,43,230,168,145,64,26,20,8,152,2,16,199,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,197,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,113,3,75,56,29,26,146,64,26,20,8,152,2,16,202,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,133,79,221,190,153,86,148,64,26,20,8,152,2,16,201,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,200,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,252,244,29,104,24,62,145,64,26,20,8,152,2,16,204,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,89,127,61,186,176,112,146,64,26,20,8,152,2,16,205,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,203,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,77,117,129,133,111,55,145,64,26,20,8,152,2,16,207,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,85,5,160,232,39,242,145,64,26,20,8,152,2,16,208,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,206,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,114,101,154,182,108,145,64,26,20,8,152,2,16,210,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,66,12,45,111,164,95,145,64,26,20,8,152,2,16,211,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,209,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,238,144,225,155,208,145,64,26,20,8,152,2,16,213,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,237,17,44,128,196,231,144,64,26,20,8,152,2,16,214,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,212,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,166,150,0,57,223,131,144,64,26,20,8,152,2,16,217,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,34,231,3,91,31,99,146,64,26,20,8,152,2,16,216,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,215,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,152,89,77,107,125,129,147,64,26,20,8,152,2,16,219,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,0,28,156,44,168,18,144,64,26,20,8,152,2,16,220,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,218,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,251,193,38,207,247,116,149,64,26,20,8,152,2,16,222,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,227,12,244,169,82,82,145,64,26,20,8,152,2,16,223,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,221,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,66,78,79,73,61,113,148,64,26,20,8,152,2,16,225,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,203,119,233,248,133,16,147,64,26,20,8,152,2,16,226,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,224,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,62,212,177,119,180,242,147,64,26,20,8,152,2,16,228,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,70,117,205,13,205,69,147,64,26,20,8,152,2,16,229,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,227,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,81,222,33,36,152,29,147,64,26,20,8,152,2,16,231,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,193,114,177,34,20,123,147,64,26,20,8,152,2,16,232,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,230,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,48,85,220,207,185,222,147,64,26,20,8,152,2,16,234,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,9,61,112,47,194,186,143,64,26,20,8,152,2,16,235,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,233,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,81,205,36,241,55,133,148,64,26,20,8,152,2,16,237,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,28,26,71,124,157,58,144,64,26,20,8,152,2,16,238,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,236,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,232,200,179,85,116,226,148,64,26,20,8,152,2,16,240,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,208,19,129,48,207,191,144,64,26,20,8,152,2,16,241,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,239,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,5,199,94,165,105,10,149,64,26,20,8,152,2,16,243,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,132,13,187,228,0,69,145,64,26,20,8,152,2,16,244,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,242,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,180,70,251,135,18,17,149,64,26,20,8,152,2,16,246,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,56,7,245,152,50,202,145,64,26,20,8,152,2,16,247,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,245,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,226,234,249,67,146,33,148,64,26,20,8,152,2,16,250,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,38,97,161,44,168,225,146,64,26,20,8,152,2,16,249,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,248,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,6,250,85,62,138,211,144,64,26,20,8,152,2,16,252,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,56,7,245,152,50,202,145,64,26,20,8,152,2,16,253,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,251,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,143,118,15,251,203,28,145,64,26,20,8,152,2,16,255,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,23,143,172,119,180,35,145,64,26,20,8,152,2,16,128,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,254,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,53,241,115,7,3,142,145,64,26,20,8,152,2,16,130,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,194,148,171,136,212,171,144,64,26,20,8,152,2,16,131,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,129,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,123,25,128,65,239,71,144,64,26,20,8,152,2,16,134,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,86,105,188,40,129,52,146,64,26,20,8,152,2,16,133,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,132,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,97,161,44,168,225,146,64,26,20,8,152,2,16,136,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,133,58,84,68,9,240,143,64,26,20,8,152,2,16,137,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,135,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,251,193,38,207,247,116,149,64,26,20,8,152,2,16,139,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,75,17,101,69,22,245,144,64,26,20,8,152,2,16,140,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,138,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,52,141,87,199,169,75,145,64,26,20,8,152,2,16,143,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,90,193,95,148,73,130,149,64,26,20,8,152,2,16,142,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,141,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,76,66,138,236,78,110,149,64,26,20,8,152,2,16,145,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,108,137,173,102,148,155,145,64,26,20,8,152,2,16,146,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,144,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,232,200,179,85,116,226,148,64,26,20,8,152,2,16,148,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,130,32,224,23,46,146,64,26,20,8,152,2,16,149,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,147,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,202,8,6,127,186,148,64,26,20,8,152,2,16,151,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,222,129,89,165,105,59,146,64,26,20,8,152,2,16,152,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,150,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,99,189,23,97,172,146,64,26,20,8,152,2,16,154,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,222,129,89,165,105,59,146,64,26,20,8,152,2,16,155,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,153,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,205,235,43,230,119,148,64,26,20,8,152,2,16,157,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,9,61,112,47,194,186,143,64,26,20,8,152,2,16,158,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,156,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,232,200,179,85,116,226,148,64,26,20,8,152,2,16,160,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,9,61,112,47,194,186,143,64,26,20,8,152,2,16,161,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,159,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,194,197,208,47,13,37,149,64,26,20,8,152,2,16,163,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,199,59,226,185,101,213,143,64,26,20,8,152,2,16,164,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,162,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,195,123,127,2,77,149,64,26,20,8,152,2,16,166,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,80,156,255,73,255,11,144,64,26,20,8,152,2,16,167,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,165,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,156,194,237,9,166,103,149,64,26,20,8,152,2,16,169,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,123,25,128,65,239,71,144,64,26,20,8,152,2,16,170,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,168,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,99,132,117,144,34,6,146,64,26,20,8,152,2,16,173,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,176,221,90,233,233,42,147,64,26,20,8,152,2,16,172,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,171,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,77,100,132,82,15,159,146,64,26,20,8,152,2,16,175,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,113,3,75,56,29,26,146,64,26,20,8,152,2,16,176,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,174,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,86,105,188,40,129,52,146,64,26,20,8,152,2,16,178,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,113,3,75,56,29,26,146,64,26,20,8,152,2,16,179,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,177,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,209,149,140,251,39,148,64,26,20,8,152,2,16,181,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,113,20,72,107,125,178,144,64,26,20,8,152,2,16,182,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,180,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,66,78,79,73,61,113,148,64,26,20,8,152,2,16,184,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,104,15,16,149,11,29,145,64,26,20,8,152,2,16,185,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,183,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,109,203,207,64,45,173,148,64,26,20,8,152,2,16,187,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,217,7,188,211,224,188,145,64,26,20,8,152,2,16,188,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,186,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,109,203,207,64,45,173,148,64,26,20,8,152,2,16,190,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,141,1,246,135,18,66,146,64,26,20,8,152,2,16,191,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,189,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,132,252,189,177,160,172,146,64,26,20,8,152,2,16,194,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,175,204,93,182,137,146,148,64,26,20,8,152,2,16,193,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,192,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,224,229,117,229,194,125,146,64,26,20,8,152,2,16,196,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,32,114,234,231,101,136,147,64,26,20,8,152,2,16,197,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,195,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,229,112,16,234,171,148,145,64,26,20,8,152,2,16,199,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,247,67,253,181,62,40,143,64,26,20,8,152,2,16,200,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,198,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,44,236,59,49,145,248,145,64,26,20,8,152,2,16,202,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,86,84,51,174,240,205,141,64,26,20,8,152,2,16,203,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,201,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,228,95,19,183,75,252,146,64,26,20,8,152,2,16,205,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,39,110,18,24,216,171,139,64,26,20,8,152,2,16,206,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,204,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,109,220,204,115,141,69,147,64,26,20,8,152,2,16,208,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,172,112,46,3,145,118,139,64,26,20,8,152,2,16,209,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,207,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,33,214,6,40,191,202,147,64,26,20,8,152,2,16,211,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,210,115,17,41,248,51,139,64,26,20,8,152,2,16,212,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,210,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,196,66,186,176,63,149,64,26,20,8,152,2,16,214,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,48,98,77,187,233,168,140,64,26,20,8,152,2,16,215,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,213,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,90,50,191,16,86,141,64,26,20,8,152,2,16,218,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,142,67,24,98,171,83,149,64,26,20,8,152,2,16,217,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,216,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,142,67,24,98,171,83,149,64,26,20,8,152,2,16,220,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,143,80,137,77,219,29,142,64,26,20,8,152,2,16,221,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,219,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,194,197,208,47,13,37,149,64,26,20,8,152,2,16,223,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,57,69,139,43,155,13,143,64,26,20,8,152,2,16,224,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,222,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,43,202,65,203,208,199,148,64,26,20,8,152,2,16,226,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,227,57,141,9,91,253,143,64,26,20,8,152,2,16,227,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,225,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,147,206,178,102,148,106,148,64,26,20,8,152,2,16,229,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,42,153,28,36,152,78,144,64,26,20,8,152,2,16,230,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,228,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,24,226,203,132,173,205,146,64,26,20,8,152,2,16,232,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,237,17,44,128,196,231,144,64,26,20,8,152,2,16,233,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,231,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,62,229,174,170,20,139,146,64,26,20,8,152,2,16,235,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,222,146,86,216,201,211,144,64,26,20,8,152,2,16,236,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,234,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,34,231,3,91,31,99,146,64,26,20,8,152,2,16,238,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,99,149,114,195,130,158,144,64,26,20,8,152,2,16,239,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,237,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,20,104,46,179,36,79,146,64,26,20,8,152,2,16,241,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,42,153,28,36,152,78,144,64,26,20,8,152,2,16,242,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,240,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,133,58,84,68,9,240,143,64,26,20,8,152,2,16,245,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,195,231,202,149,205,85,146,64,26,20,8,152,2,16,244,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,243,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,86,88,191,245,32,156,147,64,26,20,8,152,2,16,247,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,48,81,80,136,137,16,142,64,26,20,8,152,2,16,248,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,246,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,114,82,222,253,229,245,141,64,26,20,8,152,2,16,251,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,10,82,249,169,82,33,148,64,26,20,8,152,2,16,250,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,249,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,77,193,211,224,139,148,64,26,20,8,152,2,16,253,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,209,81,23,195,55,3,142,64,26,20,8,152,2,16,254,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,252,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,232,200,179,85,116,226,148,64,26,20,8,152,2,16,128,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,76,79,251,215,126,56,142,64,26,20,8,152,2,16,129,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,255,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,99,198,151,106,187,23,149,64,26,20,8,152,2,16,131,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,38,76,24,178,23,123,142,64,26,20,8,152,2,16,132,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,130,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,114,69,109,18,182,43,149,64,26,20,8,152,2,16,134,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,133,58,84,68,9,240,143,64,26,20,8,152,2,16,135,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,133,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,43,202,65,203,208,199,148,64,26,20,8,152,2,16,137,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,218,24,185,6,65,85,144,64,26,20,8,152,2,16,138,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,136,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,212,120,178,98,229,147,64,26,20,8,152,2,16,140,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,128,147,29,19,120,198,144,64,26,20,8,152,2,16,141,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,139,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,147,223,175,153,244,2,147,64,26,20,8,152,2,16,143,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,170,16,158,10,104,2,145,64,26,20,8,152,2,16,144,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,142,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,116,243,15,19,82,145,64,26,20,8,152,2,16,146,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,194,148,171,136,212,171,144,64,26,20,8,152,2,16,147,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,145,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,238,117,72,192,29,42,145,64,26,20,8,152,2,16,149,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,42,153,28,36,152,78,144,64,26,20,8,152,2,16,150,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,148,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,9,61,112,47,194,186,143,64,26,20,8,152,2,16,153,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,49,119,214,53,122,15,145,64,26,20,8,152,2,16,152,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,151,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,238,117,72,192,29,42,145,64,26,20,8,152,2,16,155,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,48,81,80,136,137,16,142,64,26,20,8,152,2,16,156,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,154,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,25,243,200,183,13,102,145,64,26,20,8,152,2,16,158,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,247,84,250,232,158,192,141,64,26,20,8,152,2,16,159,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,157,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,209,85,163,10,104,209,147,64,26,20,8,152,2,16,161,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,77,96,248,10,223,208,140,64,26,20,8,152,2,16,162,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,160,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,137,201,122,144,34,213,148,64,26,20,8,152,2,16,164,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,247,67,253,181,62,40,143,64,26,20,8,152,2,16,165,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,163,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,205,235,43,230,119,148,64,26,20,8,152,2,16,167,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,109,154,170,153,244,51,144,64,26,20,8,152,2,16,168,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,166,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,82,192,228,0,20,148,64,26,20,8,152,2,16,170,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,151,23,43,145,228,111,144,64,26,20,8,152,2,16,171,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,169,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,99,149,114,195,130,158,144,64,26,20,8,152,2,16,174,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,5,216,91,216,201,162,147,64,26,20,8,152,2,16,173,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,172,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,176,221,90,233,233,42,147,64,26,20,8,152,2,16,176,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,113,20,72,107,125,178,144,64,26,20,8,152,2,16,177,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,175,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,33,148,228,77,38,185,144,64,26,20,8,152,2,16,180,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,185,226,146,191,91,192,146,64,26,20,8,152,2,16,179,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,178,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,205,236,2,108,63,235,145,64,26,20,8,152,2,16,182,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,29,71,224,219,165,229,142,64,26,20,8,152,2,16,183,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,181,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,233,234,173,187,52,19,146,64,26,20,8,152,2,16,185,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,19,83,165,56,148,232,141,64,26,20,8,152,2,16,186,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,184,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,143,101,18,200,107,132,146,64,26,20,8,152,2,16,188,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,162,90,249,249,190,72,141,64,26,20,8,152,2,16,189,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,187,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,95,93,247,203,146,49,147,64,26,20,8,152,2,16,191,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,10,95,106,149,130,235,140,64,26,20,8,152,2,16,192,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,190,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,237,83,78,90,93,249,147,64,26,20,8,152,2,16,194,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,172,95,49,208,48,222,140,64,26,20,8,152,2,16,195,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,193,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,90,193,95,148,73,130,149,64,26,20,8,152,2,16,197,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,57,24,242,203,146,98,144,64,26,20,8,152,2,16,198,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,196,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,196,66,186,176,63,149,64,26,20,8,152,2,16,200,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,33,148,228,77,38,185,144,64,26,20,8,152,2,16,201,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,199,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,137,201,122,144,34,213,148,64,26,20,8,152,2,16,203,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,251,144,1,40,191,251,144,64,26,20,8,152,2,16,204,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,202,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,109,203,207,64,45,173,148,64,26,20,8,152,2,16,206,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,90,144,58,237,16,9,145,64,26,20,8,152,2,16,207,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,205,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,52,207,121,161,66,93,148,64,26,20,8,152,2,16,209,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,104,15,16,149,11,29,145,64,26,20,8,152,2,16,210,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,208,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,157,211,234,60,6,0,148,64,26,20,8,152,2,16,212,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,123,70,25,161,247,242,142,64,26,20,8,152,2,16,213,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,211,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,33,197,9,245,94,50,149,64,26,20,8,152,2,16,215,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,200,93,220,31,38,6,141,64,26,20,8,152,2,16,216,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,214,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,65,195,177,160,123,149,64,26,20,8,152,2,16,218,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,200,93,220,31,38,6,141,64,26,20,8,152,2,16,219,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,217,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,90,193,95,148,73,130,149,64,26,20,8,152,2,16,221,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,39,93,21,229,119,19,141,64,26,20,8,152,2,16,222,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,220,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,192,152,89,155,143,149,64,26,20,8,152,2,16,224,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,1,90,50,191,16,86,141,64,26,20,8,152,2,16,225,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,223,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,192,152,89,155,143,149,64,26,20,8,152,2,16,227,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,86,84,51,174,240,205,141,64,26,20,8,152,2,16,228,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,226,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,10,82,249,169,82,33,148,64,26,20,8,152,2,16,230,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,142,63,140,26,123,133,143,64,26,20,8,152,2,16,231,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,229,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,82,192,228,0,20,148,64,26,20,8,152,2,16,233,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,57,69,139,43,155,13,143,64,26,20,8,152,2,16,234,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,232,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,90,210,92,199,169,26,148,64,26,20,8,152,2,16,236,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,133,75,81,119,105,136,142,64,26,20,8,152,2,16,237,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,235,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,48,81,80,136,137,16,142,64,26,20,8,152,2,16,240,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,185,209,149,140,251,39,148,64,26,20,8,152,2,16,239,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,238,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,213,207,64,220,240,79,148,64,26,20,8,152,2,16,242,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,124,87,22,212,87,139,141,64,26,20,8,152,2,16,243,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,241,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,205,235,43,230,119,148,64,26,20,8,152,2,16,245,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,67,91,192,52,109,59,141,64,26,20,8,152,2,16,246,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,244,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,73,222,173,121,206,148,64,26,20,8,152,2,16,248,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,228,91,135,111,27,46,141,64,26,20,8,152,2,16,249,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,247,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,90,50,191,16,86,141,64,26,20,8,152,2,16,252,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,137,201,122,144,34,213,148,64,26,20,8,152,2,16,251,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,152,2,16,250,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,152,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,152,4,18,149,4,10,146,4,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,66,177,82,192,79,166,152,64,26,19,8,159,2,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,161,91,140,84,104,180,154,64,26,19,8,159,2,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,159,2,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,43,140,185,213,254,194,152,64,26,19,8,159,2,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,124,83,151,67,77,226,154,64,26,19,8,159,2,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,159,2,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,33,74,124,17,120,206,152,64,26,19,8,159,2,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,82,170,131,208,238,21,155,64,26,19,8,159,2,16,14,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,159,2,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,159,2,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,159,2,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,159,2,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,159,2,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,159,2,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,161,10,18,158,10,10,155,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,157,2,16,2,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,48,51,55,102,102,26,19,8,157,2,16,3,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,157,2,16,4,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,90,203,189,205,155,168,64,26,19,8,157,2,16,7,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,195,42,131,212,51,165,133,64,26,19,8,157,2,16,8,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,157,2,16,6,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,156,92,207,156,180,211,168,64,26,19,8,157,2,16,10,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,199,56,114,77,229,138,133,64,26,19,8,157,2,16,11,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,157,2,16,9,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,22,4,45,9,190,1,169,64,26,19,8,157,2,16,13,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,209,219,199,251,32,73,133,64,26,19,8,157,2,16,14,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,157,2,16,12,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,155,151,29,47,18,169,64,26,19,8,157,2,16,16,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,216,247,165,237,131,20,133,64,26,19,8,157,2,16,17,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,157,2,16,15,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,152,78,224,35,3,238,168,64,26,19,8,157,2,16,19,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,56,207,134,0,0,144,130,64,26,19,8,157,2,16,20,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,157,2,16,18,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,25,18,28,130,111,231,168,64,26,19,8,157,2,16,22,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,62,100,237,53,138,104,130,64,26,19,8,157,2,16,23,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,157,2,16,21,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,77,156,169,25,80,255,129,64,26,19,8,157,2,16,26,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,31,167,130,183,249,191,168,64,26,19,8,157,2,16,25,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,157,2,16,24,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,77,156,169,25,80,255,129,64,26,19,8,157,2,16,29,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,120,18,35,26,33,8,4,18,8,164,120,173,142,23,159,168,64,26,19,8,157,2,16,28,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,157,2,16,27,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,212,94,211,123,155,11,169,64,26,19,8,157,2,16,31,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,51,36,246,89,141,114,137,64,26,19,8,157,2,16,32,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,157,2,16,30,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,137,22,36,64,61,87,169,64,26,19,8,157,2,16,34,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,40,10,1,121,18,35,26,33,8,4,18,8,111,125,111,44,204,218,135,64,26,19,8,157,2,16,35,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,157,2,16,33,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,157,2,16,5,26,12,99,70,121,160,152,207,109,6,237,70,60,128,18,19,8,157,2,16,1,26,12,99,70,121,160,152,207,109,6,237,70,60,128,10,131,87,18,128,87,10,253,86,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,168,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,168,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,168,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,219,85,10,6,112,111,105,110,116,115,18,208,85,18,205,85,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,106,160,64,26,19,8,168,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,148,64,26,19,8,168,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,159,64,26,19,8,168,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,148,64,26,19,8,168,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,159,64,26,19,8,168,2,16,13,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,52,148,64,26,19,8,168,2,16,14,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,12,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,158,64,26,19,8,168,2,16,16,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,180,147,64,26,19,8,168,2,16,17,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,15,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,158,64,26,19,8,168,2,16,19,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,147,64,26,19,8,168,2,16,20,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,18,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,147,64,26,19,8,168,2,16,23,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,158,64,26,19,8,168,2,16,22,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,21,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,158,64,26,19,8,168,2,16,25,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,147,64,26,19,8,168,2,16,26,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,24,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,158,64,26,19,8,168,2,16,28,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,52,148,64,26,19,8,168,2,16,29,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,27,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,148,64,26,19,8,168,2,16,32,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,158,64,26,19,8,168,2,16,31,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,30,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,158,64,26,19,8,168,2,16,34,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,212,148,64,26,19,8,168,2,16,35,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,33,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,159,64,26,19,8,168,2,16,37,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,36,149,64,26,19,8,168,2,16,38,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,36,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,160,64,26,19,8,168,2,16,40,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,116,149,64,26,19,8,168,2,16,41,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,39,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,160,64,26,19,8,168,2,16,43,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,149,64,26,19,8,168,2,16,44,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,42,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,74,160,64,26,19,8,168,2,16,46,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,149,64,26,19,8,168,2,16,47,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,45,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,110,160,64,26,19,8,168,2,16,49,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,149,64,26,19,8,168,2,16,50,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,48,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,160,64,26,19,8,168,2,16,52,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,149,64,26,19,8,168,2,16,53,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,51,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,154,160,64,26,19,8,168,2,16,55,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,149,64,26,19,8,168,2,16,56,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,54,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,194,160,64,26,19,8,168,2,16,58,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,149,64,26,19,8,168,2,16,59,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,57,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,234,160,64,26,19,8,168,2,16,61,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,244,148,64,26,19,8,168,2,16,62,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,60,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,22,161,64,26,19,8,168,2,16,64,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,148,64,26,19,8,168,2,16,65,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,63,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,161,64,26,19,8,168,2,16,67,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,4,148,64,26,19,8,168,2,16,68,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,66,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,46,161,64,26,19,8,168,2,16,70,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,188,147,64,26,19,8,168,2,16,71,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,69,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,26,161,64,26,19,8,168,2,16,73,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,147,64,26,19,8,168,2,16,74,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,72,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,161,64,26,19,8,168,2,16,76,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,147,64,26,19,8,168,2,16,77,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,75,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,246,160,64,26,19,8,168,2,16,79,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,60,147,64,26,19,8,168,2,16,80,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,78,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,160,64,26,19,8,168,2,16,82,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,108,147,64,26,19,8,168,2,16,83,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,81,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,160,64,26,19,8,168,2,16,85,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,132,147,64,26,19,8,168,2,16,86,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,84,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,160,64,26,19,8,168,2,16,88,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,220,147,64,26,19,8,168,2,16,89,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,87,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,110,160,64,26,19,8,168,2,16,91,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,20,148,64,26,19,8,168,2,16,92,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,90,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,160,64,26,19,8,168,2,16,94,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,52,148,64,26,19,8,168,2,16,95,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,93,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,160,64,26,19,8,168,2,16,97,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,148,64,26,19,8,168,2,16,98,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,96,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,160,64,26,19,8,168,2,16,100,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,92,148,64,26,19,8,168,2,16,101,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,99,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,159,64,26,19,8,168,2,16,103,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,148,64,26,19,8,168,2,16,104,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,102,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,159,64,26,19,8,168,2,16,106,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,236,147,64,26,19,8,168,2,16,107,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,105,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,159,64,26,19,8,168,2,16,109,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,212,147,64,26,19,8,168,2,16,110,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,108,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,158,64,26,19,8,168,2,16,112,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,147,64,26,19,8,168,2,16,113,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,111,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,158,64,26,19,8,168,2,16,115,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,147,64,26,19,8,168,2,16,116,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,114,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,158,64,26,19,8,168,2,16,118,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,148,64,26,19,8,168,2,16,119,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,117,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,158,64,26,19,8,168,2,16,121,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,100,148,64,26,19,8,168,2,16,122,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,120,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,148,64,26,19,8,168,2,16,125,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,158,64,26,19,8,168,2,16,124,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,123,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,159,64,26,19,8,168,2,16,127,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,20,149,64,26,20,8,168,2,16,128,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,126,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,159,64,26,20,8,168,2,16,130,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,84,149,64,26,20,8,168,2,16,131,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,129,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,2,160,64,26,20,8,168,2,16,133,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,149,64,26,20,8,168,2,16,134,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,132,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,34,160,64,26,20,8,168,2,16,136,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,116,149,64,26,20,8,168,2,16,137,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,135,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,78,160,64,26,20,8,168,2,16,139,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,116,149,64,26,20,8,168,2,16,140,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,138,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,160,64,26,20,8,168,2,16,142,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,149,64,26,20,8,168,2,16,143,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,141,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,170,160,64,26,20,8,168,2,16,145,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,20,149,64,26,20,8,168,2,16,146,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,144,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,160,64,26,20,8,168,2,16,148,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,180,148,64,26,20,8,168,2,16,149,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,147,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,6,161,64,26,20,8,168,2,16,151,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,212,147,64,26,20,8,168,2,16,152,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,150,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,161,64,26,20,8,168,2,16,154,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,108,147,64,26,20,8,168,2,16,155,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,153,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,161,64,26,20,8,168,2,16,157,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,84,147,64,26,20,8,168,2,16,158,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,156,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,10,161,64,26,20,8,168,2,16,160,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,60,147,64,26,20,8,168,2,16,161,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,159,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,44,147,64,26,20,8,168,2,16,164,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,2,161,64,26,20,8,168,2,16,163,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,162,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,238,160,64,26,20,8,168,2,16,166,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,147,64,26,20,8,168,2,16,167,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,165,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,206,160,64,26,20,8,168,2,16,169,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,147,64,26,20,8,168,2,16,170,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,168,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,178,160,64,26,20,8,168,2,16,172,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,60,147,64,26,20,8,168,2,16,173,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,171,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,146,160,64,26,20,8,168,2,16,175,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,140,147,64,26,20,8,168,2,16,176,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,174,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,102,160,64,26,20,8,168,2,16,178,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,148,64,26,20,8,168,2,16,179,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,177,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,208,147,64,26,20,8,168,2,16,182,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,160,64,26,20,8,168,2,16,181,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,180,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,116,147,64,26,20,8,168,2,16,185,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,159,64,26,20,8,168,2,16,184,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,183,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,158,64,26,20,8,168,2,16,187,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,147,64,26,20,8,168,2,16,188,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,186,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,168,2,16,190,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,147,64,26,20,8,168,2,16,191,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,189,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,158,64,26,20,8,168,2,16,193,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,108,147,64,26,20,8,168,2,16,194,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,192,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,158,64,26,20,8,168,2,16,196,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,236,147,64,26,20,8,168,2,16,197,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,195,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,148,64,26,20,8,168,2,16,200,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,158,64,26,20,8,168,2,16,199,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,198,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,148,64,26,20,8,168,2,16,203,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,158,64,26,20,8,168,2,16,202,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,201,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,158,64,26,20,8,168,2,16,205,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,148,64,26,20,8,168,2,16,206,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,204,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,159,64,26,20,8,168,2,16,208,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,148,64,26,20,8,168,2,16,209,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,207,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,159,64,26,20,8,168,2,16,211,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,244,148,64,26,20,8,168,2,16,212,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,210,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,159,64,26,20,8,168,2,16,214,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,149,64,26,20,8,168,2,16,215,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,213,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,160,64,26,20,8,168,2,16,217,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,149,64,26,20,8,168,2,16,218,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,216,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,194,160,64,26,20,8,168,2,16,220,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,236,148,64,26,20,8,168,2,16,221,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,219,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,160,64,26,20,8,168,2,16,223,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,164,148,64,26,20,8,168,2,16,224,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,222,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,30,161,64,26,20,8,168,2,16,226,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,148,64,26,20,8,168,2,16,227,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,225,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,161,64,26,20,8,168,2,16,229,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,248,147,64,26,20,8,168,2,16,230,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,228,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,54,161,64,26,20,8,168,2,16,232,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,147,64,26,20,8,168,2,16,233,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,231,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,147,64,26,20,8,168,2,16,236,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,161,64,26,20,8,168,2,16,235,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,234,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,30,161,64,26,20,8,168,2,16,238,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,147,64,26,20,8,168,2,16,239,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,237,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,160,64,26,20,8,168,2,16,241,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,136,147,64,26,20,8,168,2,16,242,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,240,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,160,64,26,20,8,168,2,16,244,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,160,147,64,26,20,8,168,2,16,245,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,243,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,186,160,64,26,20,8,168,2,16,247,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,244,147,64,26,20,8,168,2,16,248,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,246,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,160,64,26,20,8,168,2,16,250,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,172,148,64,26,20,8,168,2,16,251,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,249,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,146,160,64,26,20,8,168,2,16,253,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,184,148,64,26,20,8,168,2,16,254,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,252,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,122,160,64,26,20,8,168,2,16,128,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,148,64,26,20,8,168,2,16,129,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,255,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,160,64,26,20,8,168,2,16,131,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,240,147,64,26,20,8,168,2,16,132,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,130,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,159,64,26,20,8,168,2,16,134,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,156,147,64,26,20,8,168,2,16,135,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,133,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,159,64,26,20,8,168,2,16,137,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,128,147,64,26,20,8,168,2,16,138,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,136,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,92,147,64,26,20,8,168,2,16,141,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,159,64,26,20,8,168,2,16,140,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,139,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,158,64,26,20,8,168,2,16,143,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,147,64,26,20,8,168,2,16,144,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,142,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,158,64,26,20,8,168,2,16,146,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,116,147,64,26,20,8,168,2,16,147,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,145,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,196,147,64,26,20,8,168,2,16,150,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,158,64,26,20,8,168,2,16,149,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,148,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,158,64,26,20,8,168,2,16,152,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,44,148,64,26,20,8,168,2,16,153,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,151,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,158,64,26,20,8,168,2,16,155,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,148,64,26,20,8,168,2,16,156,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,154,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,158,64,26,20,8,168,2,16,158,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,148,64,26,20,8,168,2,16,159,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,157,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,4,160,64,26,20,8,168,2,16,161,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,124,148,64,26,20,8,168,2,16,162,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,160,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,22,160,64,26,20,8,168,2,16,164,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,104,148,64,26,20,8,168,2,16,165,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,163,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,160,64,26,20,8,168,2,16,167,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,148,64,26,20,8,168,2,16,168,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,168,2,16,166,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,168,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,238,12,18,235,12,10,232,12,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,169,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,169,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,169,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,46,161,64,26,19,8,169,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,2,161,64,26,19,8,169,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,161,64,26,19,8,169,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,82,161,64,26,19,8,169,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,114,161,64,26,19,8,169,2,16,14,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,14,161,64,26,19,8,169,2,16,13,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,12,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,42,161,64,26,19,8,169,2,16,16,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,178,161,64,26,19,8,169,2,16,17,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,15,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,82,161,64,26,19,8,169,2,16,19,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,252,161,64,26,19,8,169,2,16,20,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,18,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,74,161,64,26,19,8,169,2,16,22,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,158,161,64,26,19,8,169,2,16,23,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,21,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,74,161,64,26,19,8,169,2,16,25,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,244,160,64,26,19,8,169,2,16,26,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,24,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,86,161,64,26,19,8,169,2,16,28,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,161,64,26,19,8,169,2,16,29,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,27,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,186,161,64,26,19,8,169,2,16,31,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,66,161,64,26,19,8,169,2,16,32,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,30,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,162,64,26,19,8,169,2,16,34,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,138,161,64,26,19,8,169,2,16,35,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,33,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,161,64,26,19,8,169,2,16,38,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,162,64,26,19,8,169,2,16,37,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,36,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,162,64,26,19,8,169,2,16,40,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,161,64,26,19,8,169,2,16,41,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,39,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,162,64,26,19,8,169,2,16,43,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,142,160,64,26,19,8,169,2,16,44,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,42,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,169,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,196,21,18,193,21,10,190,21,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,170,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,170,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,170,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,156,20,10,6,112,111,105,110,116,115,18,145,20,18,142,20,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,188,160,64,26,19,8,170,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,34,162,64,26,19,8,170,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,90,162,64,26,19,8,170,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,160,64,26,19,8,170,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,166,162,64,26,19,8,170,2,16,13,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,160,64,26,19,8,170,2,16,14,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,12,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,182,162,64,26,19,8,170,2,16,16,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,196,160,64,26,19,8,170,2,16,17,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,15,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,162,64,26,19,8,170,2,16,19,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,164,160,64,26,19,8,170,2,16,20,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,18,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,163,64,26,19,8,170,2,16,22,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,160,64,26,19,8,170,2,16,23,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,21,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,38,163,64,26,19,8,170,2,16,25,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,62,160,64,26,19,8,170,2,16,26,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,24,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,163,64,26,19,8,170,2,16,28,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,159,64,26,19,8,170,2,16,29,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,27,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,163,64,26,19,8,170,2,16,31,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,132,159,64,26,19,8,170,2,16,32,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,30,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,163,64,26,19,8,170,2,16,34,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,60,159,64,26,19,8,170,2,16,35,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,33,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,159,64,26,19,8,170,2,16,38,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,6,163,64,26,19,8,170,2,16,37,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,36,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,162,64,26,19,8,170,2,16,40,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,252,158,64,26,19,8,170,2,16,41,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,39,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,162,64,26,19,8,170,2,16,43,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,158,64,26,19,8,170,2,16,44,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,42,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,134,162,64,26,19,8,170,2,16,46,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,159,64,26,19,8,170,2,16,47,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,45,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,94,162,64,26,19,8,170,2,16,49,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,188,159,64,26,19,8,170,2,16,50,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,48,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,162,64,26,19,8,170,2,16,52,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,2,160,64,26,19,8,170,2,16,53,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,51,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,30,160,64,26,19,8,170,2,16,56,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,162,64,26,19,8,170,2,16,55,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,54,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,78,162,64,26,19,8,170,2,16,58,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,84,160,64,26,19,8,170,2,16,59,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,57,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,86,162,64,26,19,8,170,2,16,61,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,108,160,64,26,19,8,170,2,16,62,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,60,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,110,162,64,26,19,8,170,2,16,64,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,150,160,64,26,19,8,170,2,16,65,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,63,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,162,64,26,19,8,170,2,16,67,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,206,160,64,26,19,8,170,2,16,68,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,66,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,162,64,26,19,8,170,2,16,70,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,160,64,26,19,8,170,2,16,71,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,69,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,162,64,26,19,8,170,2,16,73,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,246,160,64,26,19,8,170,2,16,74,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,72,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,170,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,221,13,18,218,13,10,215,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,171,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,171,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,171,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,163,64,26,19,8,171,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,159,64,26,19,8,171,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,66,163,64,26,19,8,171,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,160,64,26,19,8,171,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,122,163,64,26,19,8,171,2,16,13,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,46,160,64,26,19,8,171,2,16,14,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,12,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,182,163,64,26,19,8,171,2,16,16,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,160,64,26,19,8,171,2,16,17,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,15,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,186,163,64,26,19,8,171,2,16,19,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,160,64,26,19,8,171,2,16,20,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,18,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,163,64,26,19,8,171,2,16,22,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,30,160,64,26,19,8,171,2,16,23,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,21,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,138,163,64,26,19,8,171,2,16,25,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,159,64,26,19,8,171,2,16,26,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,24,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,164,64,26,19,8,171,2,16,28,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,159,64,26,19,8,171,2,16,29,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,27,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,160,64,26,19,8,171,2,16,32,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,164,64,26,19,8,171,2,16,31,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,30,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,164,64,26,19,8,171,2,16,34,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,160,64,26,19,8,171,2,16,35,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,33,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,106,164,64,26,19,8,171,2,16,37,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,158,64,26,19,8,171,2,16,38,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,36,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,164,64,26,19,8,171,2,16,40,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,158,64,26,19,8,171,2,16,41,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,39,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,164,64,26,19,8,171,2,16,43,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,140,157,64,26,19,8,171,2,16,44,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,42,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,74,164,64,26,19,8,171,2,16,46,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,156,64,26,19,8,171,2,16,47,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,45,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,171,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,255,11,18,252,11,10,249,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,172,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,172,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,172,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,215,10,10,6,112,111,105,110,116,115,18,204,10,18,201,10,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,158,161,64,26,19,8,172,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,82,162,64,26,19,8,172,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,172,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,218,161,64,26,19,8,172,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,162,162,64,26,19,8,172,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,172,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,46,162,64,26,19,8,172,2,16,13,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,250,162,64,26,19,8,172,2,16,14,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,172,2,16,12,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,162,64,26,19,8,172,2,16,16,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,162,64,26,19,8,172,2,16,17,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,172,2,16,15,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,26,162,64,26,19,8,172,2,16,19,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,102,162,64,26,19,8,172,2,16,20,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,172,2,16,18,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,118,162,64,26,19,8,172,2,16,22,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,162,64,26,19,8,172,2,16,23,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,172,2,16,21,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,170,162,64,26,19,8,172,2,16,25,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,162,162,64,26,19,8,172,2,16,26,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,172,2,16,24,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,162,64,26,19,8,172,2,16,28,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,170,162,64,26,19,8,172,2,16,29,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,172,2,16,27,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,202,162,64,26,19,8,172,2,16,31,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,110,162,64,26,19,8,172,2,16,32,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,172,2,16,30,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,186,162,64,26,19,8,172,2,16,34,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,50,162,64,26,19,8,172,2,16,35,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,172,2,16,33,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,162,64,26,19,8,172,2,16,37,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,170,161,64,26,19,8,172,2,16,38,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,172,2,16,36,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,116,161,64,26,19,8,172,2,16,41,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,162,64,26,19,8,172,2,16,40,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,172,2,16,39,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,172,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,172,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,187,15,18,184,15,10,181,15,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,173,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,147,14,10,6,112,111,105,110,116,115,18,136,14,18,133,14,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,74,161,64,26,19,8,173,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,38,163,64,26,19,8,173,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,163,64,26,19,8,173,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,108,161,64,26,19,8,173,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,246,162,64,26,19,8,173,2,16,13,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,161,64,26,19,8,173,2,16,14,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,12,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,186,163,64,26,19,8,173,2,16,16,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,161,64,26,19,8,173,2,16,17,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,15,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,182,163,64,26,19,8,173,2,16,19,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,60,162,64,26,19,8,173,2,16,20,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,18,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,28,162,64,26,19,8,173,2,16,23,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,163,64,26,19,8,173,2,16,22,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,21,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,163,64,26,19,8,173,2,16,25,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,206,161,64,26,19,8,173,2,16,26,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,24,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,30,164,64,26,19,8,173,2,16,28,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,134,161,64,26,19,8,173,2,16,29,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,27,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,70,164,64,26,19,8,173,2,16,31,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,161,64,26,19,8,173,2,16,32,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,30,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,164,64,26,19,8,173,2,16,34,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,161,64,26,19,8,173,2,16,35,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,33,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,242,164,64,26,19,8,173,2,16,37,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,206,161,64,26,19,8,173,2,16,38,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,36,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,212,161,64,26,19,8,173,2,16,41,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,6,165,64,26,19,8,173,2,16,40,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,39,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,14,165,64,26,19,8,173,2,16,43,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,210,161,64,26,19,8,173,2,16,44,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,42,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,165,64,26,19,8,173,2,16,46,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,161,64,26,19,8,173,2,16,47,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,45,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,165,64,26,19,8,173,2,16,49,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,160,64,26,19,8,173,2,16,50,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,48,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,165,64,26,19,8,173,2,16,52,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,54,160,64,26,19,8,173,2,16,53,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,51,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,173,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,173,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,173,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,154,38,18,151,38,10,148,38,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,164,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,164,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,164,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,221,36,10,6,112,111,105,110,116,115,18,210,36,18,207,36,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,139,64,26,19,8,164,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,118,64,26,19,8,164,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,138,64,26,19,8,164,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,120,64,26,19,8,164,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,122,64,26,19,8,164,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,137,64,26,19,8,164,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,136,64,26,19,8,164,2,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,124,64,26,19,8,164,2,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,134,64,26,19,8,164,2,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,125,64,26,19,8,164,2,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,131,64,26,19,8,164,2,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,164,2,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,128,64,26,19,8,164,2,16,25,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,129,64,26,19,8,164,2,16,26,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,24,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,124,64,26,19,8,164,2,16,28,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,130,64,26,19,8,164,2,16,29,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,27,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,118,64,26,19,8,164,2,16,31,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,130,64,26,19,8,164,2,16,32,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,30,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,119,64,26,19,8,164,2,16,34,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,130,64,26,19,8,164,2,16,35,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,33,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,122,64,26,19,8,164,2,16,37,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,129,64,26,19,8,164,2,16,38,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,36,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,128,64,26,19,8,164,2,16,40,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,128,64,26,19,8,164,2,16,41,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,39,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,131,64,26,19,8,164,2,16,43,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,128,64,26,19,8,164,2,16,44,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,42,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,137,64,26,19,8,164,2,16,46,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,127,64,26,19,8,164,2,16,47,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,45,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,139,64,26,19,8,164,2,16,49,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,126,64,26,19,8,164,2,16,50,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,48,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,138,64,26,19,8,164,2,16,52,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,127,64,26,19,8,164,2,16,53,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,51,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,138,64,26,19,8,164,2,16,55,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,128,64,26,19,8,164,2,16,56,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,54,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,136,64,26,19,8,164,2,16,58,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,128,64,26,19,8,164,2,16,59,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,57,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,131,64,26,19,8,164,2,16,61,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,128,64,26,19,8,164,2,16,62,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,60,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,130,64,26,19,8,164,2,16,64,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,128,64,26,19,8,164,2,16,65,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,63,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,130,64,26,19,8,164,2,16,67,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,128,64,26,19,8,164,2,16,68,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,66,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,132,64,26,19,8,164,2,16,70,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,126,64,26,19,8,164,2,16,71,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,69,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,134,64,26,19,8,164,2,16,73,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,125,64,26,19,8,164,2,16,74,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,72,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,128,64,26,19,8,164,2,16,77,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,139,64,26,19,8,164,2,16,76,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,75,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,140,64,26,19,8,164,2,16,79,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,129,64,26,19,8,164,2,16,80,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,78,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,129,64,26,19,8,164,2,16,83,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,140,64,26,19,8,164,2,16,82,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,81,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,141,64,26,19,8,164,2,16,85,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,130,64,26,19,8,164,2,16,86,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,84,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,130,64,26,19,8,164,2,16,89,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,141,64,26,19,8,164,2,16,88,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,87,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,130,64,26,19,8,164,2,16,92,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,143,64,26,19,8,164,2,16,91,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,90,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,143,64,26,19,8,164,2,16,94,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,129,64,26,19,8,164,2,16,95,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,93,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,127,64,26,19,8,164,2,16,98,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,143,64,26,19,8,164,2,16,97,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,96,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,142,64,26,19,8,164,2,16,100,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,125,64,26,19,8,164,2,16,101,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,99,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,142,64,26,19,8,164,2,16,103,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,127,64,26,19,8,164,2,16,104,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,102,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,142,64,26,19,8,164,2,16,106,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,129,64,26,19,8,164,2,16,107,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,105,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,142,64,26,19,8,164,2,16,109,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,130,64,26,19,8,164,2,16,110,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,108,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,134,64,26,19,8,164,2,16,113,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,143,64,26,19,8,164,2,16,112,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,111,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,143,64,26,19,8,164,2,16,115,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,134,64,26,19,8,164,2,16,116,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,114,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,144,64,26,19,8,164,2,16,118,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,134,64,26,19,8,164,2,16,119,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,117,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,145,64,26,19,8,164,2,16,121,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,130,64,26,19,8,164,2,16,122,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,120,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,147,64,26,19,8,164,2,16,124,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,123,64,26,19,8,164,2,16,125,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,123,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,147,64,26,19,8,164,2,16,127,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,16,122,64,26,20,8,164,2,16,128,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,126,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,147,64,26,20,8,164,2,16,130,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,121,64,26,20,8,164,2,16,131,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,20,8,164,2,16,129,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,164,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,34,19,8,168,2,16,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,197,66,18,194,66,10,191,66,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,161,2,16,2,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,55,102,51,48,52,26,19,8,161,2,16,3,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,161,2,16,4,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,157,65,10,6,112,111,105,110,116,115,18,146,65,18,143,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,144,64,26,19,8,161,2,16,7,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,135,64,26,19,8,161,2,16,8,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,6,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,144,64,26,19,8,161,2,16,10,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,135,64,26,19,8,161,2,16,11,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,9,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,138,64,26,19,8,161,2,16,13,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,92,144,64,26,19,8,161,2,16,14,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,12,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,136,64,26,19,8,161,2,16,16,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,228,144,64,26,19,8,161,2,16,17,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,15,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,60,145,64,26,19,8,161,2,16,20,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,135,64,26,19,8,161,2,16,19,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,18,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,133,64,26,19,8,161,2,16,22,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,145,64,26,19,8,161,2,16,23,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,21,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,133,64,26,19,8,161,2,16,25,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,236,145,64,26,19,8,161,2,16,26,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,24,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,4,146,64,26,19,8,161,2,16,29,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,131,64,26,19,8,161,2,16,28,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,27,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,252,145,64,26,19,8,161,2,16,32,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,131,64,26,19,8,161,2,16,31,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,30,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,131,64,26,19,8,161,2,16,34,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,145,64,26,19,8,161,2,16,35,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,33,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,131,64,26,19,8,161,2,16,37,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,188,145,64,26,19,8,161,2,16,38,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,36,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,147,64,26,19,8,161,2,16,40,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,140,64,26,19,8,161,2,16,41,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,39,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,147,64,26,19,8,161,2,16,43,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,140,64,26,19,8,161,2,16,44,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,42,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,145,64,26,19,8,161,2,16,47,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,131,64,26,19,8,161,2,16,46,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,45,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,130,64,26,19,8,161,2,16,49,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,145,64,26,19,8,161,2,16,50,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,48,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,137,64,26,19,8,161,2,16,52,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,144,64,26,19,8,161,2,16,53,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,51,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,139,64,26,19,8,161,2,16,55,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,144,64,26,19,8,161,2,16,56,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,54,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,143,64,26,19,8,161,2,16,58,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,143,64,26,19,8,161,2,16,59,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,57,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,133,64,26,19,8,161,2,16,61,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,144,64,26,19,8,161,2,16,62,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,60,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,125,64,26,19,8,161,2,16,64,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,188,144,64,26,19,8,161,2,16,65,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,63,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,122,64,26,19,8,161,2,16,67,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,108,144,64,26,19,8,161,2,16,68,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,66,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,121,64,26,19,8,161,2,16,70,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,144,64,26,19,8,161,2,16,71,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,69,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,121,64,26,19,8,161,2,16,73,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,12,144,64,26,19,8,161,2,16,74,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,72,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,121,64,26,19,8,161,2,16,76,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,143,64,26,19,8,161,2,16,77,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,75,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,121,64,26,19,8,161,2,16,79,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,143,64,26,19,8,161,2,16,80,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,78,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,139,64,26,19,8,161,2,16,83,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,128,64,26,19,8,161,2,16,82,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,81,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,130,64,26,19,8,161,2,16,85,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,138,64,26,19,8,161,2,16,86,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,84,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,133,64,26,19,8,161,2,16,88,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,136,64,26,19,8,161,2,16,89,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,87,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,136,64,26,19,8,161,2,16,91,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,135,64,26,19,8,161,2,16,92,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,90,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,139,64,26,19,8,161,2,16,94,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,135,64,26,19,8,161,2,16,95,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,93,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,141,64,26,19,8,161,2,16,97,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,134,64,26,19,8,161,2,16,98,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,96,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,144,64,26,19,8,161,2,16,100,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,134,64,26,19,8,161,2,16,101,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,99,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,144,64,26,19,8,161,2,16,103,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,134,64,26,19,8,161,2,16,104,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,102,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,145,64,26,19,8,161,2,16,106,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,134,64,26,19,8,161,2,16,107,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,105,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,135,64,26,19,8,161,2,16,110,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,145,64,26,19,8,161,2,16,109,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,108,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,135,64,26,19,8,161,2,16,113,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,145,64,26,19,8,161,2,16,112,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,111,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,136,64,26,19,8,161,2,16,116,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,145,64,26,19,8,161,2,16,115,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,114,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,145,64,26,19,8,161,2,16,118,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,139,64,26,19,8,161,2,16,119,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,117,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,144,64,26,19,8,161,2,16,121,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,139,64,26,19,8,161,2,16,122,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,120,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,122,64,26,19,8,161,2,16,124,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,68,146,64,26,19,8,161,2,16,125,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,123,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,117,64,26,19,8,161,2,16,127,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,145,64,26,20,8,161,2,16,128,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,126,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,20,145,64,26,20,8,161,2,16,131,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,119,64,26,20,8,161,2,16,130,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,129,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,124,64,26,20,8,161,2,16,133,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,144,64,26,20,8,161,2,16,134,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,132,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,129,64,26,20,8,161,2,16,136,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,142,64,26,20,8,161,2,16,137,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,135,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,127,64,26,20,8,161,2,16,139,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,145,64,26,20,8,161,2,16,140,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,138,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,128,64,26,20,8,161,2,16,142,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,144,144,64,26,20,8,161,2,16,143,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,141,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,131,64,26,20,8,161,2,16,145,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,143,64,26,20,8,161,2,16,146,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,144,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,135,64,26,20,8,161,2,16,148,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,141,64,26,20,8,161,2,16,149,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,147,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,139,64,26,20,8,161,2,16,151,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,140,64,26,20,8,161,2,16,152,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,150,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,142,64,26,20,8,161,2,16,154,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,56,139,64,26,20,8,161,2,16,155,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,153,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,144,64,26,20,8,161,2,16,157,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,138,64,26,20,8,161,2,16,158,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,156,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,148,64,26,20,8,161,2,16,160,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,137,64,26,20,8,161,2,16,161,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,159,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,148,64,26,20,8,161,2,16,163,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,120,137,64,26,20,8,161,2,16,164,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,162,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,148,64,26,20,8,161,2,16,166,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,184,137,64,26,20,8,161,2,16,167,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,165,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,149,64,26,20,8,161,2,16,169,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,32,138,64,26,20,8,161,2,16,170,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,168,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,149,64,26,20,8,161,2,16,172,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,176,138,64,26,20,8,161,2,16,173,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,171,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,149,64,26,20,8,161,2,16,175,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,96,139,64,26,20,8,161,2,16,176,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,174,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,146,64,26,20,8,161,2,16,178,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,140,144,64,26,20,8,161,2,16,179,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,177,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,144,64,26,20,8,161,2,16,181,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,145,64,26,20,8,161,2,16,182,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,180,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,152,145,64,26,20,8,161,2,16,185,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,143,64,26,20,8,161,2,16,184,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,183,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,145,64,26,20,8,161,2,16,188,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,142,64,26,20,8,161,2,16,187,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,186,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,240,141,64,26,20,8,161,2,16,190,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,216,145,64,26,20,8,161,2,16,191,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,189,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,139,64,26,20,8,161,2,16,193,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,204,145,64,26,20,8,161,2,16,194,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,192,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,139,64,26,20,8,161,2,16,196,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,156,145,64,26,20,8,161,2,16,197,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,195,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,140,64,26,20,8,161,2,16,199,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,76,145,64,26,20,8,161,2,16,200,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,198,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,141,64,26,20,8,161,2,16,202,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,192,144,64,26,20,8,161,2,16,203,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,201,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,143,64,26,20,8,161,2,16,205,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,24,144,64,26,20,8,161,2,16,206,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,204,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,144,64,26,20,8,161,2,16,208,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,232,142,64,26,20,8,161,2,16,209,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,207,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,148,64,26,20,8,161,2,16,211,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,184,139,64,26,20,8,161,2,16,212,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,210,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,150,64,26,20,8,161,2,16,214,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,139,64,26,20,8,161,2,16,215,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,213,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,140,150,64,26,20,8,161,2,16,217,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,139,64,26,20,8,161,2,16,218,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,216,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,145,64,26,20,8,161,2,16,220,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,52,144,64,26,20,8,161,2,16,221,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,219,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,145,64,26,20,8,161,2,16,223,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,168,143,64,26,20,8,161,2,16,224,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,222,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,180,147,64,26,20,8,161,2,16,226,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,200,141,64,26,20,8,161,2,16,227,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,20,8,161,2,16,225,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,5,26,12,99,70,121,210,152,207,109,6,237,70,118,161,18,19,8,161,2,16,1,26,12,99,70,121,210,152,207,109,6,237,70,118,161,10,231,32,18,228,32,10,225,32,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,102,98,49,97,99,26,19,8,166,2,16,3,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,166,2,16,4,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,191,31,10,6,112,111,105,110,116,115,18,180,31,18,177,31,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,215,229,135,223,39,151,64,26,19,8,166,2,16,7,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,51,91,62,12,171,55,109,64,26,19,8,166,2,16,8,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,6,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,104,236,251,128,86,151,64,26,19,8,166,2,16,10,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,102,157,175,40,28,150,112,64,26,19,8,166,2,16,11,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,9,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,131,237,32,241,191,199,151,64,26,19,8,166,2,16,13,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,243,173,24,105,51,128,115,64,26,19,8,166,2,16,14,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,12,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,3,92,90,160,103,152,64,26,19,8,166,2,16,16,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,6,166,221,171,133,239,118,64,26,19,8,166,2,16,17,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,15,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,63,95,90,71,27,90,119,64,26,19,8,166,2,16,20,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,244,95,26,40,235,156,152,64,26,19,8,166,2,16,19,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,18,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,222,234,183,92,219,236,152,64,26,19,8,166,2,16,22,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,76,46,18,76,145,100,120,64,26,19,8,166,2,16,23,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,21,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,167,7,243,27,85,148,155,64,26,19,8,166,2,16,25,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,50,105,35,34,1,252,128,64,26,19,8,166,2,16,26,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,24,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,251,32,157,242,214,155,64,26,19,8,166,2,16,28,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,167,46,114,60,249,35,129,64,26,19,8,166,2,16,29,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,27,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,251,32,157,242,214,155,64,26,19,8,166,2,16,31,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,89,0,147,213,83,9,129,64,26,19,8,166,2,16,32,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,30,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,35,151,196,230,18,156,64,26,19,8,166,2,16,34,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,206,197,225,239,75,49,129,64,26,19,8,166,2,16,35,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,33,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,115,131,19,207,138,156,64,26,19,8,166,2,16,37,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,67,139,48,10,68,89,129,64,26,19,8,166,2,16,38,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,36,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,115,131,19,207,138,156,64,26,19,8,166,2,16,40,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,28,244,192,86,241,75,129,64,26,19,8,166,2,16,41,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,39,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,112,57,210,45,199,178,156,64,26,19,8,166,2,16,43,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,67,139,48,10,68,89,129,64,26,19,8,166,2,16,44,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,42,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,168,242,78,201,92,29,157,64,26,19,8,166,2,16,46,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,28,244,192,86,241,75,129,64,26,19,8,166,2,16,47,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,45,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,237,124,160,147,103,159,64,26,19,8,166,2,16,49,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,114,239,201,164,212,95,117,64,26,19,8,166,2,16,50,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,48,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,21,243,199,135,163,159,64,26,19,8,166,2,16,52,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,165,127,57,2,142,101,115,64,26,19,8,166,2,16,53,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,51,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,21,243,199,135,163,159,64,26,19,8,166,2,16,55,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,108,198,188,102,248,250,114,64,26,19,8,166,2,16,56,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,54,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,174,52,249,214,128,164,64,26,19,8,166,2,16,58,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,66,61,101,174,231,251,142,64,26,19,8,166,2,16,59,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,57,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,1,102,49,63,134,105,164,64,26,19,8,166,2,16,61,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,66,61,101,174,231,251,142,64,26,19,8,166,2,16,62,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,60,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,92,120,108,253,153,5,164,64,26,19,8,166,2,16,64,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,240,187,48,100,117,142,143,64,26,19,8,166,2,16,65,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,63,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,219,70,206,152,101,222,143,64,26,19,8,166,2,16,68,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,33,32,151,25,26,45,163,64,26,19,8,166,2,16,67,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,66,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,96,177,62,211,227,162,64,26,19,8,166,2,16,70,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,140,24,239,49,192,195,143,64,26,19,8,166,2,16,71,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,69,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,81,223,20,164,34,162,64,26,19,8,166,2,16,73,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,140,24,239,49,192,195,143,64,26,19,8,166,2,16,74,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,72,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,239,122,131,105,104,146,158,64,26,19,8,166,2,16,76,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,251,83,195,47,205,37,114,64,26,19,8,166,2,16,77,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,75,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,51,13,64,203,98,144,114,64,26,19,8,166,2,16,80,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,73,141,190,39,124,46,158,64,26,19,8,166,2,16,79,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,78,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,94,223,192,214,19,158,64,26,19,8,166,2,16,82,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,122,149,116,107,110,5,116,64,26,19,8,166,2,16,83,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,81,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,212,199,111,13,132,6,158,64,26,19,8,166,2,16,85,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,200,195,83,210,19,32,116,64,26,19,8,166,2,16,86,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,84,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,71,5,5,14,181,255,117,64,26,19,8,166,2,16,89,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,182,193,6,206,210,39,158,64,26,19,8,166,2,16,88,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,87,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,71,5,5,14,181,255,117,64,26,19,8,166,2,16,92,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,34,246,78,116,41,33,158,64,26,19,8,166,2,16,91,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,90,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,43,135,85,232,202,79,158,64,26,19,8,166,2,16,94,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,219,187,24,21,102,143,119,64,26,19,8,166,2,16,95,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,93,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,198,70,182,73,86,223,119,64,26,19,8,166,2,16,98,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,221,88,118,129,37,53,158,64,26,19,8,166,2,16,97,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,96,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,160,76,164,2,195,119,158,64,26,19,8,166,2,16,100,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,104,204,129,85,125,121,122,64,26,19,8,166,2,16,101,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,99,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,30,197,155,29,93,158,64,26,19,8,166,2,16,103,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,182,250,96,188,34,148,122,64,26,19,8,166,2,16,104,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,102,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,18,191,157,57,238,76,159,64,26,19,8,166,2,16,106,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,153,95,186,55,131,25,128,64,26,19,8,166,2,16,107,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,105,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,192,246,41,235,213,38,128,64,26,19,8,166,2,16,110,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,87,92,118,44,242,56,159,64,26,19,8,166,2,16,109,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,108,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,48,197,6,121,159,43,159,64,26,19,8,166,2,16,112,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,171,129,199,31,198,118,128,64,26,19,8,166,2,16,113,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,111,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,5,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,166,2,16,2,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,166,2,16,1,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,197,34,18,194,34,10,191,34,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,169,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,169,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,169,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,157,33,10,6,112,111,105,110,116,115,18,146,33,18,143,33,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,147,64,26,19,8,169,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,124,64,26,19,8,169,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,147,64,26,19,8,169,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,126,64,26,19,8,169,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,147,64,26,19,8,169,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,128,64,26,19,8,169,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,148,64,26,19,8,169,2,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,130,64,26,19,8,169,2,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,131,64,26,19,8,169,2,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,148,64,26,19,8,169,2,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,150,64,26,19,8,169,2,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,132,64,26,19,8,169,2,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,150,64,26,19,8,169,2,16,25,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,132,64,26,19,8,169,2,16,26,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,24,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,150,64,26,19,8,169,2,16,28,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,132,64,26,19,8,169,2,16,29,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,27,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,151,64,26,19,8,169,2,16,31,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,200,132,64,26,19,8,169,2,16,32,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,30,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,131,64,26,19,8,169,2,16,35,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,151,64,26,19,8,169,2,16,34,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,33,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,151,64,26,19,8,169,2,16,37,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,169,2,16,38,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,36,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,129,64,26,19,8,169,2,16,41,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,151,64,26,19,8,169,2,16,40,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,39,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,151,64,26,19,8,169,2,16,43,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,127,64,26,19,8,169,2,16,44,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,42,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,151,64,26,19,8,169,2,16,46,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,125,64,26,19,8,169,2,16,47,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,45,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,4,151,64,26,19,8,169,2,16,49,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,125,64,26,19,8,169,2,16,50,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,48,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,150,64,26,19,8,169,2,16,52,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,125,64,26,19,8,169,2,16,53,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,51,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,150,64,26,19,8,169,2,16,55,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,127,64,26,19,8,169,2,16,56,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,54,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,149,64,26,19,8,169,2,16,58,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,128,64,26,19,8,169,2,16,59,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,57,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,130,64,26,19,8,169,2,16,62,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,149,64,26,19,8,169,2,16,61,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,60,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,149,64,26,19,8,169,2,16,64,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,131,64,26,19,8,169,2,16,65,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,63,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,150,64,26,19,8,169,2,16,67,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,133,64,26,19,8,169,2,16,68,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,66,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,151,64,26,19,8,169,2,16,70,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,168,131,64,26,19,8,169,2,16,71,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,69,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,152,64,26,19,8,169,2,16,73,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,169,2,16,74,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,72,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,153,64,26,19,8,169,2,16,76,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,130,64,26,19,8,169,2,16,77,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,75,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,153,64,26,19,8,169,2,16,79,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,130,64,26,19,8,169,2,16,80,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,78,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,153,64,26,19,8,169,2,16,82,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,130,64,26,19,8,169,2,16,83,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,81,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,153,64,26,19,8,169,2,16,85,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,131,64,26,19,8,169,2,16,86,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,84,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,153,64,26,19,8,169,2,16,88,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,133,64,26,19,8,169,2,16,89,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,87,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,153,64,26,19,8,169,2,16,91,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,134,64,26,19,8,169,2,16,92,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,90,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,153,64,26,19,8,169,2,16,94,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,135,64,26,19,8,169,2,16,95,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,93,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,137,64,26,19,8,169,2,16,98,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,152,64,26,19,8,169,2,16,97,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,96,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,151,64,26,19,8,169,2,16,100,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,137,64,26,19,8,169,2,16,101,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,99,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,149,64,26,19,8,169,2,16,103,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,137,64,26,19,8,169,2,16,104,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,102,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,147,64,26,19,8,169,2,16,106,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,137,64,26,19,8,169,2,16,107,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,105,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,146,64,26,19,8,169,2,16,109,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,136,64,26,19,8,169,2,16,110,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,108,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,144,64,26,19,8,169,2,16,112,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,135,64,26,19,8,169,2,16,113,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,111,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,137,64,26,19,8,169,2,16,115,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,130,64,26,19,8,169,2,16,116,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,114,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,129,64,26,19,8,169,2,16,119,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,136,64,26,19,8,169,2,16,118,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,117,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,169,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,145,98,91,68,201,68,152,64,26,19,8,172,2,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,223,167,160,146,97,147,144,64,26,19,8,172,2,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,172,2,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,223,167,160,146,97,147,144,64,26,19,8,172,2,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,145,98,91,68,201,68,152,64,26,19,8,172,2,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,172,2,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,172,2,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,172,2,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,172,2,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,172,2,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,172,2,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,221,13,18,218,13,10,215,13,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,172,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,172,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,172,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,130,64,26,19,8,172,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,117,64,26,19,8,172,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,130,64,26,19,8,172,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,128,64,26,19,8,172,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,130,64,26,19,8,172,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,129,64,26,19,8,172,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,130,64,26,19,8,172,2,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,130,64,26,19,8,172,2,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,131,64,26,19,8,172,2,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,132,64,26,19,8,172,2,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,133,64,26,19,8,172,2,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,133,64,26,19,8,172,2,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,134,64,26,19,8,172,2,16,25,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,133,64,26,19,8,172,2,16,26,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,24,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,135,64,26,19,8,172,2,16,28,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,133,64,26,19,8,172,2,16,29,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,27,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,137,64,26,19,8,172,2,16,31,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,133,64,26,19,8,172,2,16,32,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,30,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,138,64,26,19,8,172,2,16,34,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,133,64,26,19,8,172,2,16,35,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,33,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,141,64,26,19,8,172,2,16,37,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,132,64,26,19,8,172,2,16,38,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,36,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,143,64,26,19,8,172,2,16,40,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,131,64,26,19,8,172,2,16,41,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,39,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,147,64,26,19,8,172,2,16,43,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,127,64,26,19,8,172,2,16,44,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,42,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,148,64,26,19,8,172,2,16,46,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,123,64,26,19,8,172,2,16,47,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,45,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,172,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,238,12,18,235,12,10,232,12,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,172,2,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,172,2,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,172,2,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,155,64,26,19,8,172,2,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,88,64,26,19,8,172,2,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,93,64,26,19,8,172,2,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,154,64,26,19,8,172,2,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,149,64,26,19,8,172,2,16,13,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,115,64,26,19,8,172,2,16,14,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,12,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,148,64,26,19,8,172,2,16,16,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,119,64,26,19,8,172,2,16,17,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,15,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,124,64,26,19,8,172,2,16,20,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,147,64,26,19,8,172,2,16,19,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,18,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,141,64,26,19,8,172,2,16,22,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,130,64,26,19,8,172,2,16,23,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,21,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,137,64,26,19,8,172,2,16,25,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,130,64,26,19,8,172,2,16,26,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,24,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,136,64,26,19,8,172,2,16,28,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,130,64,26,19,8,172,2,16,29,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,27,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,135,64,26,19,8,172,2,16,31,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,129,64,26,19,8,172,2,16,32,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,30,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,135,64,26,19,8,172,2,16,34,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,129,64,26,19,8,172,2,16,35,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,33,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,132,64,26,19,8,172,2,16,37,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,117,64,26,19,8,172,2,16,38,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,36,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,132,64,26,19,8,172,2,16,40,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,113,64,26,19,8,172,2,16,41,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,39,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,133,64,26,19,8,172,2,16,43,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,111,64,26,19,8,172,2,16,44,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,42,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,172,2,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,240,218,1,18,236,218,1,10,232,218,1,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,174,2,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,52,55,97,102,57,26,19,8,174,2,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,174,2,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,197,217,1,10,6,112,111,105,110,116,115,18,185,217,1,18,181,217,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,26,1,195,236,190,177,151,64,26,19,8,174,2,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,177,43,28,189,80,190,131,64,26,19,8,174,2,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,172,30,103,185,9,211,151,64,26,19,8,174,2,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,53,8,36,97,93,150,131,64,26,19,8,174,2,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,34,216,91,2,248,152,64,26,19,8,174,2,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,223,58,138,181,1,143,129,64,26,19,8,174,2,16,14,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,87,152,97,254,93,228,127,64,26,19,8,174,2,16,17,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,127,15,249,192,88,2,154,64,26,19,8,174,2,16,16,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,15,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,179,139,221,130,44,142,154,64,26,19,8,174,2,16,19,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,113,124,160,30,195,164,126,64,26,19,8,174,2,16,20,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,18,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,27,181,41,110,200,188,154,64,26,19,8,174,2,16,22,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,32,77,0,164,126,111,126,64,26,19,8,174,2,16,23,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,21,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,108,228,201,232,12,242,154,64,26,19,8,174,2,16,25,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,32,77,0,164,126,111,126,64,26,19,8,174,2,16,26,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,24,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,113,124,160,30,195,164,126,64,26,19,8,174,2,16,29,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,86,234,29,120,181,248,154,64,26,19,8,174,2,16,28,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,27,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,108,228,201,232,12,242,154,64,26,19,8,174,2,16,31,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,187,242,48,81,238,41,127,64,26,19,8,174,2,16,32,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,30,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,116,141,69,138,115,154,64,26,19,8,174,2,16,34,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,155,125,9,203,239,185,128,64,26,19,8,174,2,16,35,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,33,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,159,188,29,214,131,153,64,26,19,8,174,2,16,37,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,247,3,179,190,100,113,130,64,26,19,8,174,2,16,38,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,36,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,13,143,163,92,140,81,152,64,26,19,8,174,2,16,40,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,208,173,84,14,205,80,132,64,26,19,8,174,2,16,41,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,39,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,107,171,0,153,41,152,64,26,19,8,174,2,16,43,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,158,0,237,228,4,174,132,64,26,19,8,174,2,16,44,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,42,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,72,179,164,165,1,152,64,26,19,8,174,2,16,46,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,64,95,45,218,141,24,133,64,26,19,8,174,2,16,47,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,45,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,172,30,103,185,9,211,151,64,26,19,8,174,2,16,49,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,44,52,254,1,66,8,134,64,26,19,8,174,2,16,50,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,48,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,24,19,42,97,204,151,64,26,19,8,174,2,16,52,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,31,194,222,113,15,168,134,64,26,19,8,174,2,16,53,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,51,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,60,11,134,84,244,151,64,26,19,8,174,2,16,55,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,31,194,222,113,15,168,134,64,26,19,8,174,2,16,56,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,54,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,56,131,251,61,59,68,152,64,26,19,8,174,2,16,58,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,206,146,62,247,202,114,134,64,26,19,8,174,2,16,59,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,57,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,196,231,143,194,108,181,152,64,26,19,8,174,2,16,61,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,175,16,6,166,78,224,133,64,26,19,8,174,2,16,62,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,60,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,239,47,141,95,73,227,132,64,26,19,8,174,2,16,65,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,227,105,200,19,233,71,153,64,26,19,8,174,2,16,64,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,63,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,247,3,179,190,100,113,130,64,26,19,8,174,2,16,68,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,11,116,141,69,138,115,154,64,26,19,8,174,2,16,67,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,66,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,212,227,128,60,209,12,128,64,26,19,8,174,2,16,71,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,14,67,10,222,149,92,155,64,26,19,8,174,2,16,70,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,69,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,185,154,16,193,225,155,64,26,19,8,174,2,16,73,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,220,143,127,185,108,154,125,64,26,19,8,174,2,16,74,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,72,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,0,139,200,167,49,156,64,26,19,8,174,2,16,76,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,158,139,14,23,116,117,124,64,26,19,8,174,2,16,77,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,75,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,163,47,43,67,236,102,156,64,26,19,8,174,2,16,79,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,246,115,190,217,209,90,124,64,26,19,8,174,2,16,80,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,78,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,119,59,211,97,61,116,156,64,26,19,8,174,2,16,82,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,145,25,239,134,65,21,125,64,26,19,8,174,2,16,83,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,81,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,163,47,43,67,236,102,156,64,26,19,8,174,2,16,85,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,45,191,31,52,177,207,125,64,26,19,8,174,2,16,86,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,84,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,60,6,223,87,80,56,156,64,26,19,8,174,2,16,88,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,106,195,144,214,169,244,126,64,26,19,8,174,2,16,89,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,87,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,223,58,138,181,1,143,129,64,26,19,8,174,2,16,92,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,20,252,25,38,175,12,155,64,26,19,8,174,2,16,91,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,90,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,205,111,28,163,145,78,153,64,26,19,8,174,2,16,94,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,164,185,252,44,30,94,132,64,26,19,8,174,2,16,95,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,93,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,101,154,117,115,35,91,133,64,26,19,8,174,2,16,98,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,153,243,55,225,189,194,152,64,26,19,8,174,2,16,97,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,96,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,181,166,243,153,46,108,152,64,26,19,8,174,2,16,100,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,213,75,78,63,228,34,134,64,26,19,8,174,2,16,101,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,99,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,60,11,134,84,244,151,64,26,19,8,174,2,16,103,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,49,210,247,50,89,218,135,64,26,19,8,174,2,16,104,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,102,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,48,99,103,3,231,151,64,26,19,8,174,2,16,106,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,204,119,40,224,200,148,136,64,26,19,8,174,2,16,107,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,105,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,66,95,21,253,250,151,64,26,19,8,174,2,16,109,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,117,143,120,29,107,175,136,64,26,19,8,174,2,16,110,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,108,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,166,101,87,113,240,34,152,64,26,19,8,174,2,16,112,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,117,143,120,29,107,175,136,64,26,19,8,174,2,16,113,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,111,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,80,84,48,132,213,108,136,64,26,19,8,174,2,16,116,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,203,160,159,10,134,101,152,64,26,19,8,174,2,16,115,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,114,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,5,52,143,183,214,152,64,26,19,8,174,2,16,118,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,12,151,175,153,195,151,135,64,26,19,8,174,2,16,119,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,117,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,245,232,156,167,98,147,132,64,26,19,8,174,2,16,122,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,208,62,153,59,157,55,154,64,26,19,8,174,2,16,121,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,120,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,154,167,158,98,199,205,155,64,26,19,8,174,2,16,124,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,155,125,9,203,239,185,128,64,26,19,8,174,2,16,125,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,123,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,228,29,47,149,242,82,156,64,26,19,8,174,2,16,127,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,187,242,48,81,238,41,127,64,26,20,8,174,2,16,128,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,126,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,75,71,123,128,142,129,156,64,26,20,8,174,2,16,130,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,200,100,80,225,32,138,126,64,26,20,8,174,2,16,131,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,129,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,106,115,220,129,169,156,64,26,20,8,174,2,16,133,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,32,77,0,164,126,111,126,64,26,20,8,174,2,16,134,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,132,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,178,112,199,107,42,176,156,64,26,20,8,174,2,16,136,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,181,57,33,9,213,121,127,64,26,20,8,174,2,16,137,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,135,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,141,53,127,210,148,109,156,64,26,20,8,174,2,16,139,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,236,172,169,69,52,239,128,64,26,20,8,174,2,16,140,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,138,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,213,220,146,108,180,9,156,64,26,20,8,174,2,16,142,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,48,106,42,48,70,196,129,64,26,20,8,174,2,16,143,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,141,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,170,100,60,39,145,153,64,26,20,8,174,2,16,145,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,44,52,254,1,66,8,134,64,26,20,8,174,2,16,146,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,144,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,81,76,36,71,158,38,153,64,26,20,8,174,2,16,148,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,68,253,38,11,165,234,134,64,26,20,8,174,2,16,149,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,147,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,225,59,51,196,174,152,64,26,20,8,174,2,16,151,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,211,48,56,40,226,68,136,64,26,20,8,174,2,16,152,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,150,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,29,167,200,90,13,202,136,64,26,20,8,174,2,16,155,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,72,196,151,102,121,141,152,64,26,20,8,174,2,16,154,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,153,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,23,238,184,18,244,25,137,64,26,20,8,174,2,16,158,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,115,184,239,71,40,128,152,64,26,20,8,174,2,16,157,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,156,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,115,184,239,71,40,128,152,64,26,20,8,174,2,16,160,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,16,53,169,202,218,105,137,64,26,20,8,174,2,16,161,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,159,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,28,208,63,133,202,154,152,64,26,20,8,174,2,16,163,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,60,41,1,172,137,92,137,64,26,20,8,174,2,16,164,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,162,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,67,226,16,244,162,12,137,64,26,20,8,174,2,16,167,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,65,11,136,30,96,221,152,64,26,20,8,174,2,16,166,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,165,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,205,111,28,163,145,78,153,64,26,20,8,174,2,16,169,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,42,25,232,234,63,42,136,64,26,20,8,174,2,16,170,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,168,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,214,247,168,131,182,231,153,64,26,20,8,174,2,16,172,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,156,229,214,205,2,208,134,64,26,20,8,174,2,16,173,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,171,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,64,95,45,218,141,24,133,64,26,20,8,174,2,16,176,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,92,163,45,192,206,168,154,64,26,20,8,174,2,16,175,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,174,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,84,6,140,143,112,155,64,26,20,8,174,2,16,178,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,190,157,59,77,131,30,131,64,26,20,8,174,2,16,179,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,177,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,62,213,91,240,91,33,157,64,26,20,8,174,2,16,181,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,207,29,96,41,58,58,126,64,26,20,8,174,2,16,182,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,180,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,108,152,48,106,22,253,157,64,26,20,8,174,2,16,184,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,97,135,157,116,123,80,123,64,26,20,8,174,2,16,185,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,183,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,189,199,208,228,90,50,158,64,26,20,8,174,2,16,187,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,104,64,173,188,148,0,123,64,26,20,8,174,2,16,188,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,186,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,80,229,116,177,165,83,158,64,26,20,8,174,2,16,190,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,104,64,173,188,148,0,123,64,26,20,8,174,2,16,191,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,189,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,235,200,64,78,90,158,64,26,20,8,174,2,16,193,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,91,206,141,44,98,160,123,64,26,20,8,174,2,16,194,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,192,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,102,223,32,34,253,76,158,64,26,20,8,174,2,16,196,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,246,115,190,217,209,90,124,64,26,20,8,174,2,16,197,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,195,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,43,170,44,24,16,17,158,64,26,20,8,174,2,16,199,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,51,120,47,124,202,127,125,64,26,20,8,174,2,16,200,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,198,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,25,154,19,87,198,222,156,64,26,20,8,174,2,16,202,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,111,137,177,233,64,199,128,64,26,20,8,174,2,16,203,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,201,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,173,210,205,58,19,222,154,64,26,20,8,174,2,16,205,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,134,55,196,219,161,203,131,64,26,20,8,174,2,16,206,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,204,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,61,33,245,110,82,22,154,64,26,20,8,174,2,16,208,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,64,95,45,218,141,24,133,64,26,20,8,174,2,16,209,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,207,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,169,87,246,93,53,48,134,64,26,20,8,174,2,16,212,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,30,159,188,29,214,131,153,64,26,20,8,174,2,16,211,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,210,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,37,88,204,101,239,51,153,64,26,20,8,174,2,16,214,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,25,9,207,41,246,247,134,64,26,20,8,174,2,16,215,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,213,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,29,132,204,89,241,152,64,26,20,8,174,2,16,217,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,217,233,71,112,251,244,135,64,26,20,8,174,2,16,218,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,216,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,198,190,24,152,175,228,136,64,26,20,8,174,2,16,221,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,21,23,48,61,177,234,152,64,26,20,8,174,2,16,220,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,219,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,234,34,216,91,2,248,152,64,26,20,8,174,2,16,223,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,110,214,104,213,81,255,136,64,26,20,8,174,2,16,224,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,222,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,168,52,212,9,252,11,153,64,26,20,8,174,2,16,226,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,67,226,16,244,162,12,137,64,26,20,8,174,2,16,227,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,225,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,249,99,116,132,64,65,153,64,26,20,8,174,2,16,229,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,154,202,192,182,0,242,136,64,26,20,8,174,2,16,230,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,228,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,251,50,241,28,76,42,154,64,26,20,8,174,2,16,232,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,193,32,31,103,152,18,135,64,26,20,8,174,2,16,233,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,231,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,84,6,140,143,112,155,64,26,20,8,174,2,16,235,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,127,126,180,147,136,27,132,64,26,20,8,174,2,16,236,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,234,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,235,214,62,221,11,3,156,64,26,20,8,174,2,16,238,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,66,122,67,241,143,246,130,64,26,20,8,174,2,16,239,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,237,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,112,130,195,25,36,196,156,64,26,20,8,174,2,16,241,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,92,94,130,17,245,182,129,64,26,20,8,174,2,16,242,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,240,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,61,220,73,192,120,36,129,64,26,20,8,174,2,16,245,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,18,225,3,15,173,46,157,64,26,20,8,174,2,16,244,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,243,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,165,254,167,219,247,79,157,64,26,20,8,174,2,16,247,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,24,161,1,39,227,225,128,64,26,20,8,174,2,16,248,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,246,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,34,34,160,55,235,119,157,64,26,20,8,174,2,16,250,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,249,30,201,213,102,79,128,64,26,20,8,174,2,16,251,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,249,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,40,219,175,127,4,40,157,64,26,20,8,174,2,16,253,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,205,42,113,244,183,92,128,64,26,20,8,174,2,16,254,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,252,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,91,136,23,169,204,202,156,64,26,20,8,174,2,16,128,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,111,137,177,233,64,199,128,64,26,20,8,174,2,16,129,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,255,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,60,6,223,87,80,56,156,64,26,20,8,174,2,16,131,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,136,82,218,242,163,169,129,64,26,20,8,174,2,16,132,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,130,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,117,108,86,201,49,139,155,64,26,20,8,174,2,16,134,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,109,110,155,210,62,233,130,64,26,20,8,174,2,16,135,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,133,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,195,204,121,171,106,215,154,64,26,20,8,174,2,16,137,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,208,173,84,14,205,80,132,64,26,20,8,174,2,16,138,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,136,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,115,184,239,71,40,128,152,64,26,20,8,174,2,16,140,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,10,124,153,130,193,185,137,64,26,20,8,174,2,16,141,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,139,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,166,243,153,46,108,152,64,26,20,8,174,2,16,143,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,178,147,233,191,99,212,137,64,26,20,8,174,2,16,144,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,142,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,100,119,83,31,234,54,152,64,26,20,8,174,2,16,146,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,47,183,225,27,87,252,137,64,26,20,8,174,2,16,147,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,145,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,253,77,7,52,78,8,152,64,26,20,8,174,2,16,149,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,47,183,225,27,87,252,137,64,26,20,8,174,2,16,150,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,148,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,63,60,11,134,84,244,151,64,26,20,8,174,2,16,152,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,134,159,145,222,180,225,137,64,26,20,8,174,2,16,153,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,151,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,150,36,187,72,178,217,151,64,26,20,8,174,2,16,155,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,141,88,161,38,206,145,137,64,26,20,8,174,2,16,156,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,154,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,120,162,130,247,53,71,151,64,26,20,8,174,2,16,158,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,143,115,183,61,208,111,135,64,26,20,8,174,2,16,159,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,157,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,82,103,58,94,160,4,151,64,26,20,8,174,2,16,161,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,213,75,78,63,228,34,134,64,26,20,8,174,2,16,162,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,160,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,126,91,146,63,79,247,150,64,26,20,8,174,2,16,164,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,219,4,94,135,253,210,133,64,26,20,8,174,2,16,165,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,163,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,126,91,146,63,79,247,150,64,26,20,8,174,2,16,167,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,108,83,133,187,60,11,133,64,26,20,8,174,2,16,168,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,166,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,251,126,138,155,66,31,151,64,26,20,8,174,2,16,170,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,151,71,221,156,235,253,132,64,26,20,8,174,2,16,171,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,169,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,135,227,30,32,116,144,151,64,26,20,8,174,2,16,173,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,13,178,197,176,197,117,133,64,26,20,8,174,2,16,174,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,172,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,87,5,52,143,183,214,152,64,26,20,8,174,2,16,176,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,187,103,15,31,127,98,135,64,26,20,8,174,2,16,177,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,175,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,161,123,196,193,226,91,153,64,26,20,8,174,2,16,179,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,49,210,247,50,89,218,135,64,26,20,8,174,2,16,180,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,178,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,2,236,0,101,101,218,153,64,26,20,8,174,2,16,182,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,130,1,152,173,157,15,136,64,26,20,8,174,2,16,183,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,181,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,214,247,168,131,182,231,153,64,26,20,8,174,2,16,185,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,49,210,247,50,89,218,135,64,26,20,8,174,2,16,186,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,184,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,55,139,7,123,114,138,135,64,26,20,8,174,2,16,189,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,2,236,0,101,101,218,153,64,26,20,8,174,2,16,188,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,187,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,151,71,221,156,235,253,132,64,26,20,8,174,2,16,192,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,153,243,55,225,189,194,152,64,26,20,8,174,2,16,191,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,190,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,137,178,155,184,127,121,152,64,26,20,8,174,2,16,194,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,245,232,156,167,98,147,132,64,26,20,8,174,2,16,195,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,193,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,78,125,167,174,146,61,152,64,26,20,8,174,2,16,197,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,164,185,252,44,30,94,132,64,26,20,8,174,2,16,198,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,196,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,83,138,92,178,217,40,132,64,26,20,8,174,2,16,201,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,194,24,19,42,97,204,151,64,26,20,8,174,2,16,200,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,199,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,190,46,128,122,83,5,153,64,26,20,8,174,2,16,203,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,169,87,246,93,53,48,134,64,26,20,8,174,2,16,204,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,202,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,148,9,165,49,176,251,153,64,26,20,8,174,2,16,206,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,187,103,15,31,127,98,135,64,26,20,8,174,2,16,207,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,205,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,116,141,69,138,115,154,64,26,20,8,174,2,16,209,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,180,174,255,214,101,178,135,64,26,20,8,174,2,16,210,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,208,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,227,105,200,19,233,71,153,64,26,20,8,174,2,16,212,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,202,244,68,198,179,160,132,64,26,20,8,174,2,16,213,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,211,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,115,184,239,71,40,128,152,64,26,20,8,174,2,16,215,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,35,248,10,160,19,100,130,64,26,20,8,174,2,16,216,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,214,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,203,160,159,10,134,101,152,64,26,20,8,174,2,16,218,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,216,129,122,109,232,222,129,64,26,20,8,174,2,16,219,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,217,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,66,122,67,241,143,246,130,64,26,20,8,174,2,16,222,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,161,123,196,193,226,91,153,64,26,20,8,174,2,16,221,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,220,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,164,74,65,90,238,68,154,64,26,20,8,174,2,16,224,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,252,161,172,239,123,67,132,64,26,20,8,174,2,16,225,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,223,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,54,104,229,38,57,102,154,64,26,20,8,174,2,16,227,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,33,221,244,136,17,134,132,64,26,20,8,174,2,16,228,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,226,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,183,117,112,50,58,85,153,64,26,20,8,174,2,16,230,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,254,188,194,6,126,33,130,64,26,20,8,174,2,16,231,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,229,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,102,70,208,183,245,31,153,64,26,20,8,174,2,16,233,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,223,58,138,181,1,143,129,64,26,20,8,174,2,16,234,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,232,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,212,40,44,235,170,254,152,64,26,20,8,174,2,16,236,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,236,172,169,69,52,239,128,64,26,20,8,174,2,16,237,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,235,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,17,232,241,222,201,49,129,64,26,20,8,174,2,16,240,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,59,82,120,214,70,45,153,64,26,20,8,174,2,16,239,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,238,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,41,177,26,232,44,20,130,64,26,20,8,174,2,16,243,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,155,194,180,121,201,171,153,64,26,20,8,174,2,16,242,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,241,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,251,50,241,28,76,42,154,64,26,20,8,174,2,16,245,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,103,181,139,138,37,57,131,64,26,20,8,174,2,16,246,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,244,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,49,175,213,222,31,182,154,64,26,20,8,174,2,16,248,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,239,47,141,95,73,227,132,64,26,20,8,174,2,16,249,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,247,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,217,198,37,28,194,208,154,64,26,20,8,174,2,16,251,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,57,166,29,146,116,104,133,64,26,20,8,174,2,16,252,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,250,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,239,192,209,140,25,202,154,64,26,20,8,174,2,16,254,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,13,178,197,176,197,117,133,64,26,20,8,174,2,16,255,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,253,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,101,154,117,115,35,91,133,64,26,20,8,174,2,16,130,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,92,163,45,192,206,168,154,64,26,20,8,174,2,16,129,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,128,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,33,110,57,182,225,108,154,64,26,20,8,174,2,16,132,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,195,59,53,126,154,240,132,64,26,20,8,174,2,16,133,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,131,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,229,56,69,172,244,48,154,64,26,20,8,174,2,16,135,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,83,138,92,178,217,40,132,64,26,20,8,174,2,16,136,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,134,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,148,9,165,49,176,251,153,64,26,20,8,174,2,16,138,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,59,193,51,169,118,70,131,64,26,20,8,174,2,16,139,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,137,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,236,241,84,244,13,225,153,64,26,20,8,174,2,16,141,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,203,15,91,221,181,126,130,64,26,20,8,174,2,16,142,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,140,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,236,241,84,244,13,225,153,64,26,20,8,174,2,16,144,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,85,165,114,201,219,6,130,64,26,20,8,174,2,16,145,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,143,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,214,247,168,131,182,231,153,64,26,20,8,174,2,16,147,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,4,118,210,78,151,209,129,64,26,20,8,174,2,16,148,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,146,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,39,39,73,254,250,28,154,64,26,20,8,174,2,16,150,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,173,141,34,140,57,236,129,64,26,20,8,174,2,16,151,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,149,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,127,53,100,219,128,154,64,26,20,8,174,2,16,153,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,247,3,179,190,100,113,130,64,26,20,8,174,2,16,154,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,152,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,103,181,139,138,37,57,131,64,26,20,8,174,2,16,157,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,152,216,33,202,187,228,154,64,26,20,8,174,2,16,156,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,155,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,25,190,242,249,45,155,64,26,20,8,174,2,16,159,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,2,91,188,55,149,243,131,64,26,20,8,174,2,16,160,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,158,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,182,90,90,27,56,119,155,64,26,20,8,174,2,16,162,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,27,36,229,64,248,213,132,64,26,20,8,174,2,16,163,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,161,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,145,31,18,130,162,52,155,64,26,20,8,174,2,16,165,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,40,150,4,209,42,54,132,64,26,20,8,174,2,16,166,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,164,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,130,222,117,89,100,235,154,64,26,20,8,174,2,16,168,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,103,181,139,138,37,57,131,64,26,20,8,174,2,16,169,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,167,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,152,216,33,202,187,228,154,64,26,20,8,174,2,16,171,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,28,63,251,87,250,179,130,64,26,20,8,174,2,16,172,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,170,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,145,31,18,130,162,52,155,64,26,20,8,174,2,16,174,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,153,98,243,179,237,219,130,64,26,20,8,174,2,16,175,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,173,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,248,72,94,109,62,99,155,64,26,20,8,174,2,16,177,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,234,145,147,46,50,17,131,64,26,20,8,174,2,16,178,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,176,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,95,114,170,88,218,145,155,64,26,20,8,174,2,16,180,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,184,228,43,5,106,110,131,64,26,20,8,174,2,16,181,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,179,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,25,190,242,249,45,155,64,26,20,8,174,2,16,183,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,48,106,42,48,70,196,129,64,26,20,8,174,2,16,184,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,182,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,211,13,22,212,168,32,155,64,26,20,8,174,2,16,186,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,142,11,234,58,189,89,129,64,26,20,8,174,2,16,187,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,185,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,189,19,106,99,81,39,155,64,26,20,8,174,2,16,189,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,186,255,65,28,108,76,129,64,26,20,8,174,2,16,190,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,188,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,11,47,226,150,176,129,129,64,26,20,8,174,2,16,193,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,36,61,182,78,237,85,155,64,26,20,8,174,2,16,192,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,191,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,241,143,78,37,37,179,155,64,26,20,8,174,2,16,195,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,254,188,194,6,126,33,130,64,26,20,8,174,2,16,196,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,194,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,198,155,246,67,118,192,155,64,26,20,8,174,2,16,198,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,254,188,194,6,126,33,130,64,26,20,8,174,2,16,199,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,197,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,55,98,191,68,79,155,64,26,20,8,174,2,16,201,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,155,125,9,203,239,185,128,64,26,20,8,174,2,16,202,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,200,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,25,190,242,249,45,155,64,26,20,8,174,2,16,204,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,37,19,33,183,21,66,128,64,26,20,8,174,2,16,205,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,203,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,211,13,22,212,168,32,155,64,26,20,8,174,2,16,207,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,174,128,17,193,187,201,127,64,26,20,8,174,2,16,208,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,206,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,12,51,231,248,62,156,64,26,20,8,174,2,16,210,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,216,129,122,109,232,222,129,64,26,20,8,174,2,16,211,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,209,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,14,67,10,222,149,92,155,64,26,20,8,174,2,16,213,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,213,214,111,113,83,234,125,64,26,20,8,174,2,16,214,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,212,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,60,6,223,87,80,56,156,64,26,20,8,174,2,16,216,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,192,184,81,100,133,252,128,64,26,20,8,174,2,16,217,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,215,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,79,49,14,48,156,72,155,64,26,20,8,174,2,16,219,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,51,120,47,124,202,127,125,64,26,20,8,174,2,16,220,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,218,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,232,58,139,5,23,156,64,26,20,8,174,2,16,222,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,98,23,146,89,14,103,129,64,26,20,8,174,2,16,223,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,221,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,173,210,205,58,19,222,154,64,26,20,8,174,2,16,225,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,165,68,30,95,141,37,124,64,26,20,8,174,2,16,226,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,224,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,211,13,22,212,168,32,155,64,26,20,8,174,2,16,228,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,45,191,31,52,177,207,125,64,26,20,8,174,2,16,229,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,227,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,60,6,223,87,80,56,156,64,26,20,8,174,2,16,231,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,48,106,42,48,70,196,129,64,26,20,8,174,2,16,232,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,230,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,53,77,207,15,55,136,156,64,26,20,8,174,2,16,234,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,28,63,251,87,250,179,130,64,26,20,8,174,2,16,235,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,233,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,97,65,39,241,229,122,156,64,26,20,8,174,2,16,237,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,241,74,163,118,75,193,130,64,26,20,8,174,2,16,238,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,236,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,105,208,161,161,39,23,129,64,26,20,8,174,2,16,241,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,198,155,246,67,118,192,155,64,26,20,8,174,2,16,240,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,239,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,14,67,10,222,149,92,155,64,26,20,8,174,2,16,243,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,74,78,105,80,171,132,128,64,26,20,8,174,2,16,244,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,242,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,84,6,140,143,112,155,64,26,20,8,174,2,16,246,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,98,23,146,89,14,103,129,64,26,20,8,174,2,16,247,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,245,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,51,126,82,119,43,159,155,64,26,20,8,174,2,16,249,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,247,3,179,190,100,113,130,64,26,20,8,174,2,16,250,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,248,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,2,91,188,55,149,243,131,64,26,20,8,174,2,16,253,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,235,214,62,221,11,3,156,64,26,20,8,174,2,16,252,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,251,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,1,209,234,77,99,252,155,64,26,20,8,174,2,16,255,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,215,102,100,86,230,0,132,64,26,20,8,174,2,16,128,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,254,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,247,3,179,190,100,113,130,64,26,20,8,174,2,16,131,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,211,13,22,212,168,32,155,64,26,20,8,174,2,16,130,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,129,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,239,192,209,140,25,202,154,64,26,20,8,174,2,16,133,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,129,153,202,170,138,249,129,64,26,20,8,174,2,16,134,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,132,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,127,53,100,219,128,154,64,26,20,8,174,2,16,136,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,92,94,130,17,245,182,129,64,26,20,8,174,2,16,137,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,135,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,114,157,217,48,38,162,154,64,26,20,8,174,2,16,139,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,59,193,51,169,118,70,131,64,26,20,8,174,2,16,140,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,138,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,217,198,37,28,194,208,154,64,26,20,8,174,2,16,142,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,208,173,84,14,205,80,132,64,26,20,8,174,2,16,143,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,141,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,217,198,37,28,194,208,154,64,26,20,8,174,2,16,145,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,33,221,244,136,17,134,132,64,26,20,8,174,2,16,146,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,144,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,33,221,244,136,17,134,132,64,26,20,8,174,2,16,149,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,5,187,125,253,112,195,154,64,26,20,8,174,2,16,148,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,147,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,179,139,221,130,44,142,154,64,26,20,8,174,2,16,151,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,40,150,4,209,42,54,132,64,26,20,8,174,2,16,152,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,150,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,177,188,96,234,32,165,153,64,26,20,8,174,2,16,154,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,28,63,251,87,250,179,130,64,26,20,8,174,2,16,155,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,153,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,245,121,225,212,50,122,154,64,26,20,8,174,2,16,157,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,7,249,181,104,172,197,133,64,26,20,8,174,2,16,158,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,156,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,96,141,192,111,220,111,153,64,26,20,8,174,2,16,160,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,190,157,59,77,131,30,131,64,26,20,8,174,2,16,161,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,159,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,21,23,48,61,177,234,152,64,26,20,8,174,2,16,163,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,166,212,18,68,32,60,130,64,26,20,8,174,2,16,164,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,162,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,249,99,116,132,64,65,153,64,26,20,8,174,2,16,166,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,221,31,116,158,255,176,131,64,26,20,8,174,2,16,167,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,165,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,170,100,60,39,145,153,64,26,20,8,174,2,16,169,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,114,12,149,3,86,187,132,64,26,20,8,174,2,16,170,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,168,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,72,196,151,102,121,141,152,64,26,20,8,174,2,16,172,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,177,43,28,189,80,190,131,64,26,20,8,174,2,16,173,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,171,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,72,196,151,102,121,141,152,64,26,20,8,174,2,16,175,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,2,91,188,55,149,243,131,64,26,20,8,174,2,16,176,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,174,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,190,46,128,122,83,5,153,64,26,20,8,174,2,16,178,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,94,225,101,43,10,171,133,64,26,20,8,174,2,16,179,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,177,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,166,243,153,46,108,152,64,26,20,8,174,2,16,181,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,108,83,133,187,60,11,133,64,26,20,8,174,2,16,182,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,180,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,2,91,188,55,149,243,131,64,26,20,8,174,2,16,185,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,47,251,110,93,22,171,151,64,26,20,8,174,2,16,184,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,183,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,238,12,107,11,16,191,151,64,26,20,8,174,2,16,187,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,245,232,156,167,98,147,132,64,26,20,8,174,2,16,188,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,186,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,131,249,139,112,102,201,152,64,26,20,8,174,2,16,190,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,130,1,152,173,157,15,136,64,26,20,8,174,2,16,191,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,189,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,42,15,216,90,224,151,64,26,20,8,174,2,16,193,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,162,158,230,21,28,128,134,64,26,20,8,174,2,16,194,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,192,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,144,134,73,60,51,151,64,26,20,8,174,2,16,196,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,232,118,125,23,48,51,133,64,26,20,8,174,2,16,197,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,195,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,194,24,19,42,97,204,151,64,26,20,8,174,2,16,199,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,237,20,119,72,71,5,135,64,26,20,8,174,2,16,200,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,198,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,225,59,51,196,174,152,64,26,20,8,174,2,16,202,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,104,29,89,141,56,79,137,64,26,20,8,174,2,16,203,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,201,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,203,206,226,209,117,151,64,26,20,8,174,2,16,205,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,193,32,31,103,152,18,135,64,26,20,8,174,2,16,206,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,204,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,144,107,171,0,153,41,152,64,26,20,8,174,2,16,208,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,67,226,16,244,162,12,137,64,26,20,8,174,2,16,209,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,207,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,191,5,9,80,150,52,137,64,26,20,8,174,2,16,212,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,122,113,255,143,65,48,152,64,26,20,8,174,2,16,211,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,210,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,166,101,87,113,240,34,152,64,26,20,8,174,2,16,214,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,191,5,9,80,150,52,137,64,26,20,8,174,2,16,215,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,213,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,154,202,192,182,0,242,136,64,26,20,8,174,2,16,218,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,63,60,11,134,84,244,151,64,26,20,8,174,2,16,217,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,216,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,144,134,73,60,51,151,64,26,20,8,174,2,16,220,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,136,186,167,245,182,191,135,64,26,20,8,174,2,16,221,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,219,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,41,66,95,21,253,250,151,64,26,20,8,174,2,16,223,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,47,183,225,27,87,252,137,64,26,20,8,174,2,16,224,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,222,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,163,150,218,216,228,57,151,64,26,20,8,174,2,16,226,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,255,36,144,9,145,55,136,64,26,20,8,174,2,16,227,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,225,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,74,223,173,125,123,107,150,64,26,20,8,174,2,16,229,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,219,4,94,135,253,210,133,64,26,20,8,174,2,16,230,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,228,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,94,225,101,43,10,171,133,64,26,20,8,174,2,16,233,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,95,217,89,238,210,100,150,64,26,20,8,174,2,16,232,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,231,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,246,253,186,29,134,150,64,26,20,8,174,2,16,235,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,94,225,101,43,10,171,133,64,26,20,8,174,2,16,236,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,234,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,79,234,32,254,233,150,64,26,20,8,174,2,16,238,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,0,64,166,32,147,21,134,64,26,20,8,174,2,16,239,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,237,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,6,214,147,20,115,161,152,64,26,20,8,174,2,16,241,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,248,107,128,193,119,135,136,64,26,20,8,174,2,16,242,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,240,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,107,48,99,103,3,231,151,64,26,20,8,174,2,16,244,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,250,134,150,216,121,101,134,64,26,20,8,174,2,16,245,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,243,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,194,24,19,42,97,204,151,64,26,20,8,174,2,16,247,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,101,154,117,115,35,91,133,64,26,20,8,174,2,16,248,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,246,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,227,105,200,19,233,71,153,64,26,20,8,174,2,16,250,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,36,96,216,162,38,122,136,64,26,20,8,174,2,16,251,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,249,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,146,58,40,153,164,18,153,64,26,20,8,174,2,16,253,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,5,222,159,81,170,231,135,64,26,20,8,174,2,16,254,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,252,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,50,202,235,245,33,148,152,64,26,20,8,174,2,16,128,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,175,16,6,166,78,224,133,64,26,20,8,174,2,16,129,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,255,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,158,0,237,228,4,174,132,64,26,20,8,174,2,16,132,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,181,166,243,153,46,108,152,64,26,20,8,174,2,16,131,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,130,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,159,172,71,41,215,114,152,64,26,20,8,174,2,16,134,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,33,221,244,136,17,134,132,64,26,20,8,174,2,16,135,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,133,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,72,196,151,102,121,141,152,64,26,20,8,174,2,16,137,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,33,221,244,136,17,134,132,64,26,20,8,174,2,16,138,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,136,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,109,255,223,255,14,208,152,64,26,20,8,174,2,16,140,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,114,12,149,3,86,187,132,64,26,20,8,174,2,16,141,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,139,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,190,46,128,122,83,5,153,64,26,20,8,174,2,16,143,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,189,130,37,54,129,64,133,64,26,20,8,174,2,16,144,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,142,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,94,32,245,151,58,153,64,26,20,8,174,2,16,146,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,0,64,166,32,147,21,134,64,26,20,8,174,2,16,147,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,145,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,109,255,223,255,14,208,152,64,26,20,8,174,2,16,149,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,108,83,133,187,60,11,133,64,26,20,8,174,2,16,150,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,148,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,175,237,227,81,21,188,152,64,26,20,8,174,2,16,152,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,215,102,100,86,230,0,132,64,26,20,8,174,2,16,153,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,151,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,177,43,28,189,80,190,131,64,26,20,8,174,2,16,156,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,87,5,52,143,183,214,152,64,26,20,8,174,2,16,155,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,154,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,102,70,208,183,245,31,153,64,26,20,8,174,2,16,158,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,221,31,116,158,255,176,131,64,26,20,8,174,2,16,159,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,157,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,96,141,192,111,220,111,153,64,26,20,8,174,2,16,161,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,177,43,28,189,80,190,131,64,26,20,8,174,2,16,162,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,160,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,177,188,96,234,32,165,153,64,26,20,8,174,2,16,164,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,2,91,188,55,149,243,131,64,26,20,8,174,2,16,165,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,163,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,46,224,88,70,20,205,153,64,26,20,8,174,2,16,167,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,208,173,84,14,205,80,132,64,26,20,8,174,2,16,168,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,166,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,202,244,68,198,179,160,132,64,26,20,8,174,2,16,171,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,133,200,8,9,114,178,153,64,26,20,8,174,2,16,170,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,169,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,199,182,12,91,120,158,153,64,26,20,8,174,2,16,173,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,83,138,92,178,217,40,132,64,26,20,8,174,2,16,174,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,172,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,221,176,184,203,207,151,153,64,26,20,8,174,2,16,176,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,184,228,43,5,106,110,131,64,26,20,8,174,2,16,177,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,175,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,197,86,75,149,156,206,130,64,26,20,8,174,2,16,180,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,199,182,12,91,120,158,153,64,26,20,8,174,2,16,179,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,178,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,67,218,4,183,107,198,153,64,26,20,8,174,2,16,182,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,79,236,98,129,194,86,130,64,26,20,8,174,2,16,183,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,181,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,21,77,80,1,9,154,64,26,20,8,174,2,16,185,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,41,177,26,232,44,20,130,64,26,20,8,174,2,16,186,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,184,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,98,92,61,8,232,88,154,64,26,20,8,174,2,16,188,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,85,165,114,201,219,6,130,64,26,20,8,174,2,16,189,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,187,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,179,139,221,130,44,142,154,64,26,20,8,174,2,16,191,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,166,212,18,68,32,60,130,64,26,20,8,174,2,16,192,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,190,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,49,175,213,222,31,182,154,64,26,20,8,174,2,16,194,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,28,63,251,87,250,179,130,64,26,20,8,174,2,16,195,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,193,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,217,198,37,28,194,208,154,64,26,20,8,174,2,16,197,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,53,8,36,97,93,150,131,64,26,20,8,174,2,16,198,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,196,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,5,187,125,253,112,195,154,64,26,20,8,174,2,16,200,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,177,43,28,189,80,190,131,64,26,20,8,174,2,16,201,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,199,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,135,151,133,161,125,155,154,64,26,20,8,174,2,16,203,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,134,55,196,219,161,203,131,64,26,20,8,174,2,16,204,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,202,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,76,98,145,151,144,95,154,64,26,20,8,174,2,16,206,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,221,31,116,158,255,176,131,64,26,20,8,174,2,16,207,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,205,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,251,50,241,28,76,42,154,64,26,20,8,174,2,16,209,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,234,145,147,46,50,17,131,64,26,20,8,174,2,16,210,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,208,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,21,77,80,1,9,154,64,26,20,8,174,2,16,212,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,210,200,106,37,207,46,130,64,26,20,8,174,2,16,213,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,211,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,30,90,17,111,252,145,128,64,26,20,8,174,2,16,216,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,36,61,182,78,237,85,155,64,26,20,8,174,2,16,215,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,214,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,117,108,86,201,49,139,155,64,26,20,8,174,2,16,218,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,24,161,1,39,227,225,128,64,26,20,8,174,2,16,219,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,217,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,29,132,166,6,212,165,155,64,26,20,8,174,2,16,221,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,11,47,226,150,176,129,129,64,26,20,8,174,2,16,222,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,220,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,95,114,170,88,218,145,155,64,26,20,8,174,2,16,224,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,92,94,130,17,245,182,129,64,26,20,8,174,2,16,225,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,223,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,129,153,202,170,138,249,129,64,26,20,8,174,2,16,228,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,248,72,94,109,62,99,155,64,26,20,8,174,2,16,227,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,174,2,16,226,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,174,2,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,247,38,18,244,38,10,241,38,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,51,50,57,50,97,51,26,19,8,176,2,16,3,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,176,2,16,4,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,207,37,10,6,112,111,105,110,116,115,18,196,37,18,193,37,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,143,64,26,19,8,176,2,16,7,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,113,64,26,19,8,176,2,16,8,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,6,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,143,64,26,19,8,176,2,16,10,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,113,64,26,19,8,176,2,16,11,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,9,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,142,64,26,19,8,176,2,16,13,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,113,64,26,19,8,176,2,16,14,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,12,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,138,64,26,19,8,176,2,16,16,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,120,64,26,19,8,176,2,16,17,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,15,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,137,64,26,19,8,176,2,16,19,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,121,64,26,19,8,176,2,16,20,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,18,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,133,64,26,19,8,176,2,16,22,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,125,64,26,19,8,176,2,16,23,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,21,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,132,64,26,19,8,176,2,16,25,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,126,64,26,19,8,176,2,16,26,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,24,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,128,64,26,19,8,176,2,16,29,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,129,64,26,19,8,176,2,16,28,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,27,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,129,64,26,19,8,176,2,16,31,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,128,64,26,19,8,176,2,16,32,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,30,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,133,64,26,19,8,176,2,16,34,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,125,64,26,19,8,176,2,16,35,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,33,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,137,64,26,19,8,176,2,16,37,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,122,64,26,19,8,176,2,16,38,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,36,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,140,64,26,19,8,176,2,16,40,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,120,64,26,19,8,176,2,16,41,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,39,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,142,64,26,19,8,176,2,16,43,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,119,64,26,19,8,176,2,16,44,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,42,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,141,64,26,19,8,176,2,16,46,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,121,64,26,19,8,176,2,16,47,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,45,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,135,64,26,19,8,176,2,16,49,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,176,2,16,50,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,48,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,128,64,26,19,8,176,2,16,53,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,135,64,26,19,8,176,2,16,52,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,51,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,128,64,26,19,8,176,2,16,56,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,135,64,26,19,8,176,2,16,55,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,54,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,128,64,26,19,8,176,2,16,59,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,136,64,26,19,8,176,2,16,58,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,57,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,139,64,26,19,8,176,2,16,61,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,126,64,26,19,8,176,2,16,62,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,60,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,141,64,26,19,8,176,2,16,64,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,125,64,26,19,8,176,2,16,65,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,63,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,141,64,26,19,8,176,2,16,67,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,126,64,26,19,8,176,2,16,68,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,66,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,141,64,26,19,8,176,2,16,70,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,127,64,26,19,8,176,2,16,71,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,69,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,141,64,26,19,8,176,2,16,73,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,128,64,26,19,8,176,2,16,74,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,72,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,142,64,26,19,8,176,2,16,76,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,176,2,16,77,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,75,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,128,64,26,19,8,176,2,16,80,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,142,64,26,19,8,176,2,16,79,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,78,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,144,64,26,19,8,176,2,16,82,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,127,64,26,19,8,176,2,16,83,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,81,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,145,64,26,19,8,176,2,16,85,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,125,64,26,19,8,176,2,16,86,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,84,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,146,64,26,19,8,176,2,16,88,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,127,64,26,19,8,176,2,16,89,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,87,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,146,64,26,19,8,176,2,16,91,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,128,64,26,19,8,176,2,16,92,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,90,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,232,128,64,26,19,8,176,2,16,95,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,146,64,26,19,8,176,2,16,94,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,93,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,129,64,26,19,8,176,2,16,98,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,146,64,26,19,8,176,2,16,97,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,96,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,147,64,26,19,8,176,2,16,100,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,129,64,26,19,8,176,2,16,101,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,99,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,147,64,26,19,8,176,2,16,103,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,129,64,26,19,8,176,2,16,104,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,102,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,147,64,26,19,8,176,2,16,106,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,130,64,26,19,8,176,2,16,107,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,105,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,148,64,26,19,8,176,2,16,109,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,129,64,26,19,8,176,2,16,110,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,108,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,149,64,26,19,8,176,2,16,112,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,124,64,26,19,8,176,2,16,113,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,111,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,150,64,26,19,8,176,2,16,115,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,120,64,26,19,8,176,2,16,116,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,114,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,121,64,26,19,8,176,2,16,119,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,150,64,26,19,8,176,2,16,118,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,117,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,150,64,26,19,8,176,2,16,121,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,121,64,26,19,8,176,2,16,122,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,120,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,150,64,26,19,8,176,2,16,124,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,122,64,26,19,8,176,2,16,125,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,123,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,150,64,26,19,8,176,2,16,127,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,123,64,26,20,8,176,2,16,128,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,126,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,150,64,26,20,8,176,2,16,130,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,80,123,64,26,20,8,176,2,16,131,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,20,8,176,2,16,129,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,151,64,26,20,8,176,2,16,133,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,120,64,26,20,8,176,2,16,134,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,20,8,176,2,16,132,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,5,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,176,2,16,2,26,12,99,70,121,203,152,207,109,6,237,70,107,251,18,19,8,176,2,16,1,26,12,99,70,121,203,152,207,109,6,237,70,107,251,10,204,14,18,201,14,10,198,14,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,177,2,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,177,2,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,177,2,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,64,26,19,8,177,2,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,97,64,26,19,8,177,2,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,97,64,26,19,8,177,2,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,131,64,26,19,8,177,2,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,130,64,26,19,8,177,2,16,13,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,101,64,26,19,8,177,2,16,14,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,12,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,130,64,26,19,8,177,2,16,16,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,102,64,26,19,8,177,2,16,17,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,15,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,130,64,26,19,8,177,2,16,19,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,102,64,26,19,8,177,2,16,20,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,18,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,103,64,26,19,8,177,2,16,23,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,130,64,26,19,8,177,2,16,22,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,21,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,131,64,26,19,8,177,2,16,25,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,103,64,26,19,8,177,2,16,26,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,24,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,103,64,26,19,8,177,2,16,29,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,131,64,26,19,8,177,2,16,28,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,27,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,131,64,26,19,8,177,2,16,31,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,177,2,16,32,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,30,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,131,64,26,19,8,177,2,16,34,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,104,64,26,19,8,177,2,16,35,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,33,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,131,64,26,19,8,177,2,16,37,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,104,64,26,19,8,177,2,16,38,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,36,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,134,64,26,19,8,177,2,16,40,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,104,64,26,19,8,177,2,16,41,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,39,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,134,64,26,19,8,177,2,16,43,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,104,64,26,19,8,177,2,16,44,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,42,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,105,64,26,19,8,177,2,16,47,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,134,64,26,19,8,177,2,16,46,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,45,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,135,64,26,19,8,177,2,16,49,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,103,64,26,19,8,177,2,16,50,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,48,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,177,2,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,246,228,2,18,242,228,2,10,238,228,2,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,178,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,178,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,178,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,203,227,2,10,6,112,111,105,110,116,115,18,191,227,2,18,187,227,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,26,229,125,241,148,33,157,64,26,19,8,178,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,10,78,109,98,34,83,142,64,26,19,8,178,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,211,105,82,170,175,189,156,64,26,19,8,178,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,133,75,81,119,105,136,142,64,26,19,8,178,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,135,116,137,145,65,219,155,64,26,19,8,178,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,95,72,110,81,2,203,142,64,26,19,8,178,2,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,73,53,140,176,189,142,64,26,19,8,178,2,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,12,119,165,124,250,165,155,64,26,19,8,178,2,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,248,150,15,174,132,155,64,26,19,8,178,2,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,228,74,138,60,187,149,142,64,26,19,8,178,2,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,145,121,193,103,179,112,155,64,26,19,8,178,2,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,237,79,194,18,45,43,142,64,26,19,8,178,2,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,225,249,36,133,10,106,155,64,26,19,8,178,2,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,200,93,220,31,38,6,141,64,26,19,8,178,2,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,121,245,179,233,70,199,155,64,26,19,8,178,2,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,49,115,74,238,73,65,139,64,26,19,8,178,2,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,16,241,66,78,131,36,156,64,26,19,8,178,2,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,125,121,16,58,24,188,138,64,26,19,8,178,2,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,229,125,129,213,219,94,138,64,26,19,8,178,2,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,35,234,181,199,6,183,156,64,26,19,8,178,2,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,135,99,140,94,225,66,157,64,26,19,8,178,2,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,201,127,214,133,230,54,138,64,26,19,8,178,2,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,93,141,77,193,186,157,64,26,19,8,178,2,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,40,127,15,75,56,68,138,64,26,19,8,178,2,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,224,215,42,31,74,57,158,64,26,19,8,178,2,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,191,122,158,175,116,161,138,64,26,19,8,178,2,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,144,114,131,179,155,78,139,64,26,19,8,178,2,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,134,82,143,43,129,170,158,64,26,19,8,178,2,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,79,172,5,26,237,158,64,26,19,8,178,2,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,162,107,246,44,31,225,139,64,26,19,8,178,2,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,139,204,44,253,9,41,159,64,26,19,8,178,2,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,105,94,163,90,212,248,140,64,26,19,8,178,2,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,76,201,223,178,47,159,64,26,19,8,178,2,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,190,88,164,73,180,112,141,64,26,19,8,178,2,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,205,243,55,184,27,159,64,26,19,8,178,2,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,237,79,194,18,45,43,142,64,26,19,8,178,2,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,80,58,123,118,210,158,64,26,19,8,178,2,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,133,75,81,119,105,136,142,64,26,19,8,178,2,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,85,171,22,58,117,158,64,26,19,8,178,2,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,38,76,24,178,23,123,142,64,26,19,8,178,2,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,86,0,199,68,77,158,64,26,19,8,178,2,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,209,81,23,195,55,3,142,64,26,19,8,178,2,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,224,215,42,31,74,57,158,64,26,19,8,178,2,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,133,92,78,170,201,32,141,64,26,19,8,178,2,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,86,0,199,68,77,158,64,26,19,8,178,2,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,77,113,245,61,63,105,139,64,26,19,8,178,2,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,243,208,157,152,205,203,158,64,26,19,8,178,2,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,106,128,157,192,148,41,138,64,26,19,8,178,2,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,31,139,212,167,38,71,137,64,26,19,8,178,2,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,72,203,158,135,173,67,159,64,26,19,8,178,2,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,30,45,145,87,62,160,64,26,19,8,178,2,16,82,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,107,145,154,243,244,193,136,64,26,19,8,178,2,16,83,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,81,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,230,142,126,8,60,247,136,64,26,19,8,178,2,16,86,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,171,156,59,254,163,95,160,64,26,19,8,178,2,16,85,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,84,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,27,74,107,240,128,160,64,26,19,8,178,2,16,88,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,248,135,241,129,191,137,137,64,26,19,8,178,2,16,89,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,87,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,27,74,107,240,128,160,64,26,19,8,178,2,16,91,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,210,132,14,92,88,204,137,64,26,19,8,178,2,16,92,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,90,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,199,244,38,152,147,159,64,26,19,8,178,2,16,94,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,1,107,47,242,112,238,139,64,26,19,8,178,2,16,95,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,93,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,153,75,2,165,4,61,159,64,26,19,8,178,2,16,97,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,96,106,104,183,194,251,139,64,26,19,8,178,2,16,98,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,96,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,233,203,101,194,91,54,159,64,26,19,8,178,2,16,100,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,20,117,159,158,84,25,139,64,26,19,8,178,2,16,101,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,99,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,125,121,16,58,24,188,138,64,26,19,8,178,2,16,104,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,6,202,16,18,81,94,159,64,26,19,8,178,2,16,103,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,102,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,224,198,45,236,233,160,159,64,26,19,8,178,2,16,106,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,68,125,186,154,45,108,138,64,26,19,8,178,2,16,107,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,105,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,105,67,231,168,43,234,159,64,26,19,8,178,2,16,109,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,40,127,15,75,56,68,138,64,26,19,8,178,2,16,110,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,108,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,95,9,120,8,39,160,64,26,19,8,178,2,16,112,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,40,127,15,75,56,68,138,64,26,19,8,178,2,16,113,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,111,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,237,157,201,115,0,69,160,64,26,19,8,178,2,16,115,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,163,124,243,95,127,121,138,64,26,19,8,178,2,16,116,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,114,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,197,221,23,229,84,72,160,64,26,19,8,178,2,16,118,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,125,121,16,58,24,188,138,64,26,19,8,178,2,16,119,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,117,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,22,94,123,2,172,65,160,64,26,19,8,178,2,16,121,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,87,118,45,20,177,254,138,64,26,19,8,178,2,16,122,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,120,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,94,66,61,90,52,160,64,26,19,8,178,2,16,124,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,210,115,17,41,248,51,139,64,26,19,8,178,2,16,125,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,123,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,110,18,108,10,106,10,41,10,1,121,18,36,26,34,8,4,18,8,238,113,188,120,237,91,139,64,26,20,8,178,2,16,128,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,128,31,187,6,180,35,160,64,26,19,8,178,2,16,127,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,126,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,91,196,17,1,49,214,159,64,26,20,8,178,2,16,130,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,238,113,188,120,237,91,139,64,26,20,8,178,2,16,131,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,129,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,91,196,17,1,49,214,159,64,26,20,8,178,2,16,133,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,182,117,102,217,2,12,139,64,26,20,8,178,2,16,134,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,132,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,67,231,168,43,234,159,64,26,20,8,178,2,16,136,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,30,122,215,116,198,174,138,64,26,20,8,178,2,16,137,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,135,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,114,160,229,94,185,15,160,64,26,20,8,178,2,16,139,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,134,126,72,16,138,81,138,64,26,20,8,178,2,16,140,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,138,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,172,129,43,54,241,14,138,64,26,20,8,178,2,16,143,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,7,223,165,90,177,45,160,64,26,20,8,178,2,16,142,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,141,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,252,28,159,27,251,88,160,64,26,20,8,178,2,16,145,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,239,130,185,171,77,244,137,64,26,20,8,178,2,16,146,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,144,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,240,90,152,220,68,132,160,64,26,20,8,178,2,16,148,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,172,129,43,54,241,14,138,64,26,20,8,178,2,16,149,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,147,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,26,131,48,66,142,160,64,26,20,8,178,2,16,151,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,163,124,243,95,127,121,138,64,26,20,8,178,2,16,152,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,150,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,156,59,254,163,95,160,64,26,20,8,178,2,16,154,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,144,114,131,179,155,78,139,64,26,20,8,178,2,16,155,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,153,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,7,223,165,90,177,45,160,64,26,20,8,178,2,16,157,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,162,107,246,44,31,225,139,64,26,20,8,178,2,16,158,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,156,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,68,81,1,182,36,197,158,64,26,20,8,178,2,16,160,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,48,98,77,187,233,168,140,64,26,20,8,178,2,16,161,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,159,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,158,214,156,169,237,83,158,64,26,20,8,178,2,16,163,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,124,104,19,7,184,35,140,64,26,20,8,178,2,16,164,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,162,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,158,214,156,169,237,83,158,64,26,20,8,178,2,16,166,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,49,115,74,238,73,65,139,64,26,20,8,178,2,16,167,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,165,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,85,114,81,232,103,158,64,26,20,8,178,2,16,169,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,191,122,158,175,116,161,138,64,26,20,8,178,2,16,170,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,168,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,195,200,130,156,244,120,159,64,26,20,8,178,2,16,172,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,220,137,70,50,202,97,137,64,26,20,8,178,2,16,173,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,171,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,91,196,17,1,49,214,159,64,26,20,8,178,2,16,175,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,220,137,70,50,202,97,137,64,26,20,8,178,2,16,176,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,174,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,31,187,6,180,35,160,64,26,20,8,178,2,16,178,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,21,134,156,209,180,177,137,64,26,20,8,178,2,16,179,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,177,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,239,130,185,171,77,244,137,64,26,20,8,178,2,16,182,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,223,30,244,203,5,49,160,64,26,20,8,178,2,16,181,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,180,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,62,30,45,145,87,62,160,64,26,20,8,178,2,16,184,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,163,124,243,95,127,121,138,64,26,20,8,178,2,16,185,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,183,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,237,157,201,115,0,69,160,64,26,20,8,178,2,16,187,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,182,117,102,217,2,12,139,64,26,20,8,178,2,16,188,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,186,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,238,69,3,148,228,180,159,64,26,20,8,178,2,16,190,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,105,94,163,90,212,248,140,64,26,20,8,178,2,16,191,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,189,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,20,73,230,185,75,114,159,64,26,20,8,178,2,16,193,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,228,91,135,111,27,46,141,64,26,20,8,178,2,16,194,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,192,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,76,201,223,178,47,159,64,26,20,8,178,2,16,196,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,162,90,249,249,190,72,141,64,26,20,8,178,2,16,197,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,195,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,207,72,232,194,243,158,64,26,20,8,178,2,16,199,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,67,91,192,52,109,59,141,64,26,20,8,178,2,16,200,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,198,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,162,80,58,123,118,210,158,64,26,20,8,178,2,16,202,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,200,93,220,31,38,6,141,64,26,20,8,178,2,16,203,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,201,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,209,159,30,36,11,29,160,64,26,20,8,178,2,16,205,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,153,119,187,137,13,228,138,64,26,20,8,178,2,16,206,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,204,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,157,29,102,86,169,75,160,64,26,20,8,178,2,16,208,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,210,115,17,41,248,51,139,64,26,20,8,178,2,16,209,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,207,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,27,17,166,158,115,160,64,26,20,8,178,2,16,211,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,57,86,136,94,251,165,141,64,26,20,8,178,2,16,212,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,210,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,223,108,149,95,32,160,64,26,20,8,178,2,16,214,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,0,73,53,140,176,189,142,64,26,20,8,178,2,16,215,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,213,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,48,71,145,9,65,154,159,64,26,20,8,178,2,16,217,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,152,68,196,240,236,26,143,64,26,20,8,178,2,16,218,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,216,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,30,78,30,144,189,7,159,64,26,20,8,178,2,16,220,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,180,66,111,64,226,66,143,64,26,20,8,178,2,16,221,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,219,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,53,210,43,14,42,177,158,64,26,20,8,178,2,16,223,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,172,129,43,54,241,14,138,64,26,20,8,178,2,16,224,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,222,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,101,201,73,215,162,107,159,64,26,20,8,178,2,16,226,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,21,134,156,209,180,177,137,64,26,20,8,178,2,16,227,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,225,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,76,157,2,57,82,82,160,64,26,20,8,178,2,16,229,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,115,116,216,99,166,38,139,64,26,20,8,178,2,16,230,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,228,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,237,157,201,115,0,69,160,64,26,20,8,178,2,16,232,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,1,107,47,242,112,238,139,64,26,20,8,178,2,16,233,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,231,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,48,98,77,187,233,168,140,64,26,20,8,178,2,16,236,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,169,223,108,149,95,32,160,64,26,20,8,178,2,16,235,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,234,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,34,200,187,97,70,134,159,64,26,20,8,178,2,16,238,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,57,86,136,94,251,165,141,64,26,20,8,178,2,16,239,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,237,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,19,83,165,56,148,232,141,64,26,20,8,178,2,16,242,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,233,203,101,194,91,54,159,64,26,20,8,178,2,16,241,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,240,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,44,222,240,106,24,180,157,64,26,20,8,178,2,16,244,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,105,77,166,39,116,96,142,64,26,20,8,178,2,16,245,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,243,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,244,225,154,203,45,100,157,64,26,20,8,178,2,16,247,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,143,80,137,77,219,29,142,64,26,20,8,178,2,16,248,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,246,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,40,100,83,153,143,53,157,64,26,20,8,178,2,16,250,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,124,87,22,212,87,139,141,64,26,20,8,178,2,16,251,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,249,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,26,229,125,241,148,33,157,64,26,20,8,178,2,16,253,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,172,95,49,208,48,222,140,64,26,20,8,178,2,16,254,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,252,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,120,228,182,182,230,46,157,64,26,20,8,178,2,16,128,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,1,107,47,242,112,238,139,64,26,20,8,178,2,16,129,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,255,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,220,155,186,13,220,157,64,26,20,8,178,2,16,131,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,2,124,44,37,209,134,138,64,26,20,8,178,2,16,132,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,130,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,84,228,219,139,130,158,64,26,20,8,178,2,16,134,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,78,130,242,112,159,1,138,64,26,20,8,178,2,16,135,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,133,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,76,201,223,178,47,159,64,26,20,8,178,2,16,137,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,49,132,71,33,170,217,137,64,26,20,8,178,2,16,138,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,136,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,143,70,202,206,146,167,159,64,26,20,8,178,2,16,140,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,239,130,185,171,77,244,137,64,26,20,8,178,2,16,141,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,139,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,40,127,15,75,56,68,138,64,26,20,8,178,2,16,144,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,200,66,32,110,125,247,159,64,26,20,8,178,2,16,143,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,142,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,220,120,73,255,105,201,138,64,26,20,8,178,2,16,147,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,169,223,108,149,95,32,160,64,26,20,8,178,2,16,146,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,145,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,63,198,102,177,59,174,159,64,26,20,8,178,2,16,149,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,161,73,252,198,94,176,142,64,26,20,8,178,2,16,150,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,148,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,199,59,226,185,101,213,143,64,26,20,8,178,2,16,153,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,200,83,29,161,221,143,158,64,26,20,8,178,2,16,152,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,151,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,92,255,215,100,213,157,64,26,20,8,178,2,16,155,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,80,156,255,73,255,11,144,64,26,20,8,178,2,16,156,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,154,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,30,95,27,195,29,160,157,64,26,20,8,178,2,16,158,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,80,156,255,73,255,11,144,64,26,20,8,178,2,16,159,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,157,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,120,228,182,182,230,46,157,64,26,20,8,178,2,16,161,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,199,59,226,185,101,213,143,64,26,20,8,178,2,16,162,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,160,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,182,107,167,90,186,149,156,64,26,20,8,178,2,16,164,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,114,82,222,253,229,245,141,64,26,20,8,178,2,16,165,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,163,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,228,91,135,111,27,46,141,64,26,20,8,178,2,16,168,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,182,107,167,90,186,149,156,64,26,20,8,178,2,16,167,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,166,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,219,76,144,26,97,34,159,64,26,20,8,178,2,16,170,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,248,135,241,129,191,137,137,64,26,20,8,178,2,16,171,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,169,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,194,188,80,38,254,159,64,26,20,8,178,2,16,173,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,2,124,44,37,209,134,138,64,26,20,8,178,2,16,174,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,172,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,62,30,45,145,87,62,160,64,26,20,8,178,2,16,176,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,219,103,76,204,9,49,140,64,26,20,8,178,2,16,177,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,175,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,237,157,201,115,0,69,160,64,26,20,8,178,2,16,179,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,67,91,192,52,109,59,141,64,26,20,8,178,2,16,180,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,178,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,223,108,149,95,32,160,64,26,20,8,178,2,16,182,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,10,78,109,98,34,83,142,64,26,20,8,178,2,16,183,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,181,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,130,233,238,140,88,196,156,64,26,20,8,178,2,16,185,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,181,100,105,166,162,115,140,64,26,20,8,178,2,16,186,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,184,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,196,234,124,2,181,169,156,64,26,20,8,178,2,16,188,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,182,134,99,12,99,164,137,64,26,20,8,178,2,16,189,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,187,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,101,225,14,236,26,157,64,26,20,8,178,2,16,191,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,211,149,11,143,184,100,136,64,26,20,8,178,2,16,192,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,190,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,191,95,226,253,203,146,157,64,26,20,8,178,2,16,194,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,192,156,152,21,53,210,135,64,26,20,8,178,2,16,195,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,193,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,101,218,70,10,3,4,158,64,26,20,8,178,2,16,197,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,164,158,237,197,63,170,135,64,26,20,8,178,2,16,198,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,196,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,83,29,161,221,143,158,64,26,20,8,178,2,16,200,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,31,156,209,218,134,223,135,64,26,20,8,178,2,16,201,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,199,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,34,200,187,97,70,134,159,64,26,20,8,178,2,16,203,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,135,143,69,67,234,233,136,64,26,20,8,178,2,16,204,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,202,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,192,139,155,226,212,57,137,64,26,20,8,178,2,16,207,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,63,198,102,177,59,174,159,64,26,20,8,178,2,16,206,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,205,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,68,117,30,136,207,159,64,26,20,8,178,2,16,209,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,182,134,99,12,99,164,137,64,26,20,8,178,2,16,210,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,208,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,239,130,185,171,77,244,137,64,26,20,8,178,2,16,213,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,10,68,174,227,217,220,159,64,26,20,8,178,2,16,212,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,211,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,252,196,216,59,223,200,159,64,26,20,8,178,2,16,215,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,40,127,15,75,56,68,138,64,26,20,8,178,2,16,216,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,214,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,96,79,172,5,26,237,158,64,26,20,8,178,2,16,218,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,210,115,17,41,248,51,139,64,26,20,8,178,2,16,219,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,217,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,77,86,57,140,150,90,158,64,26,20,8,178,2,16,221,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,238,113,188,120,237,91,139,64,26,20,8,178,2,16,222,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,220,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,35,217,184,148,166,30,158,64,26,20,8,178,2,16,224,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,144,114,131,179,155,78,139,64,26,20,8,178,2,16,225,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,223,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,19,161,172,153,103,2,160,64,26,20,8,178,2,16,227,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,173,163,37,156,177,63,135,64,26,20,8,178,2,16,228,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,226,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,10,156,116,195,245,108,160,64,26,20,8,178,2,16,230,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,59,137,127,247,27,111,137,64,26,20,8,178,2,16,231,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,229,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,225,219,194,52,74,112,160,64,26,20,8,178,2,16,233,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,163,124,243,95,127,121,138,64,26,20,8,178,2,16,234,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,232,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,36,221,80,170,166,85,160,64,26,20,8,178,2,16,236,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,182,117,102,217,2,12,139,64,26,20,8,178,2,16,237,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,235,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,88,95,9,120,8,39,160,64,26,20,8,178,2,16,239,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,68,108,189,103,205,211,139,64,26,20,8,178,2,16,240,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,238,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,91,196,17,1,49,214,159,64,26,20,8,178,2,16,242,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,20,100,162,107,244,128,140,64,26,20,8,178,2,16,243,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,241,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,83,29,161,221,143,158,64,26,20,8,178,2,16,245,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,190,88,164,73,180,112,141,64,26,20,8,178,2,16,246,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,244,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,210,88,85,119,79,37,158,64,26,20,8,178,2,16,248,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,190,88,164,73,180,112,141,64,26,20,8,178,2,16,249,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,247,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,177,224,12,86,209,126,157,64,26,20,8,178,2,16,251,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,162,90,249,249,190,72,141,64,26,20,8,178,2,16,252,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,250,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,77,96,248,10,223,208,140,64,26,20,8,178,2,16,255,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,244,225,154,203,45,100,157,64,26,20,8,178,2,16,254,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,253,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,139,204,44,253,9,41,159,64,26,20,8,178,2,16,129,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,69,176,177,51,78,53,134,64,26,20,8,178,2,16,130,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,128,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,183,94,66,61,90,52,160,64,26,20,8,178,2,16,132,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,221,154,67,101,42,250,135,64,26,20,8,178,2,16,133,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,131,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,197,221,23,229,84,72,160,64,26,20,8,178,2,16,135,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,201,144,211,184,70,207,136,64,26,20,8,178,2,16,136,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,134,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,116,93,180,199,253,78,160,64,26,20,8,178,2,16,138,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,248,135,241,129,191,137,137,64,26,20,8,178,2,16,139,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,137,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,237,157,201,115,0,69,160,64,26,20,8,178,2,16,141,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,201,127,214,133,230,54,138,64,26,20,8,178,2,16,142,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,140,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,31,187,6,180,35,160,64,26,20,8,178,2,16,144,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,58,120,130,196,187,214,138,64,26,20,8,178,2,16,145,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,143,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,67,231,168,43,234,159,64,26,20,8,178,2,16,147,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,77,113,245,61,63,105,139,64,26,20,8,178,2,16,148,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,146,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,84,228,219,139,130,158,64,26,20,8,178,2,16,150,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,143,97,134,128,59,182,140,64,26,20,8,178,2,16,151,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,149,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,111,223,126,224,116,153,157,64,26,20,8,178,2,16,153,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,238,96,191,69,141,195,140,64,26,20,8,178,2,16,154,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,152,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,40,100,83,153,143,53,157,64,26,20,8,178,2,16,156,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,181,100,105,166,162,115,140,64,26,20,8,178,2,16,157,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,155,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,158,231,153,220,77,236,156,64,26,20,8,178,2,16,159,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,229,108,132,162,123,198,139,64,26,20,8,178,2,16,160,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,158,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,211,105,82,170,175,189,156,64,26,20,8,178,2,16,162,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,182,117,102,217,2,12,139,64,26,20,8,178,2,16,163,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,161,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,225,232,39,82,170,209,156,64,26,20,8,178,2,16,165,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,239,147,182,222,173,140,136,64,26,20,8,178,2,16,166,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,164,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,101,225,14,236,26,157,64,26,20,8,178,2,16,168,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,126,155,10,160,216,236,135,64,26,20,8,178,2,16,169,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,167,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,111,223,126,224,116,153,157,64,26,20,8,178,2,16,171,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,79,164,236,214,95,50,135,64,26,20,8,178,2,16,172,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,170,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,224,215,42,31,74,57,158,64,26,20,8,178,2,16,174,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,117,167,207,252,198,239,134,64,26,20,8,178,2,16,175,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,173,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,39,83,86,102,47,157,158,64,26,20,8,178,2,16,177,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,117,167,207,252,198,239,134,64,26,20,8,178,2,16,178,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,176,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,75,2,165,4,61,159,64,26,20,8,178,2,16,180,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,97,157,95,80,227,196,135,64,26,20,8,178,2,16,181,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,179,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,6,202,16,18,81,94,159,64,26,20,8,178,2,16,183,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,116,150,210,201,102,87,136,64,26,20,8,178,2,16,184,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,182,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,97,140,98,29,131,44,137,64,26,20,8,178,2,16,187,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,181,73,173,244,249,100,159,64,26,20,8,178,2,16,186,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,185,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,219,76,144,26,97,34,159,64,26,20,8,178,2,16,189,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,201,127,214,133,230,54,138,64,26,20,8,178,2,16,190,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,188,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,21,90,227,236,171,10,158,64,26,20,8,178,2,16,192,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,162,107,246,44,31,225,139,64,26,20,8,178,2,16,193,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,191,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,44,222,240,106,24,180,157,64,26,20,8,178,2,16,195,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,124,104,19,7,184,35,140,64,26,20,8,178,2,16,196,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,194,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,58,103,133,145,91,62,140,64,26,20,8,178,2,16,199,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,68,98,254,232,132,93,157,64,26,20,8,178,2,16,198,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,197,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,173,102,111,132,72,0,157,64,26,20,8,178,2,16,201,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,58,103,133,145,91,62,140,64,26,20,8,178,2,16,202,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,200,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,149,226,97,6,220,86,157,64,26,20,8,178,2,16,204,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,240,181,176,68,110,189,133,64,26,20,8,178,2,16,205,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,203,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,127,189,4,6,153,29,133,64,26,20,8,178,2,16,208,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,253,213,213,110,63,97,158,64,26,20,8,178,2,16,207,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,206,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,124,77,87,85,15,21,159,64,26,20,8,178,2,16,210,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,222,188,61,203,234,42,133,64,26,20,8,178,2,16,211,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,209,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,157,197,159,118,141,187,159,64,26,20,8,178,2,16,213,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,51,183,62,186,202,162,133,64,26,20,8,178,2,16,214,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,212,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,164,175,234,248,159,66,134,64,26,20,8,178,2,16,217,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,74,224,51,208,13,19,160,64,26,20,8,178,2,16,216,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,215,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,143,158,144,174,174,55,160,64,26,20,8,178,2,16,219,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,211,166,8,194,24,253,134,64,26,20,8,178,2,16,220,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,218,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,252,28,159,27,251,88,160,64,26,20,8,178,2,16,222,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,31,156,209,218,134,223,135,64,26,20,8,178,2,16,223,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,221,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,50,92,38,82,161,105,160,64,26,20,8,178,2,16,225,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,125,138,13,109,120,84,137,64,26,20,8,178,2,16,226,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,224,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,211,92,237,140,79,92,160,64,26,20,8,178,2,16,228,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,239,130,185,171,77,244,137,64,26,20,8,178,2,16,229,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,227,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,22,94,123,2,172,65,160,64,26,20,8,178,2,16,231,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,163,124,243,95,127,121,138,64,26,20,8,178,2,16,232,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,230,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,19,161,172,153,103,2,160,64,26,20,8,178,2,16,234,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,182,117,102,217,2,12,139,64,26,20,8,178,2,16,235,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,233,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,115,72,31,127,157,127,159,64,26,20,8,178,2,16,237,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,172,112,46,3,145,118,139,64,26,20,8,178,2,16,238,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,236,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,68,98,254,232,132,93,157,64,26,20,8,178,2,16,240,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,191,105,161,124,20,9,140,64,26,20,8,178,2,16,241,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,239,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,26,229,125,241,148,33,157,64,26,20,8,178,2,16,243,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,96,106,104,183,194,251,139,64,26,20,8,178,2,16,244,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,242,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,49,105,139,111,1,203,156,64,26,20,8,178,2,16,246,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,229,108,132,162,123,198,139,64,26,20,8,178,2,16,247,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,245,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,168,236,209,178,191,129,156,64,26,20,8,178,2,16,249,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,238,113,188,120,237,91,139,64,26,20,8,178,2,16,250,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,248,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,31,112,24,246,125,56,156,64,26,20,8,178,2,16,252,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,2,124,44,37,209,134,138,64,26,20,8,178,2,16,253,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,251,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,130,233,238,140,88,196,156,64,26,20,8,178,2,16,255,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,88,152,39,122,113,47,136,64,26,20,8,178,2,16,128,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,254,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,249,169,235,231,127,186,134,64,26,20,8,178,2,16,131,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,139,221,41,48,106,193,157,64,26,20,8,178,2,16,130,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,129,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,49,88,142,60,161,50,158,64,26,20,8,178,2,16,133,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,98,174,92,131,67,93,134,64,26,20,8,178,2,16,134,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,132,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,44,205,243,55,184,27,159,64,26,20,8,178,2,16,136,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,79,181,233,9,192,202,133,64,26,20,8,178,2,16,137,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,135,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,194,188,80,38,254,159,64,26,20,8,178,2,16,139,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,212,183,5,245,120,149,133,64,26,20,8,178,2,16,140,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,138,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,190,149,174,119,39,242,160,64,26,20,8,178,2,16,142,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,106,128,157,192,148,41,138,64,26,20,8,178,2,16,143,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,141,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,135,86,39,65,129,225,160,64,26,20,8,178,2,16,145,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,58,120,130,196,187,214,138,64,26,20,8,178,2,16,146,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,144,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,107,88,124,241,139,185,160,64,26,20,8,178,2,16,148,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,162,107,246,44,31,225,139,64,26,20,8,178,2,16,149,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,147,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,27,17,166,158,115,160,64,26,20,8,178,2,16,151,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,10,95,106,149,130,235,140,64,26,20,8,178,2,16,152,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,150,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,223,108,149,95,32,160,64,26,20,8,178,2,16,154,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,114,82,222,253,229,245,141,64,26,20,8,178,2,16,155,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,153,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,68,81,1,182,36,197,158,64,26,20,8,178,2,16,157,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,57,69,139,43,155,13,143,64,26,20,8,178,2,16,158,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,156,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,44,222,240,106,24,180,157,64,26,20,8,178,2,16,160,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,249,152,238,180,31,34,136,64,26,20,8,178,2,16,161,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,159,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,224,215,42,31,74,57,158,64,26,20,8,178,2,16,163,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,88,169,36,173,209,199,134,64,26,20,8,178,2,16,164,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,162,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,67,231,168,43,234,159,64,26,20,8,178,2,16,166,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,4,192,32,241,81,232,132,64,26,20,8,178,2,16,167,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,165,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,165,192,231,43,0,219,132,64,26,20,8,178,2,16,170,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,237,157,201,115,0,69,160,64,26,20,8,178,2,16,169,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,168,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,145,91,95,23,243,118,160,64,26,20,8,178,2,16,172,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,32,190,203,64,71,16,133,64,26,20,8,178,2,16,173,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,171,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,22,185,147,106,213,122,133,64,26,20,8,178,2,16,176,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,173,89,10,103,232,158,160,64,26,20,8,178,2,16,175,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,174,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,67,152,202,98,224,188,160,64,26,20,8,178,2,16,178,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,41,178,6,228,88,13,134,64,26,20,8,178,2,16,179,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,177,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,81,23,160,10,219,208,160,64,26,20,8,178,2,16,181,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,79,164,236,214,95,50,135,64,26,20,8,178,2,16,182,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,180,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,23,103,69,137,195,160,64,26,20,8,178,2,16,184,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,192,156,152,21,53,210,135,64,26,20,8,178,2,16,185,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,183,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,93,217,166,73,145,165,160,64,26,20,8,178,2,16,187,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,50,149,68,84,10,114,136,64,26,20,8,178,2,16,188,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,186,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,50,92,38,82,161,105,160,64,26,20,8,178,2,16,190,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,192,139,155,226,212,57,137,64,26,20,8,178,2,16,191,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,189,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,48,159,87,233,92,42,160,64,26,20,8,178,2,16,193,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,49,132,71,33,170,217,137,64,26,20,8,178,2,16,194,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,192,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,125,121,16,58,24,188,138,64,26,20,8,178,2,16,197,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,6,202,16,18,81,94,159,64,26,20,8,178,2,16,196,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,195,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,120,211,185,131,134,150,158,64,26,20,8,178,2,16,199,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,115,116,216,99,166,38,139,64,26,20,8,178,2,16,200,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,198,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,168,219,212,127,95,233,157,64,26,20,8,178,2,16,202,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,210,115,17,41,248,51,139,64,26,20,8,178,2,16,203,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,201,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,20,117,159,158,84,25,139,64,26,20,8,178,2,16,206,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,30,95,27,195,29,160,157,64,26,20,8,178,2,16,205,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,204,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,54,227,40,65,138,73,157,64,26,20,8,178,2,16,208,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,96,123,101,234,34,148,138,64,26,20,8,178,2,16,209,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,207,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,135,99,140,94,225,66,157,64,26,20,8,178,2,16,211,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,116,133,213,150,6,191,137,64,26,20,8,178,2,16,212,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,210,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,244,225,154,203,45,100,157,64,26,20,8,178,2,16,214,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,69,142,183,205,141,4,137,64,26,20,8,178,2,16,215,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,213,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,248,91,56,157,182,226,157,64,26,20,8,178,2,16,217,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,59,154,124,42,124,7,136,64,26,20,8,178,2,16,218,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,216,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,207,72,232,194,243,158,64,26,20,8,178,2,16,220,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,173,163,37,156,177,63,135,64,26,20,8,178,2,16,221,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,219,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,195,32,73,124,16,9,160,64,26,20,8,178,2,16,223,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,183,168,93,114,35,213,134,64,26,20,8,178,2,16,224,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,222,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,156,59,254,163,95,160,64,26,20,8,178,2,16,226,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,88,169,36,173,209,199,134,64,26,20,8,178,2,16,227,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,225,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,154,31,19,235,148,160,64,26,20,8,178,2,16,229,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,117,167,207,252,198,239,134,64,26,20,8,178,2,16,230,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,228,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,10,68,174,227,217,220,159,64,26,20,8,178,2,16,232,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,116,133,213,150,6,191,137,64,26,20,8,178,2,16,233,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,231,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,84,228,219,139,130,158,64,26,20,8,178,2,16,235,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,2,124,44,37,209,134,138,64,26,20,8,178,2,16,236,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,234,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,35,217,184,148,166,30,158,64,26,20,8,178,2,16,238,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,96,123,101,234,34,148,138,64,26,20,8,178,2,16,239,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,237,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,234,220,98,245,187,206,157,64,26,20,8,178,2,16,241,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,163,124,243,95,127,121,138,64,26,20,8,178,2,16,242,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,240,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,16,224,69,27,35,140,157,64,26,20,8,178,2,16,244,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,11,129,100,251,66,28,138,64,26,20,8,178,2,16,245,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,243,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,244,225,154,203,45,100,157,64,26,20,8,178,2,16,247,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,87,135,42,71,17,151,137,64,26,20,8,178,2,16,248,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,246,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,229,98,197,35,51,80,157,64,26,20,8,178,2,16,250,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,135,143,69,67,234,233,136,64,26,20,8,178,2,16,251,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,249,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,97,96,169,56,122,133,157,64,26,20,8,178,2,16,253,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,22,168,150,55,117,226,134,64,26,20,8,178,2,16,254,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,252,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,92,255,215,100,213,157,64,26,20,8,178,2,16,128,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,3,175,35,190,241,79,134,64,26,20,8,178,2,16,129,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,255,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,1,80,115,64,200,223,158,64,26,20,8,178,2,16,131,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,145,182,119,127,28,176,133,64,26,20,8,178,2,16,132,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,130,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,129,199,244,38,152,147,159,64,26,20,8,178,2,16,134,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,51,183,62,186,202,162,133,64,26,20,8,178,2,16,135,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,133,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,173,163,37,156,177,63,135,64,26,20,8,178,2,16,138,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,119,26,131,48,66,142,160,64,26,20,8,178,2,16,137,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,136,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,93,217,166,73,145,165,160,64,26,20,8,178,2,16,140,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,31,156,209,218,134,223,135,64,26,20,8,178,2,16,141,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,139,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,67,152,202,98,224,188,160,64,26,20,8,178,2,16,143,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,40,144,12,126,152,220,136,64,26,20,8,178,2,16,144,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,142,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,202,87,181,182,221,198,160,64,26,20,8,178,2,16,146,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,201,127,214,133,230,54,138,64,26,20,8,178,2,16,147,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,145,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,26,131,48,66,142,160,64,26,20,8,178,2,16,149,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,77,113,245,61,63,105,139,64,26,20,8,178,2,16,150,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,148,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,145,91,95,23,243,118,160,64,26,20,8,178,2,16,152,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,200,110,217,82,134,158,139,64,26,20,8,178,2,16,153,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,151,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,237,157,201,115,0,69,160,64,26,20,8,178,2,16,155,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,1,107,47,242,112,238,139,64,26,20,8,178,2,16,156,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,154,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,114,160,229,94,185,15,160,64,26,20,8,178,2,16,158,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,30,105,218,65,102,22,140,64,26,20,8,178,2,16,159,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,157,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,20,73,230,185,75,114,159,64,26,20,8,178,2,16,161,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,124,104,19,7,184,35,140,64,26,20,8,178,2,16,162,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,160,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,184,185,90,165,131,109,133,64,26,20,8,178,2,16,165,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,135,99,140,94,225,66,157,64,26,20,8,178,2,16,164,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,163,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,215,227,239,123,56,60,157,64,26,20,8,178,2,16,167,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,108,196,145,140,21,139,132,64,26,20,8,178,2,16,168,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,166,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,244,225,154,203,45,100,157,64,26,20,8,178,2,16,170,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,137,211,57,15,107,75,131,64,26,20,8,178,2,16,171,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,169,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,191,95,226,253,203,146,157,64,26,20,8,178,2,16,173,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,241,215,170,170,46,238,130,64,26,20,8,178,2,16,174,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,172,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,92,255,215,100,213,157,64,26,20,8,178,2,16,176,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,23,219,141,208,149,171,130,64,26,20,8,178,2,16,177,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,175,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,118,218,198,149,231,184,130,64,26,20,8,178,2,16,180,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,39,83,86,102,47,157,158,64,26,20,8,178,2,16,179,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,178,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,75,2,165,4,61,159,64,26,20,8,178,2,16,182,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,14,214,85,250,35,22,131,64,26,20,8,178,2,16,183,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,181,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,77,69,60,89,54,194,159,64,26,20,8,178,2,16,185,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,194,207,143,174,85,155,131,64,26,20,8,178,2,16,186,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,184,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,249,95,208,178,182,25,160,64,26,20,8,178,2,16,188,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,212,200,2,40,217,45,132,64,26,20,8,178,2,16,189,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,187,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,185,27,17,166,158,115,160,64,26,20,8,178,2,16,191,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,250,186,232,26,224,82,133,64,26,20,8,178,2,16,192,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,190,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,78,90,209,161,150,145,160,64,26,20,8,178,2,16,194,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,13,180,91,148,99,229,133,64,26,20,8,178,2,16,195,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,193,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,228,152,145,157,142,175,160,64,26,20,8,178,2,16,197,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,79,164,236,214,95,50,135,64,26,20,8,178,2,16,198,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,196,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,187,216,223,14,227,178,160,64,26,20,8,178,2,16,200,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,31,156,209,218,134,223,135,64,26,20,8,178,2,16,201,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,199,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,93,217,166,73,145,165,160,64,26,20,8,178,2,16,203,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,239,147,182,222,173,140,136,64,26,20,8,178,2,16,204,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,202,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,240,90,152,220,68,132,160,64,26,20,8,178,2,16,206,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,192,139,155,226,212,57,137,64,26,20,8,178,2,16,207,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,205,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,211,92,237,140,79,92,160,64,26,20,8,178,2,16,209,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,49,132,71,33,170,217,137,64,26,20,8,178,2,16,210,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,208,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,7,223,165,90,177,45,160,64,26,20,8,178,2,16,212,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,68,125,186,154,45,108,138,64,26,20,8,178,2,16,213,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,211,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,66,32,110,125,247,159,64,26,20,8,178,2,16,215,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,153,119,187,137,13,228,138,64,26,20,8,178,2,16,216,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,214,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,34,200,187,97,70,134,159,64,26,20,8,178,2,16,218,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,210,115,17,41,248,51,139,64,26,20,8,178,2,16,219,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,217,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,144,114,131,179,155,78,139,64,26,20,8,178,2,16,222,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,58,76,201,223,178,47,159,64,26,20,8,178,2,16,221,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,220,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,83,29,161,221,143,158,64,26,20,8,178,2,16,224,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,238,113,188,120,237,91,139,64,26,20,8,178,2,16,225,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,223,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,49,115,74,238,73,65,139,64,26,20,8,178,2,16,228,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,11,85,171,22,58,117,158,64,26,20,8,178,2,16,227,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,226,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,182,90,170,39,90,253,157,64,26,20,8,178,2,16,230,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,172,129,43,54,241,14,138,64,26,20,8,178,2,16,231,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,229,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,116,150,210,201,102,87,136,64,26,20,8,178,2,16,234,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,234,220,98,245,187,206,157,64,26,20,8,178,2,16,233,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,232,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,117,167,207,252,198,239,134,64,26,20,8,178,2,16,237,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,153,92,255,215,100,213,157,64,26,20,8,178,2,16,236,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,235,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,6,219,13,69,177,246,157,64,26,20,8,178,2,16,239,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,174,180,34,207,17,216,133,64,26,20,8,178,2,16,240,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,238,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,25,212,128,190,52,137,158,64,26,20,8,178,2,16,242,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,184,202,87,216,227,5,132,64,26,20,8,178,2,16,243,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,241,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,110,206,129,173,20,1,159,64,26,20,8,178,2,16,245,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,232,210,114,212,188,88,131,64,26,20,8,178,2,16,246,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,244,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,224,198,45,236,233,160,159,64,26,20,8,178,2,16,248,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,146,216,113,229,220,224,130,64,26,20,8,178,2,16,249,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,247,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,157,29,102,86,169,75,160,64,26,20,8,178,2,16,251,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,23,219,141,208,149,171,130,64,26,20,8,178,2,16,252,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,250,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,24,27,74,107,240,128,160,64,26,20,8,178,2,16,254,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,213,217,255,90,57,198,130,64,26,20,8,178,2,16,255,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,253,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,151,60,237,131,215,160,64,26,20,8,178,2,16,129,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,108,213,142,191,117,35,131,64,26,20,8,178,2,16,130,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,128,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,178,211,167,56,113,29,161,64,26,20,8,178,2,16,132,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,206,1,57,249,181,131,64,26,20,8,178,2,16,133,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,131,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,59,80,97,245,178,102,161,64,26,20,8,178,2,16,135,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,42,195,3,23,185,165,132,64,26,20,8,178,2,16,136,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,134,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,249,78,211,127,86,129,161,64,26,20,8,178,2,16,138,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,60,188,118,144,60,56,133,64,26,20,8,178,2,16,139,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,137,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,240,181,176,68,110,189,133,64,26,20,8,178,2,16,142,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,128,14,190,211,83,139,161,64,26,20,8,178,2,16,141,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,140,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,3,175,35,190,241,79,134,64,26,20,8,178,2,16,145,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,88,78,12,69,168,142,161,64,26,20,8,178,2,16,144,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,143,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,168,206,111,98,255,135,161,64,26,20,8,178,2,16,147,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,22,168,150,55,117,226,134,64,26,20,8,178,2,16,148,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,146,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,194,15,76,73,176,112,161,64,26,20,8,178,2,16,150,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,12,163,94,97,3,77,135,64,26,20,8,178,2,16,151,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,149,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,126,81,239,106,15,76,161,64,26,20,8,178,2,16,153,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,3,158,38,139,145,183,135,64,26,20,8,178,2,16,154,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,152,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,249,152,238,180,31,34,136,64,26,20,8,178,2,16,157,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,218,147,89,199,28,26,161,64,26,20,8,178,2,16,156,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,155,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,81,23,160,10,219,208,160,64,26,20,8,178,2,16,159,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,145,148,125,25,92,127,136,64,26,20,8,178,2,16,160,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,158,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,7,223,165,90,177,45,160,64,26,20,8,178,2,16,162,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,107,145,154,243,244,193,136,64,26,20,8,178,2,16,163,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,161,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,238,69,3,148,228,180,159,64,26,20,8,178,2,16,165,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,12,146,97,46,163,180,136,64,26,20,8,178,2,16,166,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,164,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,77,69,60,89,54,194,159,64,26,20,8,178,2,16,168,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,138,245,51,117,43,124,128,64,26,20,8,178,2,16,169,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,167,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,100,242,80,79,196,190,128,64,26,20,8,178,2,16,172,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,7,223,165,90,177,45,160,64,26,20,8,178,2,16,171,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,170,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,119,235,195,200,71,81,129,64,26,20,8,178,2,16,175,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,90,28,216,224,76,102,160,64,26,20,8,178,2,16,174,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,173,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,42,229,253,124,121,214,129,64,26,20,8,178,2,16,178,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,199,154,230,77,153,135,160,64,26,20,8,178,2,16,177,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,176,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,133,153,88,216,60,162,160,64,26,20,8,178,2,16,180,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,156,221,169,187,78,118,130,64,26,20,8,178,2,16,181,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,179,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,26,216,24,212,52,192,160,64,26,20,8,178,2,16,183,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,70,210,171,153,14,102,131,64,26,20,8,178,2,16,184,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,182,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,81,23,160,10,219,208,160,64,26,20,8,178,2,16,186,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,51,200,59,237,42,59,132,64,26,20,8,178,2,16,187,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,185,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,40,87,238,123,47,212,160,64,26,20,8,178,2,16,189,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,60,188,118,144,60,56,133,64,26,20,8,178,2,16,190,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,188,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,161,151,3,40,50,202,160,64,26,20,8,178,2,16,192,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,117,184,204,47,39,136,133,64,26,20,8,178,2,16,193,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,191,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,162,80,58,123,118,210,158,64,26,20,8,178,2,16,195,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,21,151,153,4,21,74,136,64,26,20,8,178,2,16,196,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,194,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,59,154,124,42,124,7,136,64,26,20,8,178,2,16,199,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,11,85,171,22,58,117,158,64,26,20,8,178,2,16,198,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,197,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,35,217,184,148,166,30,158,64,26,20,8,178,2,16,201,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,107,162,151,38,85,90,135,64,26,20,8,178,2,16,202,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,200,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,59,93,198,18,19,200,157,64,26,20,8,178,2,16,204,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,107,179,148,89,181,242,133,64,26,20,8,178,2,16,205,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,203,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,59,93,198,18,19,200,157,64,26,20,8,178,2,16,207,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,231,193,117,161,92,192,132,64,26,20,8,178,2,16,208,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,206,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,241,215,170,170,46,238,130,64,26,20,8,178,2,16,211,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,35,217,184,148,166,30,158,64,26,20,8,178,2,16,210,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,209,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,215,210,242,72,216,163,158,64,26,20,8,178,2,16,213,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,156,221,169,187,78,118,130,64,26,20,8,178,2,16,214,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,212,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,222,222,55,49,171,91,130,64,26,20,8,178,2,16,217,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,191,78,229,202,107,250,158,64,26,20,8,178,2,16,216,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,215,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,75,2,165,4,61,159,64,26,20,8,178,2,16,219,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,61,222,112,246,252,104,130,64,26,20,8,178,2,16,220,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,218,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,48,71,145,9,65,154,159,64,26,20,8,178,2,16,222,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,52,217,56,32,139,211,130,64,26,20,8,178,2,16,223,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,221,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,157,197,159,118,141,187,159,64,26,20,8,178,2,16,225,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,108,213,142,191,117,35,131,64,26,20,8,178,2,16,226,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,224,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,252,196,216,59,223,200,159,64,26,20,8,178,2,16,228,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,165,209,228,94,96,115,131,64,26,20,8,178,2,16,229,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,227,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,252,196,216,59,223,200,159,64,26,20,8,178,2,16,231,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,118,201,201,98,135,32,132,64,26,20,8,178,2,16,232,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,230,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,195,200,130,156,244,120,159,64,26,20,8,178,2,16,234,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,32,190,203,64,71,16,133,64,26,20,8,178,2,16,235,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,233,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,22,185,147,106,213,122,133,64,26,20,8,178,2,16,238,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,153,75,2,165,4,61,159,64,26,20,8,178,2,16,237,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,236,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,207,72,232,194,243,158,64,26,20,8,178,2,16,240,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,174,180,34,207,17,216,133,64,26,20,8,178,2,16,241,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,239,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,144,87,199,1,243,63,158,64,26,20,8,178,2,16,243,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,126,172,7,211,56,133,134,64,26,20,8,178,2,16,244,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,242,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,2,97,112,115,40,120,157,64,26,20,8,178,2,16,246,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,183,168,93,114,35,213,134,64,26,20,8,178,2,16,247,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,245,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,26,229,125,241,148,33,157,64,26,20,8,178,2,16,249,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,183,168,93,114,35,213,134,64,26,20,8,178,2,16,250,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,248,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,158,231,153,220,77,236,156,64,26,20,8,178,2,16,252,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,249,169,235,231,127,186,134,64,26,20,8,178,2,16,253,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,251,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,21,107,224,31,12,163,156,64,26,20,8,178,2,16,255,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,231,176,120,110,252,39,134,64,26,20,8,178,2,16,128,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,254,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,7,236,10,120,17,143,156,64,26,20,8,178,2,16,130,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,184,185,90,165,131,109,133,64,26,20,8,178,2,16,131,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,129,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,193,190,146,123,245,2,133,64,26,20,8,178,2,16,134,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,182,107,167,90,186,149,156,64,26,20,8,178,2,16,133,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,132,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,211,105,82,170,175,189,156,64,26,20,8,178,2,16,136,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,136,194,60,220,10,179,132,64,26,20,8,178,2,16,137,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,135,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,120,228,182,182,230,46,157,64,26,20,8,178,2,16,139,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,174,197,31,2,114,112,132,64,26,20,8,178,2,16,140,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,138,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,196,217,127,207,84,17,158,64,26,20,8,178,2,16,142,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,231,193,117,161,92,192,132,64,26,20,8,178,2,16,143,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,141,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,186,212,71,249,226,123,158,64,26,20,8,178,2,16,145,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,60,188,118,144,60,56,133,64,26,20,8,178,2,16,146,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,144,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,229,81,200,240,210,183,158,64,26,20,8,178,2,16,148,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,79,181,233,9,192,202,133,64,26,20,8,178,2,16,149,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,147,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,231,176,120,110,252,39,134,64,26,20,8,178,2,16,152,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,243,208,157,152,205,203,158,64,26,20,8,178,2,16,151,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,150,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,162,80,58,123,118,210,158,64,26,20,8,178,2,16,154,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,88,169,36,173,209,199,134,64,26,20,8,178,2,16,155,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,153,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,68,81,1,182,36,197,158,64,26,20,8,178,2,16,157,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,145,165,122,76,188,23,135,64,26,20,8,178,2,16,158,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,156,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,215,210,242,72,216,163,158,64,26,20,8,178,2,16,160,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,107,162,151,38,85,90,135,64,26,20,8,178,2,16,161,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,159,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,3,158,38,139,145,183,135,64,26,20,8,178,2,16,164,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,77,86,57,140,150,90,158,64,26,20,8,178,2,16,163,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,162,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,35,217,184,148,166,30,158,64,26,20,8,178,2,16,166,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,97,157,95,80,227,196,135,64,26,20,8,178,2,16,167,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,165,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,92,255,215,100,213,157,64,26,20,8,178,2,16,169,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,3,158,38,139,145,183,135,64,26,20,8,178,2,16,170,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,168,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,82,225,211,144,127,113,157,64,26,20,8,178,2,16,172,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,240,164,179,17,14,37,135,64,26,20,8,178,2,16,173,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,171,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,149,226,97,6,220,86,157,64,26,20,8,178,2,16,175,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,155,170,178,34,46,173,134,64,26,20,8,178,2,16,176,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,174,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,40,100,83,153,143,53,157,64,26,20,8,178,2,16,178,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,240,181,176,68,110,189,133,64,26,20,8,178,2,16,179,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,177,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,201,100,26,212,61,40,157,64,26,20,8,178,2,16,181,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,193,190,146,123,245,2,133,64,26,20,8,178,2,16,182,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,180,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,120,228,182,182,230,46,157,64,26,20,8,178,2,16,184,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,206,1,57,249,181,131,64,26,20,8,178,2,16,185,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,183,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,233,203,101,194,91,54,159,64,26,20,8,178,2,16,187,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,250,203,229,77,64,235,131,64,26,20,8,178,2,16,188,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,186,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,6,202,16,18,81,94,159,64,26,20,8,178,2,16,190,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,136,194,60,220,10,179,132,64,26,20,8,178,2,16,191,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,189,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,6,202,16,18,81,94,159,64,26,20,8,178,2,16,193,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,60,188,118,144,60,56,133,64,26,20,8,178,2,16,194,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,192,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,202,215,76,255,80,159,64,26,20,8,178,2,16,196,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,184,185,90,165,131,109,133,64,26,20,8,178,2,16,197,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,195,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,139,204,44,253,9,41,159,64,26,20,8,178,2,16,199,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,145,182,119,127,28,176,133,64,26,20,8,178,2,16,200,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,198,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,191,78,229,202,107,250,158,64,26,20,8,178,2,16,202,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,174,180,34,207,17,216,133,64,26,20,8,178,2,16,203,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,201,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,253,213,213,110,63,97,158,64,26,20,8,178,2,16,205,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,13,180,91,148,99,229,133,64,26,20,8,178,2,16,206,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,204,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,63,215,99,228,155,70,158,64,26,20,8,178,2,16,208,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,174,180,34,207,17,216,133,64,26,20,8,178,2,16,209,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,207,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,182,90,170,39,90,253,157,64,26,20,8,178,2,16,211,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,22,185,147,106,213,122,133,64,26,20,8,178,2,16,212,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,210,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,206,222,183,165,198,166,157,64,26,20,8,178,2,16,214,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,231,193,117,161,92,192,132,64,26,20,8,178,2,16,215,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,213,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,244,225,154,203,45,100,157,64,26,20,8,178,2,16,217,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,206,1,57,249,181,131,64,26,20,8,178,2,16,218,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,216,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,54,227,40,65,138,73,157,64,26,20,8,178,2,16,220,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,61,222,112,246,252,104,130,64,26,20,8,178,2,16,221,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,219,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,204,229,196,183,39,201,129,64,26,20,8,178,2,16,224,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,54,227,40,65,138,73,157,64,26,20,8,178,2,16,223,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,222,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,97,96,169,56,122,133,157,64,26,20,8,178,2,16,226,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,166,243,222,196,32,164,128,64,26,20,8,178,2,16,227,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,225,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,220,155,186,13,220,157,64,26,20,8,178,2,16,229,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,176,248,22,155,146,57,128,64,26,20,8,178,2,16,230,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,228,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,63,215,99,228,155,70,158,64,26,20,8,178,2,16,232,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,147,250,107,75,157,17,128,64,26,20,8,178,2,16,233,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,231,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,207,72,232,194,243,158,64,26,20,8,178,2,16,235,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,176,248,22,155,146,57,128,64,26,20,8,178,2,16,236,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,234,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,129,199,244,38,152,147,159,64,26,20,8,178,2,16,238,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,90,237,24,121,82,41,129,64,26,20,8,178,2,16,239,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,237,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,67,231,168,43,234,159,64,26,20,8,178,2,16,241,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,42,229,253,124,121,214,129,64,26,20,8,178,2,16,242,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,240,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,184,219,84,11,68,158,130,64,26,20,8,178,2,16,245,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,34,32,130,65,98,22,160,64,26,20,8,178,2,16,244,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,243,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,31,187,6,180,35,160,64,26,20,8,178,2,16,247,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,206,1,57,249,181,131,64,26,20,8,178,2,16,248,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,246,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,31,187,6,180,35,160,64,26,20,8,178,2,16,250,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,174,197,31,2,114,112,132,64,26,20,8,178,2,16,251,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,249,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,194,188,80,38,254,159,64,26,20,8,178,2,16,253,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,117,184,204,47,39,136,133,64,26,20,8,178,2,16,254,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,252,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,77,69,60,89,54,194,159,64,26,20,8,178,2,16,128,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,13,180,91,148,99,229,133,64,26,20,8,178,2,16,129,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,255,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,164,175,234,248,159,66,134,64,26,20,8,178,2,16,132,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,58,76,201,223,178,47,159,64,26,20,8,178,2,16,131,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,130,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,1,80,115,64,200,223,158,64,26,20,8,178,2,16,134,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,69,176,177,51,78,53,134,64,26,20,8,178,2,16,135,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,133,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,129,216,241,89,248,43,158,64,26,20,8,178,2,16,137,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,250,186,232,26,224,82,133,64,26,20,8,178,2,16,138,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,136,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,87,91,113,98,8,240,157,64,26,20,8,178,2,16,140,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,80,198,230,60,32,99,132,64,26,20,8,178,2,16,141,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,139,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,234,220,98,245,187,206,157,64,26,20,8,178,2,16,143,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,165,209,228,94,96,115,131,64,26,20,8,178,2,16,144,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,142,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,139,221,41,48,106,193,157,64,26,20,8,178,2,16,146,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,90,220,27,70,242,144,130,64,26,20,8,178,2,16,147,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,145,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,139,221,41,48,106,193,157,64,26,20,8,178,2,16,149,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,14,231,82,45,132,174,129,64,26,20,8,178,2,16,150,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,148,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,87,91,113,98,8,240,157,64,26,20,8,178,2,16,152,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,71,244,165,255,206,150,128,64,26,20,8,178,2,16,153,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,151,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,49,88,142,60,161,50,158,64,26,20,8,178,2,16,155,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,147,250,107,75,157,17,128,64,26,20,8,178,2,16,156,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,154,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,84,228,219,139,130,158,64,26,20,8,178,2,16,158,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,115,251,157,226,8,158,127,64,26,20,8,178,2,16,159,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,157,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,162,80,58,123,118,210,158,64,26,20,8,178,2,16,161,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,181,252,43,88,101,131,127,64,26,20,8,178,2,16,162,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,160,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,219,76,144,26,97,34,159,64,26,20,8,178,2,16,164,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,48,250,15,109,172,184,127,64,26,20,8,178,2,16,165,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,163,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,157,197,159,118,141,187,159,64,26,20,8,178,2,16,167,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,128,240,251,158,185,230,128,64,26,20,8,178,2,16,168,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,166,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,67,231,168,43,234,159,64,26,20,8,178,2,16,170,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,175,231,25,104,50,161,129,64,26,20,8,178,2,16,171,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,169,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,194,188,80,38,254,159,64,26,20,8,178,2,16,173,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,128,223,254,107,89,78,130,64,26,20,8,178,2,16,174,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,172,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,250,203,229,77,64,235,131,64,26,20,8,178,2,16,177,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,235,224,250,10,188,5,160,64,26,20,8,178,2,16,176,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,175,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,68,117,30,136,207,159,64,26,20,8,178,2,16,179,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,189,4,6,153,29,133,64,26,20,8,178,2,16,180,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,178,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,202,215,76,255,80,159,64,26,20,8,178,2,16,182,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,13,180,91,148,99,229,133,64,26,20,8,178,2,16,183,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,181,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,207,72,232,194,243,158,64,26,20,8,178,2,16,185,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,231,176,120,110,252,39,134,64,26,20,8,178,2,16,186,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,184,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,134,82,143,43,129,170,158,64,26,20,8,178,2,16,188,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,69,176,177,51,78,53,134,64,26,20,8,178,2,16,189,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,187,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,35,217,184,148,166,30,158,64,26,20,8,178,2,16,191,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,41,178,6,228,88,13,134,64,26,20,8,178,2,16,192,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,190,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,101,218,70,10,3,4,158,64,26,20,8,178,2,16,194,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,79,181,233,9,192,202,133,64,26,20,8,178,2,16,195,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,193,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,92,255,215,100,213,157,64,26,20,8,178,2,16,197,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,98,191,89,182,163,245,132,64,26,20,8,178,2,16,198,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,196,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,125,94,84,136,111,173,157,64,26,20,8,178,2,16,200,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,184,202,87,216,227,5,132,64,26,20,8,178,2,16,201,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,199,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,44,222,240,106,24,180,157,64,26,20,8,178,2,16,203,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,128,223,254,107,89,78,130,64,26,20,8,178,2,16,204,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,202,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,220,155,186,13,220,157,64,26,20,8,178,2,16,206,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,242,232,167,221,142,134,129,64,26,20,8,178,2,16,207,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,205,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,35,217,184,148,166,30,158,64,26,20,8,178,2,16,209,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,128,240,251,158,185,230,128,64,26,20,8,178,2,16,210,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,208,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,120,211,185,131,134,150,158,64,26,20,8,178,2,16,212,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,204,246,193,234,135,97,128,64,26,20,8,178,2,16,213,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,211,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,205,205,186,114,102,14,159,64,26,20,8,178,2,16,215,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,138,245,51,117,43,124,128,64,26,20,8,178,2,16,216,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,214,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,86,74,116,47,168,87,159,64,26,20,8,178,2,16,218,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,128,240,251,158,185,230,128,64,26,20,8,178,2,16,219,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,217,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,143,70,202,206,146,167,159,64,26,20,8,178,2,16,221,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,204,229,196,183,39,201,129,64,26,20,8,178,2,16,222,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,220,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,77,69,60,89,54,194,159,64,26,20,8,178,2,16,224,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,80,215,227,111,128,251,130,64,26,20,8,178,2,16,225,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,223,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,127,206,1,57,249,181,131,64,26,20,8,178,2,16,228,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,77,69,60,89,54,194,159,64,26,20,8,178,2,16,227,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,226,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,238,69,3,148,228,180,159,64,26,20,8,178,2,16,230,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,241,198,173,119,206,85,132,64,26,20,8,178,2,16,231,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,229,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,129,199,244,38,152,147,159,64,26,20,8,178,2,16,233,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,165,192,231,43,0,219,132,64,26,20,8,178,2,16,234,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,232,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,76,201,223,178,47,159,64,26,20,8,178,2,16,236,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,212,183,5,245,120,149,133,64,26,20,8,178,2,16,237,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,235,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,79,181,233,9,192,202,133,64,26,20,8,178,2,16,240,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,110,206,129,173,20,1,159,64,26,20,8,178,2,16,239,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,238,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,243,208,157,152,205,203,158,64,26,20,8,178,2,16,242,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,13,180,91,148,99,229,133,64,26,20,8,178,2,16,243,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,241,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,13,180,91,148,99,229,133,64,26,20,8,178,2,16,246,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,200,83,29,161,221,143,158,64,26,20,8,178,2,16,245,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,244,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,238,86,0,199,68,77,158,64,26,20,8,178,2,16,248,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,51,183,62,186,202,162,133,64,26,20,8,178,2,16,249,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,247,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,115,89,28,178,253,23,158,64,26,20,8,178,2,16,251,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,98,191,89,182,163,245,132,64,26,20,8,178,2,16,252,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,250,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,6,219,13,69,177,246,157,64,26,20,8,178,2,16,254,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,61,205,115,195,156,208,131,64,26,20,8,178,2,16,255,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,253,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,137,228,54,66,203,227,129,64,26,20,8,178,2,16,130,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,168,219,212,127,95,233,157,64,26,20,8,178,2,16,129,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,128,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,87,91,113,98,8,240,157,64,26,20,8,178,2,16,132,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,24,236,138,3,246,67,129,64,26,20,8,178,2,16,133,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,131,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,166,243,222,196,32,164,128,64,26,20,8,178,2,16,136,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,196,217,127,207,84,17,158,64,26,20,8,178,2,16,135,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,134,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,144,87,199,1,243,63,158,64,26,20,8,178,2,16,138,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,81,249,221,213,64,44,128,64,26,20,8,178,2,16,139,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,137,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,238,248,129,247,79,211,127,64,26,20,8,178,2,16,142,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,106,84,228,219,139,130,158,64,26,20,8,178,2,16,141,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,140,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,238,248,129,247,79,211,127,64,26,20,8,178,2,16,145,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,68,81,1,182,36,197,158,64,26,20,8,178,2,16,144,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,143,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,110,206,129,173,20,1,159,64,26,20,8,178,2,16,147,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,147,250,107,75,157,17,128,64,26,20,8,178,2,16,148,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,146,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,233,203,101,194,91,54,159,64,26,20,8,178,2,16,150,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,138,245,51,117,43,124,128,64,26,20,8,178,2,16,151,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,149,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,62,239,109,41,93,1,129,64,26,20,8,178,2,16,154,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,86,74,116,47,168,87,159,64,26,20,8,178,2,16,153,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,152,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,73,173,244,249,100,159,64,26,20,8,178,2,16,156,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,42,229,253,124,121,214,129,64,26,20,8,178,2,16,157,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,155,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,73,173,244,249,100,159,64,26,20,8,178,2,16,159,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,61,222,112,246,252,104,130,64,26,20,8,178,2,16,160,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,158,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,203,212,199,132,199,48,131,64,26,20,8,178,2,16,163,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,58,76,201,223,178,47,159,64,26,20,8,178,2,16,162,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,161,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,68,81,1,182,36,197,158,64,26,20,8,178,2,16,165,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,61,205,115,195,156,208,131,64,26,20,8,178,2,16,166,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,164,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,25,212,128,190,52,137,158,64,26,20,8,178,2,16,168,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,184,202,87,216,227,5,132,64,26,20,8,178,2,16,169,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,167,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,85,114,81,232,103,158,64,26,20,8,178,2,16,171,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,184,202,87,216,227,5,132,64,26,20,8,178,2,16,172,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,170,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,224,215,42,31,74,57,158,64,26,20,8,178,2,16,174,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,222,205,58,254,74,195,131,64,26,20,8,178,2,16,175,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,173,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,196,217,127,207,84,17,158,64,26,20,8,178,2,16,177,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,175,214,28,53,210,8,131,64,26,20,8,178,2,16,178,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,176,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,6,219,13,69,177,246,157,64,26,20,8,178,2,16,180,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,242,249,164,16,239,30,128,64,26,20,8,178,2,16,181,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,178,2,16,179,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,178,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,233,39,18,230,39,10,227,39,10,193,38,10,6,112,111,105,110,116,115,18,182,38,18,179,38,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,145,64,26,19,8,179,2,16,7,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,133,64,26,19,8,179,2,16,8,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,6,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,145,64,26,19,8,179,2,16,10,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,133,64,26,19,8,179,2,16,11,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,9,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,144,64,26,19,8,179,2,16,13,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,133,64,26,19,8,179,2,16,14,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,12,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,144,64,26,19,8,179,2,16,16,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,135,64,26,19,8,179,2,16,17,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,15,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,143,64,26,19,8,179,2,16,19,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,136,64,26,19,8,179,2,16,20,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,18,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,143,64,26,19,8,179,2,16,22,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,136,64,26,19,8,179,2,16,23,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,21,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,144,64,26,19,8,179,2,16,25,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,136,64,26,19,8,179,2,16,26,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,24,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,144,64,26,19,8,179,2,16,28,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,136,64,26,19,8,179,2,16,29,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,27,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,145,64,26,19,8,179,2,16,31,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,136,64,26,19,8,179,2,16,32,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,30,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,146,64,26,19,8,179,2,16,34,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,88,135,64,26,19,8,179,2,16,35,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,33,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,146,64,26,19,8,179,2,16,37,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,134,64,26,19,8,179,2,16,38,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,36,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,133,64,26,19,8,179,2,16,41,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,147,64,26,19,8,179,2,16,40,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,39,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,132,64,26,19,8,179,2,16,44,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,146,64,26,19,8,179,2,16,43,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,42,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,146,64,26,19,8,179,2,16,46,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,131,64,26,19,8,179,2,16,47,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,45,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,146,64,26,19,8,179,2,16,49,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,131,64,26,19,8,179,2,16,50,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,48,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,144,64,26,19,8,179,2,16,52,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,131,64,26,19,8,179,2,16,53,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,51,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,141,64,26,19,8,179,2,16,55,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,131,64,26,19,8,179,2,16,56,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,54,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,138,64,26,19,8,179,2,16,58,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,132,64,26,19,8,179,2,16,59,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,57,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,137,64,26,19,8,179,2,16,61,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,133,64,26,19,8,179,2,16,62,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,60,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,136,64,26,19,8,179,2,16,64,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,134,64,26,19,8,179,2,16,65,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,63,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,137,64,26,19,8,179,2,16,67,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,134,64,26,19,8,179,2,16,68,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,66,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,138,64,26,19,8,179,2,16,70,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,134,64,26,19,8,179,2,16,71,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,69,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,140,64,26,19,8,179,2,16,73,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,134,64,26,19,8,179,2,16,74,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,72,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,142,64,26,19,8,179,2,16,76,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,133,64,26,19,8,179,2,16,77,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,75,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,142,64,26,19,8,179,2,16,79,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,132,64,26,19,8,179,2,16,80,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,78,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,143,64,26,19,8,179,2,16,82,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,132,64,26,19,8,179,2,16,83,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,81,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,142,64,26,19,8,179,2,16,85,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,48,132,64,26,19,8,179,2,16,86,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,84,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,141,64,26,19,8,179,2,16,88,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,131,64,26,19,8,179,2,16,89,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,87,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,138,64,26,19,8,179,2,16,91,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,132,64,26,19,8,179,2,16,92,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,90,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,135,64,26,19,8,179,2,16,94,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,132,64,26,19,8,179,2,16,95,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,93,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,133,64,26,19,8,179,2,16,97,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,133,64,26,19,8,179,2,16,98,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,96,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,133,64,26,19,8,179,2,16,100,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,133,64,26,19,8,179,2,16,101,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,99,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,132,64,26,19,8,179,2,16,103,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,8,134,64,26,19,8,179,2,16,104,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,102,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,133,64,26,19,8,179,2,16,106,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,134,64,26,19,8,179,2,16,107,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,105,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,135,64,26,19,8,179,2,16,109,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,134,64,26,19,8,179,2,16,110,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,108,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,137,64,26,19,8,179,2,16,112,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,134,64,26,19,8,179,2,16,113,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,111,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,134,64,26,19,8,179,2,16,116,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,139,64,26,19,8,179,2,16,115,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,114,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,140,64,26,19,8,179,2,16,118,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,136,133,64,26,19,8,179,2,16,119,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,117,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,140,64,26,19,8,179,2,16,121,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,133,64,26,19,8,179,2,16,122,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,120,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,140,64,26,19,8,179,2,16,124,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,133,64,26,19,8,179,2,16,125,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,123,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,140,64,26,19,8,179,2,16,127,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,0,133,64,26,20,8,179,2,16,128,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,126,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,140,64,26,20,8,179,2,16,130,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,248,132,64,26,20,8,179,2,16,131,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,179,2,16,129,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,139,64,26,20,8,179,2,16,133,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,8,133,64,26,20,8,179,2,16,134,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,179,2,16,132,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,139,64,26,20,8,179,2,16,136,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,133,64,26,20,8,179,2,16,137,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,20,8,179,2,16,135,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,5,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,179,2,16,2,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,97,100,51,98,53,26,19,8,179,2,16,3,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,179,2,16,4,26,12,99,70,121,184,152,207,109,6,237,70,83,144,18,19,8,179,2,16,1,26,12,99,70,121,184,152,207,109,6,237,70,83,144,10,162,23,18,159,23,10,156,23,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,179,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,179,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,179,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,250,21,10,6,112,111,105,110,116,115,18,239,21,18,236,21,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,114,160,229,94,185,15,160,64,26,19,8,179,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,66,130,123,236,196,115,117,192,26,19,8,179,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,240,116,46,174,136,5,129,192,26,19,8,179,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,74,224,51,208,13,19,160,64,26,19,8,179,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,159,30,36,11,29,160,64,26,19,8,179,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,220,106,190,1,165,218,129,192,26,19,8,179,2,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,143,158,144,174,174,55,160,64,26,19,8,179,2,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,201,96,78,85,193,175,130,192,26,19,8,179,2,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,28,159,27,251,88,160,64,26,19,8,179,2,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,59,89,250,147,150,79,131,192,26,19,8,179,2,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,218,52,191,237,138,160,64,26,19,8,179,2,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,144,83,251,130,118,199,131,192,26,19,8,179,2,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,87,181,182,221,198,160,64,26,19,8,179,2,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,11,81,223,151,189,252,131,192,26,19,8,179,2,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,43,20,189,228,115,19,161,64,26,19,8,179,2,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,11,81,223,151,189,252,131,192,26,19,8,179,2,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,144,175,102,7,106,161,64,26,19,8,179,2,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,210,84,137,248,210,172,131,192,26,19,8,179,2,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,97,92,221,185,253,12,131,192,26,19,8,179,2,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,197,204,26,178,244,175,161,64,26,19,8,179,2,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,220,106,190,1,165,218,129,192,26,19,8,179,2,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,173,72,13,52,136,6,162,64,26,19,8,179,2,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,147,7,49,77,215,29,162,64,26,19,8,179,2,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,40,113,132,77,115,85,129,192,26,19,8,179,2,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,215,197,141,43,120,66,162,64,26,19,8,179,2,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,3,127,158,90,108,48,128,192,26,19,8,179,2,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,230,68,99,211,114,86,162,64,26,19,8,179,2,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,54,23,85,228,17,76,126,192,26,19,8,179,2,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,149,196,255,181,27,93,162,64,26,19,8,179,2,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,188,59,107,53,139,71,123,192,26,19,8,179,2,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,189,132,177,68,199,89,162,64,26,19,8,179,2,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,84,72,247,204,39,61,122,192,26,19,8,179,2,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,175,5,220,156,204,69,162,64,26,19,8,179,2,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,9,100,43,231,25,243,119,192,26,19,8,179,2,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,147,7,49,77,215,29,162,64,26,19,8,179,2,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,246,123,181,160,246,248,117,192,26,19,8,179,2,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,185,10,20,115,62,219,161,64,26,19,8,179,2,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,105,150,91,69,140,201,115,192,26,19,8,179,2,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,114,143,232,43,89,119,161,64,26,19,8,179,2,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,210,171,201,19,176,4,114,192,26,19,8,179,2,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,152,146,203,81,192,52,161,64,26,19,8,179,2,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,163,180,171,74,55,74,113,192,26,19,8,179,2,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,26,216,24,212,52,192,160,64,26,19,8,179,2,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,239,186,113,150,5,197,112,192,26,19,8,179,2,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,217,109,132,63,152,160,64,26,19,8,179,2,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,172,185,227,32,169,223,112,192,26,19,8,179,2,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,39,183,199,53,240,20,113,192,26,19,8,179,2,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,24,27,74,107,240,128,160,64,26,19,8,179,2,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,153,175,115,116,197,180,113,192,26,19,8,179,2,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,252,28,159,27,251,88,160,64,26,19,8,179,2,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,165,52,18,162,52,10,159,52,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,181,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,181,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,253,50,10,6,112,111,105,110,116,115,18,242,50,18,239,50,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,152,146,203,81,192,52,161,64,26,19,8,181,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,201,40,150,106,9,223,123,64,26,19,8,181,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,57,147,146,140,110,39,161,64,26,19,8,181,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,201,40,150,106,9,223,123,64,26,19,8,181,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,178,211,167,56,113,29,161,64,26,19,8,181,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,164,54,176,119,2,186,122,64,26,19,8,181,2,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,138,19,246,169,197,32,161,64,26,19,8,181,2,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,156,117,108,109,17,134,117,64,26,19,8,181,2,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,210,25,195,20,56,161,64,26,19,8,181,2,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,15,144,18,18,167,86,115,64,26,19,8,181,2,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,144,175,102,7,106,161,64,26,19,8,181,2,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,53,164,242,106,110,172,113,64,26,19,8,181,2,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,128,14,190,211,83,139,161,64,26,19,8,181,2,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,6,173,212,161,245,241,112,64,26,19,8,181,2,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,11,219,173,236,205,161,64,26,19,8,181,2,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,215,181,182,216,124,55,112,64,26,19,8,181,2,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,132,136,91,165,220,9,162,64,26,19,8,181,2,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,215,181,182,216,124,55,112,64,26,19,8,181,2,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,201,70,184,131,125,46,162,64,26,19,8,181,2,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,16,178,12,120,103,135,112,64,26,19,8,181,2,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,149,196,255,181,27,93,162,64,26,19,8,181,2,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,186,166,14,86,39,119,113,64,26,19,8,181,2,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,195,113,64,191,119,162,64,26,19,8,181,2,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,81,145,160,135,3,60,115,64,26,19,8,181,2,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,130,92,148,188,129,162,64,26,19,8,181,2,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,175,127,220,25,245,176,116,64,26,19,8,181,2,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,194,170,5,17,133,162,64,26,19,8,181,2,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,194,103,82,96,24,171,118,64,26,19,8,181,2,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,130,92,148,188,129,162,64,26,19,8,181,2,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,241,94,112,41,145,101,119,64,26,19,8,181,2,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,123,131,35,207,106,116,162,64,26,19,8,181,2,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,146,78,58,49,223,191,120,64,26,19,8,181,2,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,149,196,255,181,27,93,162,64,26,19,8,181,2,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,117,63,146,174,137,255,121,64,26,19,8,181,2,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,201,70,184,131,125,46,162,64,26,19,8,181,2,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,145,44,64,203,30,143,123,64,26,19,8,181,2,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,125,34,208,30,59,100,124,64,26,19,8,181,2,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,253,200,112,81,223,255,161,64,26,19,8,181,2,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,211,75,240,89,239,195,161,64,26,19,8,181,2,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,116,29,152,72,201,206,124,64,26,19,8,181,2,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,13,48,94,247,165,161,64,26,19,8,181,2,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,116,29,152,72,201,206,124,64,26,19,8,181,2,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,78,12,69,168,142,161,64,26,19,8,181,2,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,125,34,208,30,59,100,124,64,26,19,8,181,2,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,33,15,133,14,2,126,161,64,26,19,8,181,2,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,154,49,120,161,144,36,123,64,26,19,8,181,2,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,114,143,232,43,89,119,161,64,26,19,8,181,2,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,3,71,230,111,180,95,121,64,26,19,8,181,2,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,207,54,157,173,122,161,64,26,19,8,181,2,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,42,91,198,200,123,181,119,64,26,19,8,181,2,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,168,206,111,98,255,135,161,64,26,19,8,181,2,16,82,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,80,111,166,33,67,11,118,64,26,19,8,181,2,16,83,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,81,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,102,205,225,236,162,162,161,64,26,19,8,181,2,16,85,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,251,133,162,101,195,43,116,64,26,19,8,181,2,16,86,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,84,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,139,62,203,67,199,161,64,26,19,8,181,2,16,88,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,157,151,102,211,209,182,114,64,26,19,8,181,2,16,89,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,87,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,137,233,26,57,239,161,64,26,19,8,181,2,16,91,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,243,162,100,245,17,199,113,64,26,19,8,181,2,16,92,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,90,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,187,199,226,219,130,26,162,64,26,19,8,181,2,16,94,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,129,170,184,182,60,39,113,64,26,19,8,181,2,16,95,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,93,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,135,69,42,14,33,73,162,64,26,19,8,181,2,16,97,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,6,173,212,161,245,241,112,64,26,19,8,181,2,16,98,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,96,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,194,170,5,17,133,162,64,26,19,8,181,2,16,100,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,129,170,184,182,60,39,113,64,26,19,8,181,2,16,101,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,99,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,128,64,169,3,183,162,64,26,19,8,181,2,16,103,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,44,159,186,148,252,22,114,64,26,19,8,181,2,16,104,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,102,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,254,78,22,80,216,162,64,26,19,8,181,2,16,106,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,204,142,132,156,74,113,115,64,26,19,8,181,2,16,107,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,105,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,168,189,114,47,159,239,162,64,26,19,8,181,2,16,109,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,232,123,50,185,223,0,117,64,26,19,8,181,2,16,110,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,108,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,194,103,82,96,24,171,118,64,26,19,8,181,2,16,113,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,47,125,93,131,156,249,162,64,26,19,8,181,2,16,112,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,111,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,7,189,171,244,240,252,162,64,26,19,8,181,2,16,115,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,222,84,0,125,173,58,120,64,26,19,8,181,2,16,116,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,114,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,61,15,18,72,246,162,64,26,19,8,181,2,16,118,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,193,69,88,250,87,122,121,64,26,19,8,181,2,16,119,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,117,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,126,235,248,248,222,162,64,26,19,8,181,2,16,121,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,41,57,204,98,187,132,122,64,26,19,8,181,2,16,122,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,120,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,4,0,221,139,172,189,162,64,26,19,8,181,2,16,124,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,154,49,120,161,144,36,123,64,26,19,8,181,2,16,125,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,123,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,110,18,108,10,106,10,41,10,1,121,18,36,26,34,8,4,18,8,211,45,206,64,123,116,123,64,26,20,8,181,2,16,128,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,177,194,170,5,17,133,162,64,26,19,8,181,2,16,127,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,126,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,107,58,90,216,23,106,122,64,26,20,8,181,2,16,131,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,244,195,56,123,109,106,162,64,26,20,8,181,2,16,130,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,129,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,68,68,156,152,196,99,162,64,26,20,8,181,2,16,133,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,32,86,142,242,9,32,120,64,26,20,8,181,2,16,134,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,132,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,28,132,234,9,25,103,162,64,26,20,8,181,2,16,136,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,108,92,84,62,216,154,119,64,26,20,8,181,2,16,137,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,135,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,123,131,35,207,106,116,162,64,26,20,8,181,2,16,139,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,102,196,234,187,197,118,64,26,20,8,181,2,16,140,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,138,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,56,130,149,89,14,143,162,64,26,20,8,181,2,16,142,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,80,111,166,33,67,11,118,64,26,20,8,181,2,16,143,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,141,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,45,192,142,26,88,186,162,64,26,20,8,181,2,16,145,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,156,117,108,109,17,134,117,64,26,20,8,181,2,16,146,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,144,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,190,57,106,77,226,162,64,26,20,8,181,2,16,148,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,90,116,222,247,180,160,117,64,26,20,8,181,2,16,149,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,147,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,87,61,15,18,72,246,162,64,26,20,8,181,2,16,151,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,147,112,52,151,159,240,117,64,26,20,8,181,2,16,152,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,150,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,61,252,50,43,151,13,163,64,26,20,8,181,2,16,154,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,194,103,82,96,24,171,118,64,26,20,8,181,2,16,155,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,153,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,236,123,207,13,64,20,163,64,26,20,8,181,2,16,157,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,108,92,84,62,216,154,119,64,26,20,8,181,2,16,158,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,156,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,61,252,50,43,151,13,163,64,26,20,8,181,2,16,160,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,165,88,170,221,194,234,119,64,26,20,8,181,2,16,161,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,159,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,190,57,106,77,226,162,64,26,20,8,181,2,16,163,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,89,82,228,145,244,111,120,64,26,20,8,181,2,16,164,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,162,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,18,127,178,51,167,209,162,64,26,20,8,181,2,16,166,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,89,82,228,145,244,111,120,64,26,20,8,181,2,16,167,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,165,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,98,87,28,104,102,5,120,64,26,20,8,181,2,16,170,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,220,63,43,253,0,193,162,64,26,20,8,181,2,16,169,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,168,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,128,64,169,3,183,162,64,26,20,8,181,2,16,172,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,184,98,26,138,166,21,119,64,26,20,8,181,2,16,173,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,171,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,125,64,242,55,175,179,162,64,26,20,8,181,2,16,175,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,14,110,24,172,230,37,118,64,26,20,8,181,2,16,176,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,174,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,125,64,242,55,175,179,162,64,26,20,8,181,2,16,178,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,185,132,20,240,102,70,116,64,26,20,8,181,2,16,179,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,181,2,16,177,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,181,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,181,2,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,99,102,57,55,97,26,19,8,181,2,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,181,2,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,24,19,42,97,204,151,64,26,19,8,181,2,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,130,36,236,220,249,192,121,64,26,19,8,181,2,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,181,2,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,24,19,42,97,204,151,64,26,19,8,181,2,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,130,36,236,220,249,192,121,64,26,19,8,181,2,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,181,2,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,181,2,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,181,2,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,161,10,18,158,10,10,155,10,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,183,2,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,183,2,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,149,64,26,19,8,183,2,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,64,26,19,8,183,2,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,183,2,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,149,64,26,19,8,183,2,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,64,64,26,19,8,183,2,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,183,2,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,150,64,26,19,8,183,2,16,13,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,70,64,26,19,8,183,2,16,14,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,183,2,16,12,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,150,64,26,19,8,183,2,16,16,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,72,64,26,19,8,183,2,16,17,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,183,2,16,15,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,150,64,26,19,8,183,2,16,19,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,68,64,26,19,8,183,2,16,20,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,183,2,16,18,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,150,64,26,19,8,183,2,16,22,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,183,2,16,23,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,183,2,16,21,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,51,192,26,19,8,183,2,16,26,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,150,64,26,19,8,183,2,16,25,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,183,2,16,24,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,150,64,26,19,8,183,2,16,28,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,32,192,26,19,8,183,2,16,29,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,183,2,16,27,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,150,64,26,19,8,183,2,16,31,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,60,64,26,19,8,183,2,16,32,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,183,2,16,30,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,150,64,26,19,8,183,2,16,34,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,67,64,26,19,8,183,2,16,35,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,183,2,16,33,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,183,2,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,183,2,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,183,2,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,129,79,18,254,78,10,251,78,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,183,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,183,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,217,77,10,6,112,111,105,110,116,115,18,206,77,18,203,77,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,37,103,40,122,202,203,164,64,26,19,8,183,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,158,182,116,53,21,115,152,64,26,19,8,183,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,230,66,157,175,90,111,151,64,26,19,8,183,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,224,168,203,155,41,167,164,64,26,19,8,183,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,130,201,198,24,128,227,150,64,26,19,8,183,2,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,89,233,224,71,44,157,164,64,26,19,8,183,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,169,146,214,215,153,164,64,26,19,8,183,2,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,31,80,240,129,165,87,150,64,26,19,8,183,2,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,89,233,224,71,44,157,164,64,26,19,8,183,2,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,245,227,108,189,21,180,148,64,26,19,8,183,2,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,107,103,179,0,212,106,148,64,26,19,8,183,2,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,184,232,25,13,126,170,164,64,26,19,8,183,2,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,158,167,61,38,205,193,164,64,26,19,8,183,2,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,145,106,150,38,59,40,148,64,26,19,8,183,2,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,37,103,40,122,202,203,164,64,26,19,8,183,2,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,51,107,93,97,233,26,148,64,26,19,8,183,2,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,101,154,4,110,230,164,64,26,19,8,183,2,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,117,108,235,214,69,0,148,64,26,19,8,183,2,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,79,228,168,113,186,7,165,64,26,19,8,183,2,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,198,236,78,244,156,249,147,64,26,19,8,183,2,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,243,161,62,21,173,57,165,64,26,19,8,183,2,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,117,108,235,214,69,0,148,64,26,19,8,183,2,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,224,254,16,165,87,165,64,26,19,8,183,2,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,226,234,249,67,146,33,148,64,26,19,8,183,2,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,179,93,127,8,149,147,165,64,26,19,8,183,2,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,122,230,136,168,206,126,148,64,26,19,8,183,2,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,46,224,194,92,0,4,149,64,26,19,8,183,2,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,86,27,21,172,135,197,165,64,26,19,8,183,2,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,88,128,247,116,11,166,64,26,19,8,183,2,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,69,83,211,167,12,21,150,64,26,19,8,183,2,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,151,7,46,27,28,166,64,26,19,8,183,2,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,154,77,212,150,236,140,150,64,26,19,8,183,2,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,212,213,199,41,19,58,166,64,26,19,8,183,2,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,168,187,172,11,135,8,152,64,26,19,8,183,2,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,212,213,199,41,19,58,166,64,26,19,8,183,2,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,243,176,117,36,245,234,152,64,26,19,8,183,2,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,20,41,190,69,115,145,153,64,26,19,8,183,2,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,238,22,164,16,196,34,166,64,26,19,8,183,2,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,224,151,206,104,201,14,166,64,26,19,8,183,2,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,158,165,119,2,181,218,153,64,26,19,8,183,2,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,229,32,163,73,154,62,154,64,26,19,8,183,2,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,195,153,35,25,212,230,165,64,26,19,8,183,2,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,181,26,78,113,217,210,165,64,26,19,8,183,2,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,162,31,21,212,61,89,154,64,26,19,8,183,2,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,32,220,141,117,225,180,165,64,26,19,8,183,2,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,177,158,234,123,56,109,154,64,26,19,8,183,2,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,193,220,84,176,143,167,165,64,26,19,8,183,2,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,1,31,78,153,143,102,154,64,26,19,8,183,2,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,29,106,92,146,157,165,64,26,19,8,183,2,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,68,32,220,14,236,75,154,64,26,19,8,183,2,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,186,163,34,82,170,2,154,64,26,19,8,183,2,16,83,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,138,157,205,121,233,150,165,64,26,19,8,183,2,16,82,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,81,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,98,221,27,235,61,154,165,64,26,19,8,183,2,16,85,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,115,40,247,10,197,158,153,64,26,19,8,183,2,16,86,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,84,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,205,173,146,254,141,45,153,64,26,19,8,183,2,16,89,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,153,28,163,33,228,170,165,64,26,19,8,183,2,16,88,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,87,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,27,21,172,135,197,165,64,26,19,8,183,2,16,91,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,215,178,202,212,255,194,152,64,26,19,8,183,2,16,92,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,90,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,217,113,138,40,234,165,64,26,19,8,183,2,16,94,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,144,55,159,141,26,95,152,64,26,19,8,183,2,16,95,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,93,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,143,23,107,75,114,21,166,64,26,19,8,183,2,16,97,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,168,187,172,11,135,8,152,64,26,19,8,183,2,16,98,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,96,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,131,85,100,12,188,64,166,64,26,19,8,183,2,16,100,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,45,190,200,246,63,211,151,64,26,19,8,183,2,16,101,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,99,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,83,15,92,177,104,166,64,26,19,8,183,2,16,103,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,111,191,86,108,156,184,151,64,26,19,8,183,2,16,104,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,102,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,27,81,243,112,248,157,166,64,26,19,8,183,2,16,106,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,192,63,186,137,243,177,151,64,26,19,8,183,2,16,107,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,105,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,142,37,247,147,214,166,64,26,19,8,183,2,16,109,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,139,189,1,188,145,224,151,64,26,19,8,183,2,16,110,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,108,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,17,76,187,154,134,8,167,64,26,19,8,183,2,16,112,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,144,55,159,141,26,95,152,64,26,19,8,183,2,16,113,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,111,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,45,74,102,234,123,48,167,64,26,19,8,183,2,16,115,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,96,47,132,145,65,12,153,64,26,19,8,183,2,16,116,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,114,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,9,138,3,203,71,167,64,26,19,8,183,2,16,118,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,129,167,204,178,191,178,153,64,26,19,8,183,2,16,119,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,117,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,154,200,116,87,200,81,167,64,26,19,8,183,2,16,121,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,229,32,163,73,154,62,154,64,26,19,8,183,2,16,122,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,120,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,114,8,195,200,28,85,167,64,26,19,8,183,2,16,124,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,233,154,64,27,35,189,154,64,26,19,8,183,2,16,125,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,123,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,154,200,116,87,200,81,167,64,26,19,8,183,2,16,127,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,129,150,207,127,95,26,155,64,26,20,8,183,2,16,128,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,126,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,119,145,151,169,237,132,155,64,26,20,8,183,2,16,131,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,100,137,237,32,34,65,167,64,26,20,8,183,2,16,130,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,129,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,247,10,223,179,213,31,167,64,26,20,8,183,2,16,133,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,67,15,223,219,139,179,155,64,26,20,8,183,2,16,134,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,132,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,242,142,123,190,52,186,155,64,26,20,8,183,2,16,137,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,17,76,187,154,134,8,167,64,26,20,8,183,2,16,136,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,135,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,69,206,115,104,232,217,166,64,26,20,8,183,2,16,139,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,67,15,223,219,139,179,155,64,26,20,8,183,2,16,140,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,138,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,176,143,179,108,240,187,166,64,26,20,8,183,2,16,142,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,186,146,37,31,74,106,155,64,26,20,8,183,2,16,143,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,141,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,62,149,65,10,3,53,155,64,26,20,8,183,2,16,146,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,41,208,200,24,243,177,166,64,26,20,8,183,2,16,145,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,144,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,121,80,44,54,74,171,166,64,26,20,8,183,2,16,148,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,72,154,121,224,116,202,154,64,26,20,8,183,2,16,149,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,147,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,216,79,101,251,155,184,166,64,26,20,8,183,2,16,151,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,191,29,192,35,51,129,154,64,26,20,8,183,2,16,152,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,150,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,190,14,137,20,235,207,166,64,26,20,8,183,2,16,154,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,1,31,78,153,143,102,154,64,26,20,8,183,2,16,155,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,153,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,141,94,188,229,227,166,64,26,20,8,183,2,16,157,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,82,159,177,182,230,95,154,64,26,20,8,183,2,16,158,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,156,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,98,204,30,184,221,1,167,64,26,20,8,183,2,16,160,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,1,31,78,153,143,102,154,64,26,20,8,183,2,16,161,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,159,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,247,10,223,179,213,31,167,64,26,20,8,183,2,16,163,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,15,158,35,65,138,122,154,64,26,20,8,183,2,16,164,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,162,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,235,72,216,116,31,75,167,64,26,20,8,183,2,16,166,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,153,26,221,253,203,195,154,64,26,20,8,183,2,16,167,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,165,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,74,72,17,58,113,88,167,64,26,20,8,183,2,16,169,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,181,24,136,77,193,235,154,64,26,20,8,183,2,16,170,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,168,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,71,74,255,194,101,167,64,26,20,8,183,2,16,172,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,62,149,65,10,3,53,155,64,26,20,8,183,2,16,173,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,171,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,88,199,230,225,107,108,167,64,26,20,8,183,2,16,175,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,39,17,52,140,150,139,155,64,26,20,8,183,2,16,176,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,174,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,71,74,255,194,101,167,64,26,20,8,183,2,16,178,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,233,137,67,232,194,36,156,64,26,20,8,183,2,16,179,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,177,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,247,10,223,179,213,31,167,64,26,20,8,183,2,16,181,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,237,3,225,185,75,163,156,64,26,20,8,183,2,16,182,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,180,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,110,142,37,247,147,214,166,64,26,20,8,183,2,16,184,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,147,126,69,198,130,20,157,64,26,20,8,183,2,16,185,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,183,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,109,123,98,160,27,87,157,64,26,20,8,183,2,16,188,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,148,145,8,29,251,147,166,64,26,20,8,183,2,16,187,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,186,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,197,86,242,129,24,38,166,64,26,20,8,183,2,16,190,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,71,120,127,122,180,153,157,64,26,20,8,183,2,16,191,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,189,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,141,90,156,226,45,214,165,64,26,20,8,183,2,16,193,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,247,247,27,93,93,160,157,64,26,20,8,183,2,16,194,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,192,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,247,27,220,230,53,184,165,64,26,20,8,183,2,16,196,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,232,120,70,181,98,140,157,64,26,20,8,183,2,16,197,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,195,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,193,220,84,176,143,167,165,64,26,20,8,183,2,16,199,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,204,122,155,101,109,100,157,64,26,20,8,183,2,16,200,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,198,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,233,156,6,63,59,164,165,64,26,20,8,183,2,16,202,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,81,125,183,80,38,47,157,64,26,20,8,183,2,16,203,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,201,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,112,92,241,146,56,174,165,64,26,20,8,183,2,16,205,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,38,0,55,89,54,243,156,64,26,20,8,183,2,16,206,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,204,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,46,91,99,29,220,200,165,64,26,20,8,183,2,16,208,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,252,130,182,97,70,183,156,64,26,20,8,183,2,16,209,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,207,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,128,133,210,76,255,129,156,64,26,20,8,183,2,16,212,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,74,89,14,109,209,240,165,64,26,20,8,183,2,16,211,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,210,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,197,86,242,129,24,38,166,64,26,20,8,183,2,16,214,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,19,7,196,223,178,96,156,64,26,20,8,183,2,16,215,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,213,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,100,135,39,253,9,90,156,64,26,20,8,183,2,16,218,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,65,84,214,150,95,91,166,64,26,20,8,183,2,16,217,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,216,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,148,145,8,29,251,147,166,64,26,20,8,183,2,16,220,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,34,134,153,135,173,116,156,64,26,20,8,183,2,16,221,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,219,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,230,206,58,163,150,204,166,64,26,20,8,183,2,16,223,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,90,130,239,38,152,196,156,64,26,20,8,183,2,16,224,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,222,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,43,141,151,129,55,241,166,64,26,20,8,183,2,16,226,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,161,253,26,110,125,40,157,64,26,20,8,183,2,16,227,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,225,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,138,140,208,70,137,254,166,64,26,20,8,183,2,16,229,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,232,120,70,181,98,140,157,64,26,20,8,183,2,16,230,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,228,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,98,204,30,184,221,1,167,64,26,20,8,183,2,16,232,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,237,242,227,134,235,10,158,64,26,20,8,183,2,16,233,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,231,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,175,107,243,226,23,164,158,64,26,20,8,183,2,16,236,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,3,205,229,242,139,244,166,64,26,20,8,183,2,16,235,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,234,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,41,208,200,24,243,177,166,64,26,20,8,183,2,16,238,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,75,225,31,25,221,127,159,64,26,20,8,183,2,16,239,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,237,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,119,147,93,205,5,108,166,64,26,20,8,183,2,16,241,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,66,220,231,66,107,234,159,64,26,20,8,183,2,16,242,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,240,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,157,150,64,243,108,41,166,64,26,20,8,183,2,16,244,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,102,172,208,127,214,25,160,64,26,20,8,183,2,16,245,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,243,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,86,27,21,172,135,197,165,64,26,20,8,183,2,16,247,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,170,106,45,94,119,62,160,64,26,20,8,183,2,16,248,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,246,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,44,158,148,180,151,137,165,64,26,20,8,183,2,16,250,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,130,170,123,207,203,65,160,64,26,20,8,183,2,16,251,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,249,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,53,163,204,138,9,31,165,64,26,20,8,183,2,16,253,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,47,109,73,73,48,9,160,64,26,20,8,183,2,16,254,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,252,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,134,35,48,168,96,24,165,64,26,20,8,183,2,16,128,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,236,225,230,83,139,114,159,64,26,20,8,183,2,16,129,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,255,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,94,99,126,25,181,27,165,64,26,20,8,183,2,16,131,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,71,103,130,71,84,1,159,64,26,20,8,183,2,16,132,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,130,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,203,225,140,134,1,61,165,64,26,20,8,183,2,16,134,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,38,239,57,38,214,90,158,64,26,20,8,183,2,16,135,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,133,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,231,223,55,214,246,100,165,64,26,20,8,183,2,16,137,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,223,115,14,223,240,246,157,64,26,20,8,183,2,16,138,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,136,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,180,246,141,231,0,187,157,64,26,20,8,183,2,16,141,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,98,221,27,235,61,154,165,64,26,20,8,183,2,16,140,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,183,2,16,139,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,183,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,183,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,185,2,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,185,2,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,185,2,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,150,64,26,19,8,185,2,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,59,64,26,19,8,185,2,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,185,2,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,57,64,26,19,8,185,2,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,150,64,26,19,8,185,2,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,185,2,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,185,2,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,185,2,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,186,2,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,186,2,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,186,2,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,150,64,26,19,8,186,2,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,42,192,26,19,8,186,2,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,186,2,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,150,64,26,19,8,186,2,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,104,64,26,19,8,186,2,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,186,2,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,186,2,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,186,2,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,217,89,18,214,89,10,211,89,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,186,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,186,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,186,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,177,88,10,6,112,111,105,110,116,115,18,166,88,18,163,88,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,144,175,102,7,106,161,64,26,19,8,186,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,191,46,189,86,147,25,153,64,26,19,8,186,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,134,50,103,183,168,201,152,64,26,19,8,186,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,111,210,25,195,20,56,161,64,26,19,8,186,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,63,183,59,112,195,101,152,64,26,19,8,186,2,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,2,84,11,86,200,22,161,64,26,19,8,186,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,168,187,172,11,135,8,152,64,26,19,8,186,2,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,2,84,11,86,200,22,161,64,26,19,8,186,2,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,178,211,167,56,113,29,161,64,26,19,8,186,2,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,139,189,1,188,145,224,151,64,26,19,8,186,2,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,210,25,195,20,56,161,64,26,19,8,186,2,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,83,193,171,28,167,144,151,64,26,19,8,186,2,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,154,79,154,186,4,116,161,64,26,19,8,186,2,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,173,70,71,16,112,31,151,64,26,19,8,186,2,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,77,69,10,250,155,161,64,26,19,8,186,2,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,130,201,198,24,128,227,150,64,26,19,8,186,2,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,139,62,203,67,199,161,64,26,19,8,186,2,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,7,204,226,3,57,174,150,64,26,19,8,186,2,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,138,176,85,231,225,161,64,26,19,8,186,2,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,249,76,13,92,62,154,150,64,26,19,8,186,2,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,187,199,226,219,130,26,162,64,26,19,8,186,2,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,140,206,254,238,241,120,150,64,26,19,8,186,2,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,128,64,169,3,183,162,64,26,19,8,186,2,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,249,76,13,92,62,154,150,64,26,19,8,186,2,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,168,189,114,47,159,239,162,64,26,19,8,186,2,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,239,71,213,133,204,4,151,64,26,19,8,186,2,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,2,65,72,255,79,151,151,64,26,19,8,186,2,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,75,123,8,211,145,33,163,64,26,19,8,186,2,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,249,22,64,222,66,163,64,26,19,8,186,2,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,101,186,30,150,42,35,152,64,26,19,8,186,2,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,239,56,158,118,132,83,163,64,26,19,8,186,2,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,25,180,88,74,92,168,152,64,26,19,8,186,2,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,248,136,202,129,93,163,64,26,19,8,186,2,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,20,41,190,69,115,145,153,64,26,19,8,186,2,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,253,164,176,199,6,232,153,64,26,19,8,186,2,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,198,120,236,231,216,86,163,64,26,19,8,186,2,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,121,179,34,135,73,163,64,26,19,8,186,2,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,215,161,205,161,159,42,154,64,26,19,8,186,2,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,162,31,21,212,61,89,154,64,26,19,8,186,2,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,49,58,44,236,224,56,163,64,26,19,8,186,2,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,35,187,86,68,230,36,163,64,26,19,8,186,2,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,15,158,35,65,138,122,154,64,26,19,8,186,2,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,61,252,50,43,151,13,163,64,26,19,8,186,2,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,30,29,249,232,132,142,154,64,26,19,8,186,2,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,190,0,165,251,212,162,64,26,19,8,186,2,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,205,156,149,203,45,149,154,64,26,19,8,186,2,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,15,158,35,65,138,122,154,64,26,19,8,186,2,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,45,192,142,26,88,186,162,64,26,19,8,186,2,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,65,185,114,93,166,162,64,26,19,8,186,2,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,229,32,163,73,154,62,154,64,26,19,8,186,2,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,1,50,60,183,149,162,64,26,19,8,186,2,16,82,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,253,164,176,199,6,232,153,64,26,19,8,186,2,16,83,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,81,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,56,130,149,89,14,143,162,64,26,19,8,186,2,16,85,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,6,170,232,157,120,125,153,64,26,19,8,186,2,16,86,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,84,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,255,21,81,254,202,162,64,26,19,8,186,2,16,88,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,101,186,30,150,42,35,152,64,26,19,8,186,2,16,89,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,87,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,60,129,156,235,16,163,64,26,19,8,186,2,16,91,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,206,190,143,49,238,197,151,64,26,19,8,186,2,16,92,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,90,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,94,116,123,76,21,180,163,64,26,19,8,186,2,16,94,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,68,66,214,116,172,124,151,64,26,19,8,186,2,16,95,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,93,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,151,112,209,235,255,3,164,64,26,19,8,186,2,16,97,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,177,192,228,225,248,157,151,64,26,19,8,186,2,16,98,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,96,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,224,168,203,155,41,167,164,64,26,19,8,186,2,16,100,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,2,48,75,204,239,254,152,64,26,19,8,186,2,16,101,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,99,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,168,4,97,123,180,164,64,26,19,8,186,2,16,103,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,6,170,232,157,120,125,153,64,26,19,8,186,2,16,104,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,102,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,39,161,67,36,187,164,64,26,19,8,186,2,16,106,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,25,163,91,23,252,15,154,64,26,19,8,186,2,16,107,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,105,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,39,161,67,36,187,164,64,26,19,8,186,2,16,109,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,167,153,178,165,198,215,154,64,26,19,8,186,2,16,110,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,108,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,49,41,47,185,128,160,164,64,26,19,8,186,2,16,112,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,157,148,122,207,84,66,155,64,26,19,8,186,2,16,113,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,111,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,34,170,89,17,134,140,164,64,26,19,8,186,2,16,115,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,105,18,194,1,243,112,155,64,26,19,8,186,2,16,116,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,114,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,42,189,46,221,133,164,64,26,19,8,186,2,16,118,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,24,146,94,228,155,119,155,64,26,19,8,186,2,16,119,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,117,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,196,170,32,76,52,127,164,64,26,19,8,186,2,16,121,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,105,18,194,1,243,112,155,64,26,19,8,186,2,16,122,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,120,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,196,170,32,76,52,127,164,64,26,19,8,186,2,16,124,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,238,20,222,236,171,59,155,64,26,19,8,186,2,16,125,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,123,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,110,18,108,10,106,10,41,10,1,121,18,36,26,34,8,4,18,8,20,24,193,18,19,249,154,64,26,20,8,186,2,16,128,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,75,106,11,160,49,137,164,64,26,19,8,186,2,16,127,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,126,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,129,169,146,214,215,153,164,64,26,20,8,186,2,16,130,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,233,154,64,27,35,189,154,64,26,20,8,186,2,16,131,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,129,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,158,167,61,38,205,193,164,64,26,20,8,186,2,16,133,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,205,156,149,203,45,149,154,64,26,20,8,186,2,16,134,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,132,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,30,29,249,232,132,142,154,64,26,20,8,186,2,16,137,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,212,230,196,92,115,210,164,64,26,20,8,186,2,16,136,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,135,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,65,101,211,201,191,243,164,64,26,20,8,186,2,16,139,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,205,156,149,203,45,149,154,64,26,20,8,186,2,16,140,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,138,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,108,226,83,193,175,47,165,64,26,20,8,186,2,16,142,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,48,22,108,98,8,33,155,64,26,20,8,186,2,16,143,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,141,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,19,80,119,79,86,155,64,26,20,8,186,2,16,146,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,27,98,240,163,88,54,165,64,26,20,8,186,2,16,145,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,144,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,203,225,140,134,1,61,165,64,26,20,8,186,2,16,148,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,81,142,180,131,134,199,155,64,26,20,8,186,2,16,149,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,147,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,166,136,181,114,102,63,156,64,26,20,8,186,2,16,152,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,243,161,62,21,173,57,165,64,26,20,8,186,2,16,151,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,150,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,53,163,204,138,9,31,165,64,26,20,8,186,2,16,154,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,185,129,40,236,233,209,156,64,26,20,8,186,2,16,155,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,153,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,133,255,111,30,136,0,157,64,26,20,8,186,2,16,158,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,255,99,69,84,99,14,165,64,26,20,8,186,2,16,157,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,156,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,155,234,110,189,136,130,164,64,26,20,8,186,2,16,160,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,218,249,112,13,104,120,157,64,26,20,8,186,2,16,161,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,159,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,253,83,51,207,53,157,64,26,20,8,186,2,16,164,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,101,171,231,134,226,113,164,64,26,20,8,186,2,16,163,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,162,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,43,75,164,57,107,164,64,26,20,8,186,2,16,166,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,171,2,83,68,239,189,156,64,26,20,8,186,2,16,167,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,165,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,141,107,153,21,142,110,164,64,26,20,8,186,2,16,169,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,247,8,25,144,189,56,156,64,26,20,8,186,2,16,170,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,168,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,81,142,180,131,134,199,155,64,26,20,8,186,2,16,173,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,196,170,32,76,52,127,164,64,26,20,8,186,2,16,172,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,171,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,6,153,235,106,24,229,154,64,26,20,8,186,2,16,176,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,65,101,211,201,191,243,164,64,26,20,8,186,2,16,175,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,174,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,53,163,204,138,9,31,165,64,26,20,8,186,2,16,178,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,248,25,22,195,29,209,154,64,26,20,8,186,2,16,179,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,177,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,82,161,119,218,254,70,165,64,26,20,8,186,2,16,181,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,167,153,178,165,198,215,154,64,26,20,8,186,2,16,182,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,180,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,231,223,55,214,246,100,165,64,26,20,8,186,2,16,184,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,20,24,193,18,19,249,154,64,26,20,8,186,2,16,185,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,183,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,29,31,191,12,157,117,165,64,26,20,8,186,2,16,187,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,143,21,165,39,90,46,155,64,26,20,8,186,2,16,188,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,186,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,124,30,248,209,238,130,165,64,26,20,8,186,2,16,190,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,43,139,209,93,31,10,156,64,26,20,8,186,2,16,191,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,189,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,29,31,191,12,157,117,165,64,26,20,8,186,2,16,193,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,166,136,181,114,102,63,156,64,26,20,8,186,2,16,194,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,192,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,1,33,20,189,167,77,165,64,26,20,8,186,2,16,196,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,62,132,68,215,162,156,156,64,26,20,8,186,2,16,197,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,195,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,122,97,41,105,170,67,165,64,26,20,8,186,2,16,199,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,237,3,225,185,75,163,156,64,26,20,8,186,2,16,200,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,198,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,243,161,62,21,173,57,165,64,26,20,8,186,2,16,202,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,223,132,11,18,81,143,156,64,26,20,8,186,2,16,203,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,201,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,203,225,140,134,1,61,165,64,26,20,8,186,2,16,205,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,5,136,238,55,184,76,156,64,26,20,8,186,2,16,206,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,204,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,122,97,41,105,170,67,165,64,26,20,8,186,2,16,208,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,233,137,67,232,194,36,156,64,26,20,8,186,2,16,209,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,207,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,160,233,100,162,97,165,64,26,20,8,186,2,16,211,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,190,12,195,240,210,232,155,64,26,20,8,186,2,16,212,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,210,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,110,159,34,42,244,110,165,64,26,20,8,186,2,16,214,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,15,141,38,14,42,226,155,64,26,20,8,186,2,16,215,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,213,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,233,156,6,63,59,164,165,64,26,20,8,186,2,16,217,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,29,12,252,181,36,246,155,64,26,20,8,186,2,16,218,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,216,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,166,136,181,114,102,63,156,64,26,20,8,186,2,16,221,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,126,219,198,58,51,194,165,64,26,20,8,186,2,16,220,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,219,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,86,27,21,172,135,197,165,64,26,20,8,186,2,16,223,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,181,7,139,26,97,83,156,64,26,20,8,186,2,16,224,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,222,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,46,91,99,29,220,200,165,64,26,20,8,186,2,16,226,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,48,5,111,47,168,136,156,64,26,20,8,186,2,16,227,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,225,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,147,126,69,198,130,20,157,64,26,20,8,186,2,16,230,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,82,161,119,218,254,70,165,64,26,20,8,186,2,16,229,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,228,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,162,33,219,247,85,64,165,64,26,20,8,186,2,16,232,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,252,130,182,97,70,183,156,64,26,20,8,186,2,16,233,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,231,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,1,33,20,189,167,77,165,64,26,20,8,186,2,16,235,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,124,11,53,123,118,3,156,64,26,20,8,186,2,16,236,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,234,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,231,223,55,214,246,100,165,64,26,20,8,186,2,16,238,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,148,143,66,249,226,172,155,64,26,20,8,186,2,16,239,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,237,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,94,70,67,67,134,165,64,26,20,8,186,2,16,241,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,105,18,194,1,243,112,155,64,26,20,8,186,2,16,242,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,240,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,19,80,119,79,86,155,64,26,20,8,186,2,16,245,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,233,156,6,63,59,164,165,64,26,20,8,186,2,16,244,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,243,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,207,91,42,88,138,187,165,64,26,20,8,186,2,16,247,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,171,19,80,119,79,86,155,64,26,20,8,186,2,16,248,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,246,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,115,25,192,251,124,237,165,64,26,20,8,186,2,16,250,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,67,15,223,219,139,179,155,64,26,20,8,186,2,16,251,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,249,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,155,217,113,138,40,234,165,64,26,20,8,186,2,16,253,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,1,14,81,102,47,206,155,64,26,20,8,186,2,16,254,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,252,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,46,91,99,29,220,200,165,64,26,20,8,186,2,16,128,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,204,139,152,152,205,252,155,64,26,20,8,186,2,16,129,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,255,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,28,163,33,228,170,165,64,26,20,8,186,2,16,131,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,43,139,209,93,31,10,156,64,26,20,8,186,2,16,132,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,130,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,205,158,91,239,69,124,165,64,26,20,8,186,2,16,134,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,10,19,137,60,161,99,155,64,26,20,8,186,2,16,135,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,133,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,205,158,91,239,69,124,165,64,26,20,8,186,2,16,137,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,62,149,65,10,3,53,155,64,26,20,8,186,2,16,138,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,136,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,94,70,67,67,134,165,64,26,20,8,186,2,16,140,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,86,25,79,136,111,222,154,64,26,20,8,186,2,16,141,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,139,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,29,106,92,146,157,165,64,26,20,8,186,2,16,143,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,124,28,50,174,214,155,154,64,26,20,8,186,2,16,144,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,142,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,6,155,177,142,48,204,165,64,26,20,8,186,2,16,146,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,243,159,120,241,148,82,154,64,26,20,8,186,2,16,147,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,145,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,162,31,21,212,61,89,154,64,26,20,8,186,2,16,150,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,117,214,142,100,193,44,166,64,26,20,8,186,2,16,149,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,148,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,36,86,43,71,106,51,166,64,26,20,8,186,2,16,152,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,82,159,177,182,230,95,154,64,26,20,8,186,2,16,153,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,151,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,110,157,92,6,220,135,154,64,26,20,8,186,2,16,156,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,171,21,22,155,103,61,166,64,26,20,8,186,2,16,155,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,154,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,252,149,121,184,190,54,166,64,26,20,8,186,2,16,158,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,44,156,206,144,127,162,154,64,26,20,8,186,2,16,159,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,157,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,221,218,255,255,132,207,165,64,26,20,8,186,2,16,161,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,167,153,178,165,198,215,154,64,26,20,8,186,2,16,162,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,160,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,155,120,201,222,190,165,64,26,20,8,186,2,16,164,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,248,25,22,195,29,209,154,64,26,20,8,186,2,16,165,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,163,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,29,106,92,146,157,165,64,26,20,8,186,2,16,167,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,44,156,206,144,127,162,154,64,26,20,8,186,2,16,168,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,166,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,29,31,191,12,157,117,165,64,26,20,8,186,2,16,170,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,200,34,248,249,164,22,154,64,26,20,8,186,2,16,171,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,169,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,96,32,77,130,249,90,165,64,26,20,8,186,2,16,173,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,191,46,189,86,147,25,153,64,26,20,8,186,2,16,174,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,172,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,217,96,98,46,252,80,165,64,26,20,8,186,2,16,176,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,30,63,243,78,69,191,151,64,26,20,8,186,2,16,177,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,186,2,16,175,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,186,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,145,86,18,142,86,10,139,86,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,186,2,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,99,102,57,55,97,26,19,8,186,2,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,186,2,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,233,84,10,6,112,111,105,110,116,115,18,222,84,18,219,84,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,243,245,10,244,61,247,109,192,26,19,8,186,2,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,132,28,174,196,159,237,133,64,26,19,8,186,2,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,55,127,118,156,151,32,112,192,26,19,8,186,2,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,224,162,87,184,20,165,135,64,26,19,8,186,2,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,217,221,182,145,32,139,112,192,26,19,8,186,2,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,117,143,120,29,107,175,136,64,26,19,8,186,2,16,14,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,209,21,34,17,224,102,138,64,26,19,8,186,2,16,17,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,211,36,167,73,7,219,112,192,26,19,8,186,2,16,16,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,15,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,130,245,6,207,194,165,112,192,26,19,8,186,2,16,19,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,196,163,2,129,173,6,139,64,26,19,8,186,2,16,20,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,18,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,55,127,118,156,151,32,112,192,26,19,8,186,2,16,22,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,227,37,59,210,41,153,139,64,26,19,8,186,2,16,23,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,21,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,55,179,139,222,79,204,110,192,26,19,8,186,2,16,25,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,133,132,123,199,178,3,140,64,26,19,8,186,2,16,26,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,24,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,39,227,187,188,59,110,140,64,26,19,8,186,2,16,29,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,175,56,138,9,44,34,109,192,26,19,8,186,2,16,28,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,27,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,95,72,63,127,13,107,192,26,19,8,186,2,16,31,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,244,53,84,147,115,203,140,64,26,19,8,186,2,16,32,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,30,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,228,70,106,91,99,105,192,26,19,8,186,2,16,34,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,25,113,156,44,9,14,141,64,26,19,8,186,2,16,35,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,33,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,37,59,165,26,243,131,103,192,26,19,8,186,2,16,37,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,150,148,148,136,252,53,141,64,26,19,8,186,2,16,38,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,36,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,47,42,225,144,16,240,98,192,26,19,8,186,2,16,40,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,231,195,52,3,65,107,141,64,26,19,8,186,2,16,41,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,39,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,180,33,255,75,31,166,96,192,26,19,8,186,2,16,43,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,187,207,220,33,146,120,141,64,26,19,8,186,2,16,44,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,42,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,231,195,52,3,65,107,141,64,26,19,8,186,2,16,47,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,41,111,242,239,31,251,83,192,26,19,8,186,2,16,46,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,45,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,120,27,175,80,79,60,80,192,26,19,8,186,2,16,49,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,150,148,148,136,252,53,141,64,26,19,8,186,2,16,50,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,48,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,76,88,77,15,208,73,192,26,19,8,186,2,16,52,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,157,77,164,208,21,230,140,64,26,19,8,186,2,16,53,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,51,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,49,230,155,244,40,82,60,192,26,19,8,186,2,16,55,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,45,156,203,4,85,30,140,64,26,19,8,186,2,16,56,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,54,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,196,163,2,129,173,6,139,64,26,19,8,186,2,16,59,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,9,203,28,58,205,16,20,192,26,19,8,186,2,16,58,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,57,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,42,143,1,212,254,115,10,64,26,19,8,186,2,16,61,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,121,45,114,78,130,129,138,64,26,19,8,186,2,16,62,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,60,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,34,18,177,173,150,42,64,26,19,8,186,2,16,64,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,141,88,161,38,206,145,137,64,26,19,8,186,2,16,65,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,63,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,6,140,130,158,159,48,64,26,19,8,186,2,16,67,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,29,167,200,90,13,202,136,64,26,19,8,186,2,16,68,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,66,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,34,18,177,173,150,42,64,26,19,8,186,2,16,70,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,80,84,48,132,213,108,136,64,26,19,8,186,2,16,71,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,69,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,42,143,1,212,254,115,10,64,26,19,8,186,2,16,73,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,130,1,152,173,157,15,136,64,26,19,8,186,2,16,74,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,72,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,153,118,151,117,189,83,55,192,26,19,8,186,2,16,76,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,230,91,103,0,46,85,135,64,26,19,8,186,2,16,77,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,75,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,176,98,82,249,127,39,67,192,26,19,8,186,2,16,79,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,237,20,119,72,71,5,135,64,26,19,8,186,2,16,80,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,78,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,149,176,37,115,230,81,192,26,19,8,186,2,16,82,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,162,158,230,21,28,128,134,64,26,19,8,186,2,16,83,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,81,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,72,52,186,204,15,86,192,26,19,8,186,2,16,85,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,38,123,238,185,40,88,134,64,26,19,8,186,2,16,86,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,84,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,172,59,227,127,98,94,192,26,19,8,186,2,16,88,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,125,99,158,124,134,61,134,64,26,19,8,186,2,16,89,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,87,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,105,248,37,5,5,89,104,192,26,19,8,186,2,16,91,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,250,134,150,216,121,101,134,64,26,19,8,186,2,16,92,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,90,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,0,8,74,246,162,106,192,26,19,8,186,2,16,94,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,31,194,222,113,15,168,134,64,26,19,8,186,2,16,95,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,93,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,94,9,234,142,231,236,108,192,26,19,8,186,2,16,97,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,237,20,119,72,71,5,135,64,26,19,8,186,2,16,98,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,96,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,104,42,132,112,87,109,192,26,19,8,186,2,16,100,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,149,44,199,133,233,31,135,64,26,19,8,186,2,16,101,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,99,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,81,151,202,254,180,140,109,192,26,19,8,186,2,16,103,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,99,127,95,92,33,125,135,64,26,19,8,186,2,16,104,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,102,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,198,106,121,249,193,109,192,26,19,8,186,2,16,106,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,204,119,40,224,200,148,136,64,26,19,8,186,2,16,107,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,105,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,104,42,132,112,87,109,192,26,19,8,186,2,16,109,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,60,41,1,172,137,92,137,64,26,19,8,186,2,16,110,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,108,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,120,237,40,175,76,173,107,192,26,19,8,186,2,16,112,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,128,230,129,150,155,49,138,64,26,19,8,186,2,16,113,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,111,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,246,80,106,170,117,169,138,64,26,19,8,186,2,16,116,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,66,162,199,84,109,56,106,192,26,19,8,186,2,16,115,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,114,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,14,26,147,179,216,139,139,64,26,19,8,186,2,16,119,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,225,125,36,48,225,174,102,192,26,19,8,186,2,16,118,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,117,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,212,130,224,120,207,100,192,26,19,8,186,2,16,121,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,220,108,43,138,16,233,139,64,26,19,8,186,2,16,122,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,120,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,128,63,65,168,16,97,192,26,19,8,186,2,16,124,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,82,215,19,158,234,96,140,64,26,19,8,186,2,16,125,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,123,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,110,18,108,10,106,10,41,10,1,121,18,36,26,34,8,4,18,8,163,6,180,24,47,150,140,64,26,20,8,186,2,16,128,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,141,22,121,46,193,120,91,192,26,19,8,186,2,16,127,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,126,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,57,100,245,153,103,79,87,192,26,20,8,186,2,16,130,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,163,6,180,24,47,150,140,64,26,20,8,186,2,16,131,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,129,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,67,83,49,16,133,187,82,192,26,20,8,186,2,16,133,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,251,238,99,219,140,123,140,64,26,20,8,186,2,16,134,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,132,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,19,10,217,55,33,165,74,192,26,20,8,186,2,16,136,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,45,156,203,4,85,30,140,64,26,20,8,186,2,16,137,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,135,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,64,219,158,158,112,166,63,192,26,20,8,186,2,16,139,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,14,26,147,179,216,139,139,64,26,20,8,186,2,16,140,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,138,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,195,57,26,69,133,89,39,192,26,20,8,186,2,16,142,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,71,128,10,37,186,222,138,64,26,20,8,186,2,16,143,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,141,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,177,6,190,142,226,19,64,26,20,8,186,2,16,145,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,172,218,217,119,74,36,138,64,26,20,8,186,2,16,146,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,144,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,128,141,87,194,73,50,64,26,20,8,186,2,16,148,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,185,76,249,7,125,132,137,64,26,20,8,186,2,16,149,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,147,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,220,95,150,85,153,70,60,64,26,20,8,186,2,16,151,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,198,190,24,152,175,228,136,64,26,20,8,186,2,16,152,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,150,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,186,103,77,106,130,162,64,64,26,20,8,186,2,16,154,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,123,72,136,101,132,95,136,64,26,20,8,186,2,16,155,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,153,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,66,226,78,63,166,76,66,64,26,20,8,186,2,16,157,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,217,233,71,112,251,244,135,64,26,20,8,186,2,16,158,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,156,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,254,36,206,84,148,119,65,64,26,20,8,186,2,16,160,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,156,229,214,205,2,208,134,64,26,20,8,186,2,16,161,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,159,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,229,148,128,117,156,58,64,26,20,8,186,2,16,163,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,206,146,62,247,202,114,134,64,26,20,8,186,2,16,164,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,162,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,41,34,18,177,173,150,42,64,26,20,8,186,2,16,166,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,0,64,166,32,147,21,134,64,26,20,8,186,2,16,167,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,165,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,9,203,28,58,205,16,20,192,26,20,8,186,2,16,169,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,51,237,13,74,91,184,133,64,26,20,8,186,2,16,170,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,168,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,49,230,155,244,40,82,60,192,26,20,8,186,2,16,172,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,13,178,197,176,197,117,133,64,26,20,8,186,2,16,173,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,171,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,155,132,218,12,69,79,76,192,26,20,8,186,2,16,175,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,189,130,37,54,129,64,133,64,26,20,8,186,2,16,176,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,174,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,115,50,58,14,92,184,92,192,26,20,8,186,2,16,178,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,232,118,125,23,48,51,133,64,26,20,8,186,2,16,179,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,177,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,14,32,177,117,176,97,192,26,20,8,186,2,16,181,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,189,130,37,54,129,64,133,64,26,20,8,186,2,16,182,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,180,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,21,70,162,112,171,47,100,192,26,20,8,186,2,16,184,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,13,178,197,176,197,117,133,64,26,20,8,186,2,16,185,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,183,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,225,125,36,48,225,174,102,192,26,20,8,186,2,16,187,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,219,4,94,135,253,210,133,64,26,20,8,186,2,16,188,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,186,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,173,181,166,239,22,46,105,192,26,20,8,186,2,16,190,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,38,123,238,185,40,88,134,64,26,20,8,186,2,16,191,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,189,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,133,95,72,63,127,13,107,192,26,20,8,186,2,16,193,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,112,241,126,236,83,221,134,64,26,20,8,186,2,16,194,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,192,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,104,42,132,112,87,109,192,26,20,8,186,2,16,196,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,180,174,255,214,101,178,135,64,26,20,8,186,2,16,197,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,195,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,149,84,75,233,198,97,110,192,26,20,8,186,2,16,199,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,117,143,120,29,107,175,136,64,26,20,8,186,2,16,200,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,198,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,128,230,129,150,155,49,138,64,26,20,8,186,2,16,203,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,230,131,235,99,11,151,110,192,26,20,8,186,2,16,202,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,201,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,243,245,10,244,61,247,109,192,26,20,8,186,2,16,205,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,240,151,90,98,92,249,138,64,26,20,8,186,2,16,206,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,204,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,183,49,227,240,122,166,139,64,26,20,8,186,2,16,209,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,26,76,105,164,213,23,108,192,26,20,8,186,2,16,208,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,207,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,173,181,166,239,22,46,105,192,26,20,8,186,2,16,211,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,1,168,115,35,166,43,140,64,26,20,8,186,2,16,212,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,210,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,50,195,213,1,58,101,192,26,20,8,186,2,16,214,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,120,18,92,55,128,163,140,64,26,20,8,186,2,16,215,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,213,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,180,33,255,75,31,166,96,192,26,20,8,186,2,16,217,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,157,77,164,208,21,230,140,64,26,20,8,186,2,16,218,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,216,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,134,159,145,222,180,225,137,64,26,20,8,186,2,16,221,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,122,41,242,231,214,55,85,64,26,20,8,186,2,16,220,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,219,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,96,69,179,199,113,119,86,64,26,20,8,186,2,16,223,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,204,119,40,224,200,148,136,64,26,20,8,186,2,16,224,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,222,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,28,136,50,221,95,162,85,64,26,20,8,186,2,16,226,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,174,245,239,142,76,2,136,64,26,20,8,186,2,16,227,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,225,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,80,80,176,29,42,35,83,64,26,20,8,186,2,16,229,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,143,115,183,61,208,111,135,64,26,20,8,186,2,16,230,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,228,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,126,216,39,143,30,77,64,26,20,8,186,2,16,232,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,112,241,126,236,83,221,134,64,26,20,8,186,2,16,233,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,231,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,25,45,15,7,102,66,39,64,26,20,8,186,2,16,235,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,132,28,174,196,159,237,133,64,26,20,8,186,2,16,236,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,234,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,195,57,26,69,133,89,39,192,26,20,8,186,2,16,238,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,94,225,101,43,10,171,133,64,26,20,8,186,2,16,239,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,237,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,108,165,209,14,110,82,66,192,26,20,8,186,2,16,241,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,226,189,109,207,22,131,133,64,26,20,8,186,2,16,242,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,240,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,103,188,92,204,122,206,78,192,26,20,8,186,2,16,244,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,57,166,29,146,116,104,133,64,26,20,8,186,2,16,245,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,243,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,139,179,207,186,58,85,192,26,20,8,186,2,16,247,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,57,166,29,146,116,104,133,64,26,20,8,186,2,16,248,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,246,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,235,183,56,57,56,14,91,192,26,20,8,186,2,16,250,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,13,178,197,176,197,117,133,64,26,20,8,186,2,16,251,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,249,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,224,200,252,194,26,162,95,192,26,20,8,186,2,16,253,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,51,237,13,74,91,184,133,64,26,20,8,186,2,16,254,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,252,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,154,61,192,43,186,229,97,192,26,20,8,186,2,16,128,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,0,64,166,32,147,21,134,64,26,20,8,186,2,16,129,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,255,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,251,97,99,80,70,111,101,192,26,20,8,186,2,16,131,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,149,44,199,133,233,31,135,64,26,20,8,186,2,16,132,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,130,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,225,125,36,48,225,174,102,192,26,20,8,186,2,16,134,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,136,186,167,245,182,191,135,64,26,20,8,186,2,16,135,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,133,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,118,106,69,149,55,185,103,192,26,20,8,186,2,16,137,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,248,107,128,193,119,135,136,64,26,20,8,186,2,16,138,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,136,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,248,37,5,5,89,104,192,26,20,8,186,2,16,140,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,185,76,249,7,125,132,137,64,26,20,8,186,2,16,141,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,139,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,186,39,198,127,73,142,104,192,26,20,8,186,2,16,143,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,34,69,194,139,36,156,138,64,26,20,8,186,2,16,144,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,142,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,248,37,5,5,89,104,192,26,20,8,186,2,16,146,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,183,49,227,240,122,166,139,64,26,20,8,186,2,16,147,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,145,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,131,220,100,37,106,25,103,192,26,20,8,186,2,16,149,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,163,6,180,24,47,150,140,64,26,20,8,186,2,16,150,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,148,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,19,184,140,228,239,93,141,64,26,20,8,186,2,16,153,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,8,212,130,224,120,207,100,192,26,20,8,186,2,16,152,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,151,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,154,61,192,43,186,229,97,192,26,20,8,186,2,16,155,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,50,58,197,53,108,240,141,64,26,20,8,186,2,16,156,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,154,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,47,117,185,35,74,227,91,192,26,20,8,186,2,16,158,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,255,140,93,12,164,77,142,64,26,20,8,186,2,16,159,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,157,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,80,188,253,134,232,130,142,64,26,20,8,186,2,16,162,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,120,18,36,26,34,8,4,18,8,67,83,49,16,133,187,82,192,26,20,8,186,2,16,161,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,160,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,118,151,117,189,83,55,192,26,20,8,186,2,16,164,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,41,10,1,121,18,36,26,34,8,4,18,8,249,211,77,196,138,157,142,64,26,20,8,186,2,16,165,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,20,8,186,2,16,163,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,186,2,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,189,2,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,189,2,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,189,2,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,151,64,26,19,8,189,2,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,64,26,19,8,189,2,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,189,2,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,153,64,26,19,8,189,2,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,64,26,19,8,189,2,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,189,2,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,153,64,26,19,8,189,2,16,13,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,24,64,26,19,8,189,2,16,14,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,189,2,16,12,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,151,64,26,19,8,189,2,16,16,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,89,64,26,19,8,189,2,16,17,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,189,2,16,15,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,189,2,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,189,2,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,43,90,63,250,207,118,150,64,26,19,8,190,2,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,211,215,83,13,162,162,178,64,26,19,8,190,2,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,190,2,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,43,90,63,250,207,118,150,64,26,19,8,190,2,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,211,215,83,13,162,162,178,64,26,19,8,190,2,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,190,2,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,190,2,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,190,2,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,56,101,102,102,98,102,26,19,8,190,2,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,190,2,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,190,2,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,188,28,18,185,28,10,182,28,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,189,2,16,2,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,99,102,57,55,97,26,19,8,189,2,16,3,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,189,2,16,4,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,148,27,10,6,112,111,105,110,116,115,18,137,27,18,134,27,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,89,248,67,175,163,90,192,26,19,8,189,2,16,7,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,123,72,136,101,132,95,136,64,26,19,8,189,2,16,8,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,6,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,57,100,245,153,103,79,87,192,26,19,8,189,2,16,10,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,228,64,81,233,43,119,137,64,26,19,8,189,2,16,11,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,9,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,203,205,50,229,168,101,84,192,26,19,8,189,2,16,13,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,228,64,81,233,43,119,137,64,26,19,8,189,2,16,14,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,12,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,35,255,219,225,104,249,77,192,26,19,8,189,2,16,16,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,147,17,177,110,231,65,137,64,26,19,8,189,2,16,17,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,15,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,72,210,86,120,235,37,72,192,26,19,8,189,2,16,19,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,117,143,120,29,107,175,136,64,26,19,8,189,2,16,20,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,18,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,87,85,163,199,123,70,192,26,19,8,189,2,16,22,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,42,25,232,234,63,42,136,64,26,19,8,189,2,16,23,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,21,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,72,210,86,120,235,37,72,192,26,19,8,189,2,16,25,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,217,233,71,112,251,244,135,64,26,19,8,189,2,16,26,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,24,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,10,217,55,33,165,74,192,26,19,8,189,2,16,28,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,49,210,247,50,89,218,135,64,26,19,8,189,2,16,29,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,27,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,187,216,47,59,97,17,81,192,26,19,8,189,2,16,31,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,180,174,255,214,101,178,135,64,26,19,8,189,2,16,32,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,30,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,72,52,186,204,15,86,192,26,19,8,189,2,16,34,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,136,186,167,245,182,191,135,64,26,19,8,189,2,16,35,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,33,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,128,182,121,2,143,88,192,26,19,8,189,2,16,37,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,217,233,71,112,251,244,135,64,26,19,8,189,2,16,38,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,36,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,211,249,24,211,77,92,192,26,19,8,189,2,16,40,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,110,214,104,213,81,255,136,64,26,19,8,189,2,16,41,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,39,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,50,58,14,92,184,92,192,26,19,8,189,2,16,43,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,178,147,233,191,99,212,137,64,26,19,8,189,2,16,44,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,42,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,47,117,185,35,74,227,91,192,26,19,8,189,2,16,46,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,3,195,137,58,168,9,138,64,26,19,8,189,2,16,47,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,45,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,5,156,119,89,157,206,89,192,26,19,8,189,2,16,49,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,172,218,217,119,74,36,138,64,26,19,8,189,2,16,50,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,48,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,72,52,186,204,15,86,192,26,19,8,189,2,16,52,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,172,218,217,119,74,36,138,64,26,19,8,189,2,16,53,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,51,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,67,83,49,16,133,187,82,192,26,19,8,189,2,16,55,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,47,183,225,27,87,252,137,64,26,19,8,189,2,16,56,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,54,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,188,92,204,122,206,78,192,26,19,8,189,2,16,58,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,97,100,73,69,31,159,137,64,26,19,8,189,2,16,59,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,57,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,199,89,34,51,122,75,192,26,19,8,189,2,16,61,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,191,5,9,80,150,52,137,64,26,19,8,189,2,16,62,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,60,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,140,143,215,98,253,250,72,192,26,19,8,189,2,16,64,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,161,131,208,254,25,162,136,64,26,19,8,189,2,16,65,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,63,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,10,217,55,33,165,74,192,26,19,8,189,2,16,67,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,248,107,128,193,119,135,136,64,26,19,8,189,2,16,68,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,66,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,93,55,112,48,234,123,81,192,26,19,8,189,2,16,70,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,36,96,216,162,38,122,136,64,26,19,8,189,2,16,71,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,69,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,204,119,40,224,200,148,136,64,26,19,8,189,2,16,74,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,41,111,242,239,31,251,83,192,26,19,8,189,2,16,73,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,72,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,233,243,196,67,165,85,192,26,19,8,189,2,16,76,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,29,167,200,90,13,202,136,64,26,19,8,189,2,16,77,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,75,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,245,166,116,175,85,122,86,192,26,19,8,189,2,16,79,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,191,5,9,80,150,52,137,64,26,19,8,189,2,16,80,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,78,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,233,243,196,67,165,85,192,26,19,8,189,2,16,82,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,60,41,1,172,137,92,137,64,26,19,8,189,2,16,83,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,81,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,203,205,50,229,168,101,84,192,26,19,8,189,2,16,85,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,60,41,1,172,137,92,137,64,26,19,8,189,2,16,86,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,84,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,109,44,115,218,49,208,84,192,26,19,8,189,2,16,88,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,23,238,184,18,244,25,137,64,26,19,8,189,2,16,89,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,87,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,23,238,184,18,244,25,137,64,26,19,8,189,2,16,92,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,120,18,35,26,33,8,4,18,8,141,22,121,46,193,120,91,192,26,19,8,189,2,16,91,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,90,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,50,58,14,92,184,92,192,26,19,8,189,2,16,94,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,235,249,96,49,69,39,137,64,26,19,8,189,2,16,95,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,93,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,89,78,251,237,246,247,93,192,26,19,8,189,2,16,97,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,40,10,1,121,18,35,26,33,8,4,18,8,228,64,81,233,43,119,137,64,26,19,8,189,2,16,98,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,96,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,5,26,12,99,70,121,131,152,207,109,6,237,70,56,239,18,19,8,189,2,16,1,26,12,99,70,121,131,152,207,109,6,237,70,56,239,10,135,5,18,132,5,10,129,5,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,152,64,26,19,8,191,2,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,69,64,26,19,8,191,2,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,191,2,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,44,153,64,26,19,8,191,2,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,77,64,26,19,8,191,2,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,191,2,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,84,64,26,19,8,191,2,16,14,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,153,64,26,19,8,191,2,16,13,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,191,2,16,12,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,153,64,26,19,8,191,2,16,16,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,87,64,26,19,8,191,2,16,17,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,191,2,16,15,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,191,2,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,191,2,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,191,2,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,191,2,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,191,2,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,152,64,26,19,8,193,2,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,91,64,26,19,8,193,2,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,193,2,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,154,64,26,19,8,193,2,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,91,64,26,19,8,193,2,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,193,2,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,193,2,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,193,2,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,193,2,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,193,2,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,193,2,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,187,83,18,184,83,10,181,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,193,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,193,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,193,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,147,82,10,6,112,111,105,110,116,115,18,136,82,18,133,82,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,130,92,148,188,129,162,64,26,19,8,193,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,245,227,108,189,21,180,148,64,26,19,8,193,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,195,56,123,109,106,162,64,26,19,8,193,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,188,231,22,30,43,100,148,64,26,19,8,193,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,135,69,42,14,33,73,162,64,26,19,8,193,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,23,126,175,68,84,139,146,64,26,19,8,193,2,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,175,5,220,156,204,69,162,64,26,19,8,193,2,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,52,141,87,199,169,75,145,64,26,19,8,193,2,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,135,69,42,14,33,73,162,64,26,19,8,193,2,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,14,155,113,212,162,38,144,64,26,19,8,193,2,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,5,21,98,30,83,162,64,26,19,8,193,2,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,190,71,167,22,84,216,142,64,26,19,8,193,2,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,195,56,123,109,106,162,64,26,19,8,193,2,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,190,88,164,73,180,112,141,64,26,19,8,193,2,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,137,2,249,118,101,136,162,64,26,19,8,193,2,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,58,103,133,145,91,62,140,64,26,19,8,193,2,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,139,191,199,223,169,199,162,64,26,19,8,193,2,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,87,118,45,20,177,254,138,64,26,19,8,193,2,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,127,253,192,160,243,242,162,64,26,19,8,193,2,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,220,120,73,255,105,201,138,64,26,19,8,193,2,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,142,124,150,72,238,6,163,64,26,19,8,193,2,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,58,120,130,196,187,214,138,64,26,19,8,193,2,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,122,65,152,227,46,163,64,26,19,8,193,2,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,115,116,216,99,166,38,139,64,26,19,8,193,2,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,158,184,58,89,45,90,163,64,26,19,8,193,2,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,229,108,132,162,123,198,139,64,26,19,8,193,2,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,215,180,144,248,23,170,163,64,26,19,8,193,2,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,217,7,188,211,224,188,145,64,26,19,8,193,2,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,66,118,208,252,31,140,163,64,26,19,8,193,2,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,194,131,174,85,116,19,146,64,26,19,8,193,2,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,213,247,193,143,211,106,163,64,26,19,8,193,2,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,156,128,203,47,13,86,146,64,26,19,8,193,2,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,122,122,93,53,60,163,64,26,19,8,193,2,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,23,126,175,68,84,139,146,64,26,19,8,193,2,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,23,249,79,5,48,80,163,64,26,19,8,193,2,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,218,69,82,102,73,0,143,64,26,19,8,193,2,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,187,182,229,168,34,130,163,64,26,19,8,193,2,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,237,79,194,18,45,43,142,64,26,19,8,193,2,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,13,244,23,47,190,186,163,64,26,19,8,193,2,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,247,84,250,232,158,192,141,64,26,19,8,193,2,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,247,84,250,232,158,192,141,64,26,19,8,193,2,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,217,113,95,97,92,233,163,64,26,19,8,193,2,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,246,111,10,177,81,17,164,64,26,19,8,193,2,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,76,79,251,215,126,56,142,64,26,19,8,193,2,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,238,24,30,158,50,164,64,26,19,8,193,2,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,247,67,253,181,62,40,143,64,26,19,8,193,2,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,191,48,131,122,171,0,164,64,26,19,8,193,2,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,23,126,175,68,84,139,146,64,26,19,8,193,2,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,137,241,251,67,5,240,163,64,26,19,8,193,2,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,132,252,189,177,160,172,146,64,26,19,8,193,2,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,28,115,237,214,184,206,163,64,26,19,8,193,2,16,82,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,241,122,204,30,237,205,146,64,26,19,8,193,2,16,83,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,81,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,163,50,216,42,182,216,163,64,26,19,8,193,2,16,85,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,32,131,231,26,198,32,146,64,26,19,8,193,2,16,86,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,84,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,96,49,74,181,89,243,163,64,26,19,8,193,2,16,88,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,151,6,46,94,132,215,145,64,26,19,8,193,2,16,89,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,87,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,246,111,10,177,81,17,164,64,26,19,8,193,2,16,91,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,28,9,74,73,61,162,145,64,26,19,8,193,2,16,92,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,90,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,193,237,81,227,239,63,164,64,26,19,8,193,2,16,94,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,255,10,159,249,71,122,145,64,26,19,8,193,2,16,95,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,93,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,72,173,60,55,237,73,164,64,26,19,8,193,2,16,97,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,255,10,159,249,71,122,145,64,26,19,8,193,2,16,98,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,96,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,234,110,189,136,130,164,64,26,19,8,193,2,16,100,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,232,134,145,123,219,208,145,64,26,19,8,193,2,16,101,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,99,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,196,170,32,76,52,127,164,64,26,19,8,193,2,16,103,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,222,129,89,165,105,59,146,64,26,19,8,193,2,16,104,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,102,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,103,254,18,98,171,132,146,64,26,19,8,193,2,16,107,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,181,43,75,164,57,107,164,64,26,19,8,193,2,16,106,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,105,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,173,3,114,155,60,164,64,26,19,8,193,2,16,109,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,94,249,218,139,57,239,146,64,26,19,8,193,2,16,110,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,108,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,191,48,131,122,171,0,164,64,26,19,8,193,2,16,112,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,156,145,200,98,109,238,144,64,26,19,8,193,2,16,113,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,111,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,219,46,46,202,160,40,164,64,26,19,8,193,2,16,115,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,246,22,100,86,54,125,144,64,26,19,8,193,2,16,116,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,114,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,39,161,67,36,187,164,64,26,19,8,193,2,16,118,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,161,28,99,103,86,5,144,64,26,19,8,193,2,16,119,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,117,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,166,118,235,30,207,164,64,26,19,8,193,2,16,121,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,204,153,227,94,70,65,144,64,26,19,8,193,2,16,122,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,120,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,99,149,114,195,130,158,144,64,26,19,8,193,2,16,125,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,91,166,175,176,112,220,164,64,26,19,8,193,2,16,124,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,123,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,51,230,253,33,197,223,164,64,26,19,8,193,2,16,127,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,9,16,215,207,185,15,145,64,26,20,8,193,2,16,128,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,126,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,91,166,175,176,112,220,164,64,26,20,8,193,2,16,130,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,175,138,59,220,240,128,145,64,26,20,8,193,2,16,131,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,129,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,155,234,110,189,136,130,164,64,26,20,8,193,2,16,133,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,132,252,189,177,160,172,146,64,26,20,8,193,2,16,134,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,132,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,249,161,198,231,225,146,64,26,20,8,193,2,16,137,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,46,108,96,80,60,97,164,64,26,20,8,193,2,16,136,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,135,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,45,160,84,68,67,164,64,26,20,8,193,2,16,139,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,108,120,176,51,52,3,147,64,26,20,8,193,2,16,140,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,138,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,4,239,223,88,76,37,164,64,26,20,8,193,2,16,142,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,42,119,34,190,215,29,147,64,26,20,8,193,2,16,143,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,141,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,110,176,31,93,84,7,164,64,26,20,8,193,2,16,145,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,217,246,190,160,128,36,147,64,26,20,8,193,2,16,146,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,144,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,203,242,137,185,97,213,163,64,26,20,8,193,2,16,148,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,130,32,224,23,46,146,64,26,20,8,193,2,16,149,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,147,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,82,178,116,13,95,223,163,64,26,20,8,193,2,16,151,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,161,11,102,52,246,108,145,64,26,20,8,193,2,16,152,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,150,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,231,240,52,9,87,253,163,64,26,20,8,193,2,16,154,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,4,150,57,254,48,145,144,64,26,20,8,193,2,16,155,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,153,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,44,175,145,231,247,33,164,64,26,20,8,193,2,16,157,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,175,155,56,15,81,25,144,64,26,20,8,193,2,16,158,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,156,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,45,160,84,68,67,164,64,26,20,8,193,2,16,160,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,76,62,254,164,30,160,143,64,26,20,8,193,2,16,161,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,159,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,180,66,111,64,226,66,143,64,26,20,8,193,2,16,164,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,155,234,110,189,136,130,164,64,26,20,8,193,2,16,163,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,162,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,89,233,224,71,44,157,164,64,26,20,8,193,2,16,166,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,38,59,27,127,183,226,143,64,26,20,8,193,2,16,167,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,165,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,215,180,144,248,23,170,163,64,26,20,8,193,2,16,169,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,222,129,89,165,105,59,146,64,26,20,8,193,2,16,170,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,168,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,201,53,187,80,29,150,163,64,26,20,8,193,2,16,172,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,47,19,186,245,32,205,144,64,26,20,8,193,2,16,173,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,171,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,166,150,0,57,223,131,144,64,26,20,8,193,2,16,176,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,215,180,144,248,23,170,163,64,26,20,8,193,2,16,175,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,174,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,82,178,116,13,95,223,163,64,26,20,8,193,2,16,178,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,109,154,170,153,244,51,144,64,26,20,8,193,2,16,179,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,177,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,96,49,74,181,89,243,163,64,26,20,8,193,2,16,181,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,189,26,14,183,75,45,144,64,26,20,8,193,2,16,182,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,180,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,205,175,88,34,166,20,164,64,26,20,8,193,2,16,184,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,222,146,86,216,201,211,144,64,26,20,8,193,2,16,185,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,183,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,184,143,115,178,98,22,145,64,26,20,8,193,2,16,188,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,70,240,109,206,168,10,164,64,26,20,8,193,2,16,187,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,186,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,56,113,152,38,174,246,163,64,26,20,8,193,2,16,190,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,146,140,144,140,251,88,145,64,26,20,8,193,2,16,191,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,189,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,82,178,116,13,95,223,163,64,26,20,8,193,2,16,193,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,94,10,216,190,153,135,145,64,26,20,8,193,2,16,194,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,192,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,175,244,222,105,108,173,163,64,26,20,8,193,2,16,196,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,137,135,88,182,137,195,145,64,26,20,8,193,2,16,197,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,195,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,70,134,202,64,45,222,145,64,26,20,8,193,2,16,200,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,172,55,16,1,40,110,163,64,26,20,8,193,2,16,199,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,198,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,118,248,136,202,129,93,163,64,26,20,8,193,2,16,202,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,217,7,188,211,224,188,145,64,26,20,8,193,2,16,203,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,201,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,239,56,158,118,132,83,163,64,26,20,8,193,2,16,205,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,241,139,201,81,77,102,145,64,26,20,8,193,2,16,206,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,204,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,198,120,236,231,216,86,163,64,26,20,8,193,2,16,208,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,85,22,157,27,136,138,144,64,26,20,8,193,2,16,209,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,207,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,227,57,141,9,91,253,143,64,26,20,8,193,2,16,212,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,213,247,193,143,211,106,163,64,26,20,8,193,2,16,211,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,210,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,54,180,201,189,105,183,163,64,26,20,8,193,2,16,214,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,161,73,252,198,94,176,142,64,26,20,8,193,2,16,215,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,213,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,16,177,230,151,2,250,163,64,26,20,8,193,2,16,217,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,67,74,195,1,13,163,142,64,26,20,8,193,2,16,218,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,216,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,219,46,46,202,160,40,164,64,26,20,8,193,2,16,220,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,142,63,140,26,123,133,143,64,26,20,8,193,2,16,221,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,219,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,72,173,60,55,237,73,164,64,26,20,8,193,2,16,223,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,109,154,170,153,244,51,144,64,26,20,8,193,2,16,224,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,222,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,6,172,174,193,144,100,164,64,26,20,8,193,2,16,226,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,113,20,72,107,125,178,144,64,26,20,8,193,2,16,227,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,225,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,141,107,153,21,142,110,164,64,26,20,8,193,2,16,229,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,203,136,230,43,230,168,145,64,26,20,8,193,2,16,230,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,228,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,46,108,96,80,60,97,164,64,26,20,8,193,2,16,232,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,4,133,60,203,208,248,145,64,26,20,8,193,2,16,233,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,231,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,18,110,181,0,71,57,164,64,26,20,8,193,2,16,235,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,141,1,246,135,18,66,146,64,26,20,8,193,2,16,236,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,234,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,44,175,145,231,247,33,164,64,26,20,8,193,2,16,238,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,75,0,104,18,182,92,146,64,26,20,8,193,2,16,239,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,237,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,16,177,230,151,2,250,163,64,26,20,8,193,2,16,241,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,89,127,61,186,176,112,146,64,26,20,8,193,2,16,242,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,240,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,146,246,51,26,119,133,163,64,26,20,8,193,2,16,244,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,175,138,59,220,240,128,145,64,26,20,8,193,2,16,245,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,243,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,227,118,151,55,206,126,163,64,26,20,8,193,2,16,247,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,237,17,44,128,196,231,144,64,26,20,8,193,2,16,248,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,246,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,137,152,85,233,233,91,144,64,26,20,8,193,2,16,251,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,227,118,151,55,206,126,163,64,26,20,8,193,2,16,250,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,249,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,9,61,112,47,194,186,143,64,26,20,8,193,2,16,254,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,146,246,51,26,119,133,163,64,26,20,8,193,2,16,253,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,252,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,120,181,87,51,198,156,163,64,26,20,8,193,2,16,128,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,190,71,167,22,84,216,142,64,26,20,8,193,2,16,129,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,255,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,99,238,24,30,158,50,164,64,26,20,8,193,2,16,131,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,152,85,193,35,77,179,141,64,26,20,8,193,2,16,132,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,130,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,172,117,252,62,87,164,64,26,20,8,193,2,16,134,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,19,83,165,56,148,232,141,64,26,20,8,193,2,16,135,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,133,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,101,171,231,134,226,113,164,64,26,20,8,193,2,16,137,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,171,78,52,157,208,69,142,64,26,20,8,193,2,16,138,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,136,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,115,42,189,46,221,133,164,64,26,20,8,193,2,16,140,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,123,70,25,161,247,242,142,64,26,20,8,193,2,16,141,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,139,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,34,170,89,17,134,140,164,64,26,20,8,193,2,16,143,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,171,61,55,106,112,173,143,64,26,20,8,193,2,16,144,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,142,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,16,177,230,151,2,250,163,64,26,20,8,193,2,16,146,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,165,133,3,6,127,235,145,64,26,20,8,193,2,16,147,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,145,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,229,51,102,160,18,190,163,64,26,20,8,193,2,16,149,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,208,2,132,253,110,39,146,64,26,20,8,193,2,16,150,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,148,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,40,53,244,21,111,163,163,64,26,20,8,193,2,16,152,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,47,2,189,194,192,52,146,64,26,20,8,193,2,16,153,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,151,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,92,183,172,227,208,116,163,64,26,20,8,193,2,16,155,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,47,2,189,194,192,52,146,64,26,20,8,193,2,16,156,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,193,2,16,154,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,193,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,195,2,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,195,2,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,195,2,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,153,64,26,19,8,195,2,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,91,64,26,19,8,195,2,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,195,2,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,153,64,26,19,8,195,2,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,113,64,26,19,8,195,2,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,195,2,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,195,2,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,195,2,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,234,180,2,18,230,180,2,10,226,180,2,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,196,2,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,191,179,2,10,6,112,111,105,110,116,115,18,179,179,2,18,175,179,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,160,64,26,19,8,196,2,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,230,148,64,26,19,8,196,2,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,23,160,64,26,19,8,196,2,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,223,148,64,26,19,8,196,2,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,160,64,26,19,8,196,2,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,157,148,64,26,19,8,196,2,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,159,64,26,19,8,196,2,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,57,148,64,26,19,8,196,2,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,182,159,64,26,19,8,196,2,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,17,148,64,26,19,8,196,2,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,159,64,26,19,8,196,2,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,246,147,64,26,19,8,196,2,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,233,147,64,26,19,8,196,2,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,89,159,64,26,19,8,196,2,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,233,147,64,26,19,8,196,2,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,22,159,64,26,19,8,196,2,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,253,147,64,26,19,8,196,2,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,218,158,64,26,19,8,196,2,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,138,158,64,26,19,8,196,2,16,34,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,57,148,64,26,19,8,196,2,16,35,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,33,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,158,64,26,19,8,196,2,16,37,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,97,148,64,26,19,8,196,2,16,38,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,36,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,150,148,64,26,19,8,196,2,16,41,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,158,64,26,19,8,196,2,16,40,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,39,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,85,158,64,26,19,8,196,2,16,43,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,210,148,64,26,19,8,196,2,16,44,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,42,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,98,158,64,26,19,8,196,2,16,46,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,87,149,64,26,19,8,196,2,16,47,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,45,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,158,64,26,19,8,196,2,16,49,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,45,150,64,26,19,8,196,2,16,50,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,48,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,158,64,26,19,8,196,2,16,52,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,85,150,64,26,19,8,196,2,16,53,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,51,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,105,150,64,26,19,8,196,2,16,56,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,221,157,64,26,19,8,196,2,16,55,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,54,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,105,150,64,26,19,8,196,2,16,59,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,157,64,26,19,8,196,2,16,58,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,57,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,61,157,64,26,19,8,196,2,16,61,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,91,150,64,26,19,8,196,2,16,62,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,60,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,157,64,26,19,8,196,2,16,64,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,65,150,64,26,19,8,196,2,16,65,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,63,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,237,156,64,26,19,8,196,2,16,67,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,161,149,64,26,19,8,196,2,16,68,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,66,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,14,157,64,26,19,8,196,2,16,70,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,121,149,64,26,19,8,196,2,16,71,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,69,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,101,149,64,26,19,8,196,2,16,74,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,54,157,64,26,19,8,196,2,16,73,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,72,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,157,64,26,19,8,196,2,16,76,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,87,149,64,26,19,8,196,2,16,77,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,75,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,158,64,26,19,8,196,2,16,79,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,101,149,64,26,19,8,196,2,16,80,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,78,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,165,158,64,26,19,8,196,2,16,82,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,147,149,64,26,19,8,196,2,16,83,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,81,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,2,159,64,26,19,8,196,2,16,85,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,147,149,64,26,19,8,196,2,16,86,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,84,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,107,149,64,26,19,8,196,2,16,89,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,102,159,64,26,19,8,196,2,16,88,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,87,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,169,159,64,26,19,8,196,2,16,91,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,47,149,64,26,19,8,196,2,16,92,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,90,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,189,159,64,26,19,8,196,2,16,94,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,7,149,64,26,19,8,196,2,16,95,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,93,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,182,159,64,26,19,8,196,2,16,97,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,223,148,64,26,19,8,196,2,16,98,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,96,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,159,64,26,19,8,196,2,16,100,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,130,148,64,26,19,8,196,2,16,101,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,99,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,218,158,64,26,19,8,196,2,16,103,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,97,148,64,26,19,8,196,2,16,104,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,102,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,103,148,64,26,19,8,196,2,16,107,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,45,158,64,26,19,8,196,2,16,106,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,105,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,254,157,64,26,19,8,196,2,16,109,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,90,148,64,26,19,8,196,2,16,110,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,108,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,234,157,64,26,19,8,196,2,16,112,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,63,148,64,26,19,8,196,2,16,113,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,111,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,234,157,64,26,19,8,196,2,16,115,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,50,148,64,26,19,8,196,2,16,116,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,114,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,5,158,64,26,19,8,196,2,16,118,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,10,148,64,26,19,8,196,2,16,119,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,117,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,65,158,64,26,19,8,196,2,16,121,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,172,170,170,42,191,219,147,64,26,19,8,196,2,16,122,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,120,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,118,158,64,26,19,8,196,2,16,124,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,172,170,170,42,191,199,147,64,26,19,8,196,2,16,125,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,123,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,42,159,64,26,19,8,196,2,16,127,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,172,170,170,42,191,159,147,64,26,20,8,196,2,16,128,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,126,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,146,147,64,26,20,8,196,2,16,131,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,182,159,64,26,20,8,196,2,16,130,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,129,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,43,160,64,26,20,8,196,2,16,133,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,172,170,170,42,191,159,147,64,26,20,8,196,2,16,134,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,132,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,53,160,64,26,20,8,196,2,16,136,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,172,170,170,42,191,179,147,64,26,20,8,196,2,16,137,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,135,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,53,160,64,26,20,8,196,2,16,139,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,213,147,64,26,20,8,196,2,16,140,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,138,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,33,160,64,26,20,8,196,2,16,142,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,10,148,64,26,20,8,196,2,16,143,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,141,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,69,159,64,26,20,8,196,2,16,145,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,117,148,64,26,20,8,196,2,16,146,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,144,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,196,2,16,148,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,157,148,64,26,20,8,196,2,16,149,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,147,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,190,148,64,26,20,8,196,2,16,152,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,196,2,16,151,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,150,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,196,2,16,154,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,196,2,16,155,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,153,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,101,157,64,26,20,8,196,2,16,157,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,196,2,16,158,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,156,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,196,2,16,160,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,67,149,64,26,20,8,196,2,16,161,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,159,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,196,2,16,164,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,196,2,16,163,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,162,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,196,2,16,166,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,196,2,16,167,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,165,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,196,2,16,169,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,67,149,64,26,20,8,196,2,16,170,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,168,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,69,159,64,26,20,8,196,2,16,172,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,196,2,16,173,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,171,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,26,160,64,26,20,8,196,2,16,175,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,143,148,64,26,20,8,196,2,16,176,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,174,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,50,160,64,26,20,8,196,2,16,178,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,137,148,64,26,20,8,196,2,16,179,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,177,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,80,160,64,26,20,8,196,2,16,181,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,137,148,64,26,20,8,196,2,16,182,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,180,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,150,160,64,26,20,8,196,2,16,184,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,177,148,64,26,20,8,196,2,16,185,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,183,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,166,160,64,26,20,8,196,2,16,187,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,217,148,64,26,20,8,196,2,16,188,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,186,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,160,160,64,26,20,8,196,2,16,190,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,196,2,16,191,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,189,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,116,160,64,26,20,8,196,2,16,193,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,67,149,64,26,20,8,196,2,16,194,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,192,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,106,160,64,26,20,8,196,2,16,196,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,74,149,64,26,20,8,196,2,16,197,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,195,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,73,160,64,26,20,8,196,2,16,199,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,94,149,64,26,20,8,196,2,16,200,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,198,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,107,149,64,26,20,8,196,2,16,203,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,249,159,64,26,20,8,196,2,16,202,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,201,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,61,149,64,26,20,8,196,2,16,206,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,49,159,64,26,20,8,196,2,16,205,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,204,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,196,2,16,208,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,196,2,16,209,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,207,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,196,2,16,211,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,196,2,16,212,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,210,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,196,2,16,214,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,196,2,16,215,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,213,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,64,26,20,8,196,2,16,217,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,196,2,16,218,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,216,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,196,2,16,220,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,41,149,64,26,20,8,196,2,16,221,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,219,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,156,64,26,20,8,196,2,16,223,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,127,149,64,26,20,8,196,2,16,224,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,222,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,156,64,26,20,8,196,2,16,226,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,161,149,64,26,20,8,196,2,16,227,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,225,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,201,149,64,26,20,8,196,2,16,230,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,17,156,64,26,20,8,196,2,16,229,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,228,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,30,156,64,26,20,8,196,2,16,232,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,234,149,64,26,20,8,196,2,16,233,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,231,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,156,64,26,20,8,196,2,16,235,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,11,150,64,26,20,8,196,2,16,236,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,234,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,18,150,64,26,20,8,196,2,16,239,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,196,2,16,238,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,237,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,196,2,16,241,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,114,149,64,26,20,8,196,2,16,242,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,240,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,196,2,16,244,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,196,2,16,245,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,243,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,159,64,26,20,8,196,2,16,247,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,250,148,64,26,20,8,196,2,16,248,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,246,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,202,159,64,26,20,8,196,2,16,250,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,250,148,64,26,20,8,196,2,16,251,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,249,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,16,160,64,26,20,8,196,2,16,253,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,196,2,16,254,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,252,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,114,149,64,26,20,8,196,2,16,129,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,10,160,64,26,20,8,196,2,16,128,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,255,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,229,159,64,26,20,8,196,2,16,131,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,167,149,64,26,20,8,196,2,16,132,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,130,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,159,64,26,20,8,196,2,16,134,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,187,149,64,26,20,8,196,2,16,135,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,133,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,159,64,26,20,8,196,2,16,137,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,194,149,64,26,20,8,196,2,16,138,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,136,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,159,64,26,20,8,196,2,16,140,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,181,149,64,26,20,8,196,2,16,141,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,139,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,218,158,64,26,20,8,196,2,16,143,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,196,2,16,144,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,142,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,196,2,16,146,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,196,2,16,147,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,145,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,196,2,16,149,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,183,148,64,26,20,8,196,2,16,150,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,148,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,196,2,16,152,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,123,148,64,26,20,8,196,2,16,153,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,151,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,157,64,26,20,8,196,2,16,155,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,110,148,64,26,20,8,196,2,16,156,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,154,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,14,157,64,26,20,8,196,2,16,158,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,123,148,64,26,20,8,196,2,16,159,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,157,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,156,64,26,20,8,196,2,16,161,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,163,148,64,26,20,8,196,2,16,162,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,160,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,250,148,64,26,20,8,196,2,16,165,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,156,64,26,20,8,196,2,16,164,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,163,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,196,2,16,167,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,196,2,16,168,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,166,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,196,2,16,170,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,94,149,64,26,20,8,196,2,16,171,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,169,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,147,149,64,26,20,8,196,2,16,174,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,190,156,64,26,20,8,196,2,16,173,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,172,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,196,2,16,176,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,196,2,16,177,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,175,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,82,159,64,26,20,8,196,2,16,179,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,170,148,64,26,20,8,196,2,16,180,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,178,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,122,159,64,26,20,8,196,2,16,182,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,157,148,64,26,20,8,196,2,16,183,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,181,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,157,148,64,26,20,8,196,2,16,186,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,162,159,64,26,20,8,196,2,16,185,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,184,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,189,159,64,26,20,8,196,2,16,188,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,170,148,64,26,20,8,196,2,16,189,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,187,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,230,148,64,26,20,8,196,2,16,192,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,159,64,26,20,8,196,2,16,191,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,190,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,160,64,26,20,8,196,2,16,194,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,74,149,64,26,20,8,196,2,16,195,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,193,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,160,64,26,20,8,196,2,16,197,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,121,149,64,26,20,8,196,2,16,198,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,196,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,236,159,64,26,20,8,196,2,16,200,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,181,149,64,26,20,8,196,2,16,201,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,199,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,209,159,64,26,20,8,196,2,16,203,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,214,149,64,26,20,8,196,2,16,204,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,202,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,162,159,64,26,20,8,196,2,16,206,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,227,149,64,26,20,8,196,2,16,207,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,205,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,82,159,64,26,20,8,196,2,16,209,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,221,149,64,26,20,8,196,2,16,210,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,208,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,194,149,64,26,20,8,196,2,16,213,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,9,159,64,26,20,8,196,2,16,212,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,211,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,196,2,16,215,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,101,149,64,26,20,8,196,2,16,216,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,214,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,150,148,64,26,20,8,196,2,16,219,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,196,2,16,218,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,217,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,196,2,16,221,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,150,148,64,26,20,8,196,2,16,222,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,220,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,196,2,16,224,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,230,148,64,26,20,8,196,2,16,225,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,223,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,196,2,16,227,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,196,2,16,228,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,226,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,196,2,16,230,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,127,149,64,26,20,8,196,2,16,231,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,229,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,196,2,16,233,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,161,149,64,26,20,8,196,2,16,234,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,232,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,196,2,16,236,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,167,149,64,26,20,8,196,2,16,237,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,235,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,157,64,26,20,8,196,2,16,239,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,154,149,64,26,20,8,196,2,16,240,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,238,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,196,2,16,242,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,94,149,64,26,20,8,196,2,16,243,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,241,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,185,158,64,26,20,8,196,2,16,245,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,41,149,64,26,20,8,196,2,16,246,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,244,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,225,158,64,26,20,8,196,2,16,248,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,243,148,64,26,20,8,196,2,16,249,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,247,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,196,2,16,251,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,210,148,64,26,20,8,196,2,16,252,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,250,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,159,64,26,20,8,196,2,16,254,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,130,148,64,26,20,8,196,2,16,255,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,253,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,159,64,26,20,8,196,2,16,129,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,103,148,64,26,20,8,196,2,16,130,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,128,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,69,159,64,26,20,8,196,2,16,132,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,103,148,64,26,20,8,196,2,16,133,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,131,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,137,148,64,26,20,8,196,2,16,136,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,159,64,26,20,8,196,2,16,135,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,134,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,197,148,64,26,20,8,196,2,16,139,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,149,159,64,26,20,8,196,2,16,138,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,137,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,196,2,16,142,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,149,159,64,26,20,8,196,2,16,141,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,140,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,122,159,64,26,20,8,196,2,16,144,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,47,149,64,26,20,8,196,2,16,145,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,143,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,159,64,26,20,8,196,2,16,147,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,67,149,64,26,20,8,196,2,16,148,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,146,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,29,159,64,26,20,8,196,2,16,150,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,67,149,64,26,20,8,196,2,16,151,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,149,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,238,158,64,26,20,8,196,2,16,153,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,47,149,64,26,20,8,196,2,16,154,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,152,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,196,2,16,156,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,196,2,16,157,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,155,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,37,148,64,26,20,8,196,2,16,160,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,254,157,64,26,20,8,196,2,16,159,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,158,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,196,2,16,162,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,226,147,64,26,20,8,196,2,16,163,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,161,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,196,2,16,165,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,17,148,64,26,20,8,196,2,16,166,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,164,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,196,2,16,168,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,157,148,64,26,20,8,196,2,16,169,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,167,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,196,2,16,171,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,196,2,16,172,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,170,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,94,149,64,26,20,8,196,2,16,175,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,196,2,16,174,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,173,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,196,2,16,177,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,107,149,64,26,20,8,196,2,16,178,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,176,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,196,2,16,180,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,127,149,64,26,20,8,196,2,16,181,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,179,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,196,2,16,183,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,127,149,64,26,20,8,196,2,16,184,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,182,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,196,2,16,186,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,101,149,64,26,20,8,196,2,16,187,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,185,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,196,2,16,189,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,196,2,16,190,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,188,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,158,64,26,20,8,196,2,16,192,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,143,148,64,26,20,8,196,2,16,193,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,191,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,49,159,64,26,20,8,196,2,16,195,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,117,148,64,26,20,8,196,2,16,196,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,194,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,82,159,64,26,20,8,196,2,16,198,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,117,148,64,26,20,8,196,2,16,199,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,197,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,89,159,64,26,20,8,196,2,16,201,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,130,148,64,26,20,8,196,2,16,202,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,200,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,89,159,64,26,20,8,196,2,16,204,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,217,148,64,26,20,8,196,2,16,205,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,203,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,49,159,64,26,20,8,196,2,16,207,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,187,149,64,26,20,8,196,2,16,208,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,206,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,159,64,26,20,8,196,2,16,210,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,254,149,64,26,20,8,196,2,16,211,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,209,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,2,159,64,26,20,8,196,2,16,213,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,5,150,64,26,20,8,196,2,16,214,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,212,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,254,149,64,26,20,8,196,2,16,217,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,225,158,64,26,20,8,196,2,16,216,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,215,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,196,2,16,219,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,147,149,64,26,20,8,196,2,16,220,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,218,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,196,2,16,222,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,30,148,64,26,20,8,196,2,16,223,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,221,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,196,2,16,225,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,23,148,64,26,20,8,196,2,16,226,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,224,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,21,157,64,26,20,8,196,2,16,228,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,83,148,64,26,20,8,196,2,16,229,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,227,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,250,156,64,26,20,8,196,2,16,231,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,163,148,64,26,20,8,196,2,16,232,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,230,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,196,2,16,235,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,196,2,16,234,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,233,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,174,149,64,26,20,8,196,2,16,238,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,196,2,16,237,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,236,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,221,149,64,26,20,8,196,2,16,241,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,196,2,16,240,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,239,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,237,156,64,26,20,8,196,2,16,243,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,241,149,64,26,20,8,196,2,16,244,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,242,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,196,2,16,246,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,234,149,64,26,20,8,196,2,16,247,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,245,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,196,2,16,249,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,134,149,64,26,20,8,196,2,16,250,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,248,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,27,149,64,26,20,8,196,2,16,253,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,196,2,16,252,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,251,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,196,2,16,255,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,77,148,64,26,20,8,196,2,16,128,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,254,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,238,158,64,26,20,8,196,2,16,130,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,90,148,64,26,20,8,196,2,16,131,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,129,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,225,158,64,26,20,8,196,2,16,133,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,170,148,64,26,20,8,196,2,16,134,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,132,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,165,158,64,26,20,8,196,2,16,136,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,21,149,64,26,20,8,196,2,16,137,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,135,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,196,2,16,139,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,196,2,16,140,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,138,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,61,149,64,26,20,8,196,2,16,143,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,196,2,16,142,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,141,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,196,2,16,145,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,196,2,16,146,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,144,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,196,2,16,148,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,196,2,16,149,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,147,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,196,2,16,151,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,50,148,64,26,20,8,196,2,16,152,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,150,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,196,2,16,154,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,10,148,64,26,20,8,196,2,16,155,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,153,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,196,2,16,157,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,183,148,64,26,20,8,196,2,16,158,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,156,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,250,156,64,26,20,8,196,2,16,160,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,196,2,16,161,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,159,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,157,64,26,20,8,196,2,16,163,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,196,2,16,164,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,162,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,196,2,16,166,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,74,149,64,26,20,8,196,2,16,167,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,165,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,196,2,16,169,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,196,2,16,170,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,168,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,250,148,64,26,20,8,196,2,16,173,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,196,2,16,172,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,171,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,42,159,64,26,20,8,196,2,16,175,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,150,148,64,26,20,8,196,2,16,176,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,174,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,159,64,26,20,8,196,2,16,178,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,130,148,64,26,20,8,196,2,16,179,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,177,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,136,159,64,26,20,8,196,2,16,181,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,143,148,64,26,20,8,196,2,16,182,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,180,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,142,159,64,26,20,8,196,2,16,184,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,170,148,64,26,20,8,196,2,16,185,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,183,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,122,159,64,26,20,8,196,2,16,187,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,196,2,16,188,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,186,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,89,159,64,26,20,8,196,2,16,190,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,61,149,64,26,20,8,196,2,16,191,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,189,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,29,159,64,26,20,8,196,2,16,193,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,114,149,64,26,20,8,196,2,16,194,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,192,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,2,159,64,26,20,8,196,2,16,196,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,127,149,64,26,20,8,196,2,16,197,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,195,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,198,158,64,26,20,8,196,2,16,199,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,134,149,64,26,20,8,196,2,16,200,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,198,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,196,2,16,202,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,114,149,64,26,20,8,196,2,16,203,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,201,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,196,2,16,205,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,196,2,16,206,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,204,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,181,157,64,26,20,8,196,2,16,208,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,150,148,64,26,20,8,196,2,16,209,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,207,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,196,2,16,211,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,43,148,64,26,20,8,196,2,16,212,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,210,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,196,2,16,214,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,30,148,64,26,20,8,196,2,16,215,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,213,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,41,157,64,26,20,8,196,2,16,217,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,43,148,64,26,20,8,196,2,16,218,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,216,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,196,2,16,220,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,196,2,16,221,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,219,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,157,64,26,20,8,196,2,16,223,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,21,149,64,26,20,8,196,2,16,224,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,222,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,196,2,16,226,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,196,2,16,227,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,225,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,62,159,64,26,20,8,196,2,16,229,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,170,148,64,26,20,8,196,2,16,230,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,228,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,159,64,26,20,8,196,2,16,232,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,150,148,64,26,20,8,196,2,16,233,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,231,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,242,159,64,26,20,8,196,2,16,235,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,157,148,64,26,20,8,196,2,16,236,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,234,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,159,64,26,20,8,196,2,16,238,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,196,2,16,239,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,237,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,69,159,64,26,20,8,196,2,16,241,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,250,148,64,26,20,8,196,2,16,242,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,240,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,196,2,16,244,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,23,148,64,26,20,8,196,2,16,245,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,243,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,196,2,16,247,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,246,147,64,26,20,8,196,2,16,248,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,246,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,201,157,64,26,20,8,196,2,16,250,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,172,170,170,42,191,239,147,64,26,20,8,196,2,16,251,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,249,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,196,2,16,253,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,30,148,64,26,20,8,196,2,16,254,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,252,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,196,2,16,128,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,70,148,64,26,20,8,196,2,16,129,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,255,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,177,148,64,26,20,8,196,2,16,132,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,196,2,16,131,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,130,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,196,2,16,134,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,197,148,64,26,20,8,196,2,16,135,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,133,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,196,2,16,137,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,196,2,16,138,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,136,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,196,2,16,140,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,190,148,64,26,20,8,196,2,16,141,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,139,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,196,2,16,143,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,157,148,64,26,20,8,196,2,16,144,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,142,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,9,159,64,26,20,8,196,2,16,146,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,117,148,64,26,20,8,196,2,16,147,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,145,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,23,148,64,26,20,8,196,2,16,150,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,159,64,26,20,8,196,2,16,149,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,148,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,202,159,64,26,20,8,196,2,16,152,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,3,148,64,26,20,8,196,2,16,153,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,151,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,189,159,64,26,20,8,196,2,16,155,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,70,148,64,26,20,8,196,2,16,156,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,154,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,142,159,64,26,20,8,196,2,16,158,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,197,148,64,26,20,8,196,2,16,159,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,157,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,230,148,64,26,20,8,196,2,16,162,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,159,64,26,20,8,196,2,16,161,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,160,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,82,159,64,26,20,8,196,2,16,164,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,243,148,64,26,20,8,196,2,16,165,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,163,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,159,64,26,20,8,196,2,16,167,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,243,148,64,26,20,8,196,2,16,168,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,166,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,177,148,64,26,20,8,196,2,16,171,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,185,158,64,26,20,8,196,2,16,170,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,169,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,196,2,16,173,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,97,148,64,26,20,8,196,2,16,174,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,172,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,196,2,16,176,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,10,148,64,26,20,8,196,2,16,177,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,175,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,196,2,16,179,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,233,147,64,26,20,8,196,2,16,180,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,178,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,196,2,16,182,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,233,147,64,26,20,8,196,2,16,183,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,181,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,157,64,26,20,8,196,2,16,185,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,3,148,64,26,20,8,196,2,16,186,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,184,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,37,148,64,26,20,8,196,2,16,189,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,196,2,16,188,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,187,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,196,2,16,191,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,123,148,64,26,20,8,196,2,16,192,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,190,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,177,148,64,26,20,8,196,2,16,195,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,157,64,26,20,8,196,2,16,194,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,193,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,101,157,64,26,20,8,196,2,16,197,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,217,148,64,26,20,8,196,2,16,198,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,196,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,196,2,16,200,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,217,148,64,26,20,8,196,2,16,201,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,199,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,196,2,16,203,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,183,148,64,26,20,8,196,2,16,204,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,202,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,196,2,16,206,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,70,148,64,26,20,8,196,2,16,207,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,205,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,89,159,64,26,20,8,196,2,16,209,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,213,147,64,26,20,8,196,2,16,210,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,208,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,122,159,64,26,20,8,196,2,16,212,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,193,147,64,26,20,8,196,2,16,213,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,211,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,189,159,64,26,20,8,196,2,16,215,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,173,147,64,26,20,8,196,2,16,216,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,214,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,189,159,64,26,20,8,196,2,16,218,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,186,147,64,26,20,8,196,2,16,219,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,217,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,149,159,64,26,20,8,196,2,16,221,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,246,147,64,26,20,8,196,2,16,222,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,220,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,159,64,26,20,8,196,2,16,224,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,50,148,64,26,20,8,196,2,16,225,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,223,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,22,159,64,26,20,8,196,2,16,227,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,103,148,64,26,20,8,196,2,16,228,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,226,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,110,148,64,26,20,8,196,2,16,231,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,196,2,16,230,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,229,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,196,2,16,233,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,110,148,64,26,20,8,196,2,16,234,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,232,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,196,2,16,236,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,90,148,64,26,20,8,196,2,16,237,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,235,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,196,2,16,239,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,50,148,64,26,20,8,196,2,16,240,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,238,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,196,2,16,242,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,172,170,170,42,191,219,147,64,26,20,8,196,2,16,243,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,241,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,196,2,16,245,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,117,148,64,26,20,8,196,2,16,246,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,244,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,196,2,16,248,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,163,148,64,26,20,8,196,2,16,249,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,247,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,90,148,64,26,20,8,196,2,16,252,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,159,64,26,20,8,196,2,16,251,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,250,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,89,159,64,26,20,8,196,2,16,254,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,57,148,64,26,20,8,196,2,16,255,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,253,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,149,159,64,26,20,8,196,2,16,129,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,63,148,64,26,20,8,196,2,16,130,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,128,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,159,64,26,20,8,196,2,16,132,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,83,148,64,26,20,8,196,2,16,133,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,131,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,159,64,26,20,8,196,2,16,135,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,123,148,64,26,20,8,196,2,16,136,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,134,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,159,64,26,20,8,196,2,16,138,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,196,2,16,139,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,137,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,142,159,64,26,20,8,196,2,16,141,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,243,148,64,26,20,8,196,2,16,142,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,140,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,62,159,64,26,20,8,196,2,16,144,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,196,2,16,145,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,143,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,196,2,16,147,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,177,148,64,26,20,8,196,2,16,148,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,146,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,196,2,16,150,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,90,148,64,26,20,8,196,2,16,151,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,149,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,196,2,16,153,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,226,147,64,26,20,8,196,2,16,154,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,152,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,196,2,16,156,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,213,147,64,26,20,8,196,2,16,157,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,155,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,196,2,16,159,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,172,170,170,42,191,219,147,64,26,20,8,196,2,16,160,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,158,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,196,2,16,162,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,3,148,64,26,20,8,196,2,16,163,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,161,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,157,64,26,20,8,196,2,16,165,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,137,148,64,26,20,8,196,2,16,166,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,164,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,196,2,16,168,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,197,148,64,26,20,8,196,2,16,169,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,167,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,196,2,16,171,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,210,148,64,26,20,8,196,2,16,172,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,170,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,196,2,16,174,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,210,148,64,26,20,8,196,2,16,175,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,173,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,196,2,16,177,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,190,148,64,26,20,8,196,2,16,178,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,176,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,159,64,26,20,8,196,2,16,180,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,50,148,64,26,20,8,196,2,16,181,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,179,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,102,159,64,26,20,8,196,2,16,183,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,30,148,64,26,20,8,196,2,16,184,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,182,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,169,159,64,26,20,8,196,2,16,186,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,30,148,64,26,20,8,196,2,16,187,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,185,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,196,159,64,26,20,8,196,2,16,189,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,37,148,64,26,20,8,196,2,16,190,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,188,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,216,159,64,26,20,8,196,2,16,192,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,57,148,64,26,20,8,196,2,16,193,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,191,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,182,159,64,26,20,8,196,2,16,195,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,103,148,64,26,20,8,196,2,16,196,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,194,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,163,148,64,26,20,8,196,2,16,199,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,89,159,64,26,20,8,196,2,16,198,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,197,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,196,2,16,201,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,196,2,16,202,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,200,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,196,2,16,204,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,196,2,16,205,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,203,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,196,2,16,207,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,170,148,64,26,20,8,196,2,16,208,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,206,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,157,64,26,20,8,196,2,16,210,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,10,148,64,26,20,8,196,2,16,211,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,209,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,196,2,16,213,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,253,147,64,26,20,8,196,2,16,214,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,212,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,196,2,16,216,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,10,148,64,26,20,8,196,2,16,217,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,215,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,196,2,16,219,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,77,148,64,26,20,8,196,2,16,220,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,218,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,196,2,16,222,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,183,148,64,26,20,8,196,2,16,223,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,221,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,201,157,64,26,20,8,196,2,16,225,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,196,2,16,226,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,224,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,196,2,16,228,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,196,2,16,229,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,227,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,242,159,64,26,20,8,196,2,16,231,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,43,148,64,26,20,8,196,2,16,232,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,230,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,30,160,64,26,20,8,196,2,16,234,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,43,148,64,26,20,8,196,2,16,235,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,233,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,13,160,64,26,20,8,196,2,16,237,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,103,148,64,26,20,8,196,2,16,238,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,236,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,182,159,64,26,20,8,196,2,16,240,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,196,2,16,241,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,239,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,109,159,64,26,20,8,196,2,16,243,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,243,148,64,26,20,8,196,2,16,244,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,242,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,159,64,26,20,8,196,2,16,246,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,196,2,16,247,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,245,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,196,2,16,249,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,196,2,16,250,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,248,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,196,2,16,252,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,217,148,64,26,20,8,196,2,16,253,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,251,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,196,2,16,255,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,143,148,64,26,20,8,196,2,16,128,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,254,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,254,157,64,26,20,8,196,2,16,130,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,57,148,64,26,20,8,196,2,16,131,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,129,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,196,2,16,133,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,37,148,64,26,20,8,196,2,16,134,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,132,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,201,157,64,26,20,8,196,2,16,136,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,43,148,64,26,20,8,196,2,16,137,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,135,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,196,2,16,139,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,110,148,64,26,20,8,196,2,16,140,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,138,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,196,2,16,142,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,170,148,64,26,20,8,196,2,16,143,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,141,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,196,2,16,145,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,217,148,64,26,20,8,196,2,16,146,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,144,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,181,157,64,26,20,8,196,2,16,148,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,243,148,64,26,20,8,196,2,16,149,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,147,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,196,2,16,151,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,196,2,16,152,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,150,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,196,2,16,154,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,170,148,64,26,20,8,196,2,16,155,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,153,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,9,159,64,26,20,8,196,2,16,157,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,137,148,64,26,20,8,196,2,16,158,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,156,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,189,159,64,26,20,8,196,2,16,160,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,110,148,64,26,20,8,196,2,16,161,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,159,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,3,160,64,26,20,8,196,2,16,163,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,110,148,64,26,20,8,196,2,16,164,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,162,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,229,159,64,26,20,8,196,2,16,166,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,150,148,64,26,20,8,196,2,16,167,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,165,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,190,148,64,26,20,8,196,2,16,170,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,176,159,64,26,20,8,196,2,16,169,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,168,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,159,64,26,20,8,196,2,16,172,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,230,148,64,26,20,8,196,2,16,173,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,171,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,205,158,64,26,20,8,196,2,16,175,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,250,148,64,26,20,8,196,2,16,176,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,174,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,196,2,16,178,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,196,2,16,179,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,177,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,196,2,16,181,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,196,2,16,182,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,180,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,196,2,16,184,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,217,148,64,26,20,8,196,2,16,185,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,183,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,196,2,16,187,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,190,148,64,26,20,8,196,2,16,188,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,186,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,196,2,16,190,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,150,148,64,26,20,8,196,2,16,191,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,189,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,196,2,16,193,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,196,2,16,194,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,192,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,196,2,16,196,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,196,2,16,197,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,195,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,196,2,16,199,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,21,149,64,26,20,8,196,2,16,200,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,198,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,196,2,16,202,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,21,149,64,26,20,8,196,2,16,203,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,201,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,196,2,16,206,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,9,159,64,26,20,8,196,2,16,205,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,204,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,122,159,64,26,20,8,196,2,16,208,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,196,2,16,209,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,207,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,142,159,64,26,20,8,196,2,16,211,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,250,148,64,26,20,8,196,2,16,212,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,210,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,129,159,64,26,20,8,196,2,16,214,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,27,149,64,26,20,8,196,2,16,215,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,213,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,76,159,64,26,20,8,196,2,16,217,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,67,149,64,26,20,8,196,2,16,218,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,216,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,29,159,64,26,20,8,196,2,16,220,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,87,149,64,26,20,8,196,2,16,221,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,219,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,218,158,64,26,20,8,196,2,16,223,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,94,149,64,26,20,8,196,2,16,224,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,222,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,196,2,16,226,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,196,2,16,227,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,225,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,196,2,16,229,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,61,149,64,26,20,8,196,2,16,230,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,228,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,196,2,16,232,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,196,2,16,233,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,231,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,196,2,16,235,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,196,2,16,236,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,234,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,196,2,16,238,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,41,149,64,26,20,8,196,2,16,239,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,237,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,196,2,16,241,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,87,149,64,26,20,8,196,2,16,242,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,240,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,196,2,16,244,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,94,149,64,26,20,8,196,2,16,245,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,243,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,196,2,16,247,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,196,2,16,248,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,246,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,196,2,16,250,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,196,2,16,251,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,249,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,196,2,16,253,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,107,149,64,26,20,8,196,2,16,254,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,252,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,196,2,16,128,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,121,149,64,26,20,8,196,2,16,129,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,255,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,196,2,16,131,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,127,149,64,26,20,8,196,2,16,132,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,130,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,196,2,16,134,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,141,149,64,26,20,8,196,2,16,135,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,133,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,196,2,16,137,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,134,149,64,26,20,8,196,2,16,138,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,136,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,154,149,64,26,20,8,196,2,16,141,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,196,2,16,140,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,139,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,196,2,16,143,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,154,149,64,26,20,8,196,2,16,144,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,142,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,196,2,16,146,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,141,149,64,26,20,8,196,2,16,147,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,196,2,16,145,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,196,2,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,196,2,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,196,2,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,246,5,18,243,5,10,240,5,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,155,64,26,19,8,196,2,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,191,26,19,8,196,2,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,196,2,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,155,64,26,19,8,196,2,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,196,2,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,196,2,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,154,64,26,19,8,196,2,16,13,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,68,64,26,19,8,196,2,16,14,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,196,2,16,12,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,154,64,26,19,8,196,2,16,16,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,73,64,26,19,8,196,2,16,17,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,196,2,16,15,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,154,64,26,19,8,196,2,16,19,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,76,64,26,19,8,196,2,16,20,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,196,2,16,18,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,196,2,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,196,2,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,196,2,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,196,2,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,196,2,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,197,34,18,194,34,10,191,34,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,198,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,198,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,157,33,10,6,112,111,105,110,116,115,18,146,33,18,143,33,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,236,32,87,193,60,48,152,64,26,19,8,198,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,69,142,183,205,141,4,137,64,26,19,8,198,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,160,243,163,229,54,152,64,26,19,8,198,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,230,142,126,8,60,247,136,64,26,19,8,198,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,159,44,105,55,68,152,64,26,19,8,198,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,31,139,212,167,38,71,137,64,26,19,8,198,2,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,31,201,75,224,74,152,64,26,19,8,198,2,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,163,124,243,95,127,121,138,64,26,19,8,198,2,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,203,168,14,160,190,137,151,64,26,19,8,198,2,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,152,85,193,35,77,179,141,64,26,19,8,198,2,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,44,85,227,124,64,151,64,26,19,8,198,2,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,209,81,23,195,55,3,142,64,26,19,8,198,2,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,23,175,212,235,140,4,151,64,26,19,8,198,2,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,209,81,23,195,55,3,142,64,26,19,8,198,2,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,159,44,105,55,68,152,64,26,19,8,198,2,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,248,135,241,129,191,137,137,64,26,19,8,198,2,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,8,205,7,96,42,154,64,26,19,8,198,2,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,238,96,191,69,141,195,140,64,26,19,8,198,2,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,135,219,116,172,75,154,64,26,19,8,198,2,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,57,86,136,94,251,165,141,64,26,19,8,198,2,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,134,20,58,254,88,154,64,26,19,8,198,2,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,19,66,168,5,52,80,143,64,26,19,8,198,2,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,161,28,99,103,86,5,144,64,26,19,8,198,2,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,12,136,162,175,90,62,154,64,26,19,8,198,2,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,65,10,91,125,188,15,154,64,26,19,8,198,2,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,137,152,85,233,233,91,144,64,26,19,8,198,2,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,142,104,251,40,185,153,64,26,19,8,198,2,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,208,19,129,48,207,191,144,64,26,19,8,198,2,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,17,175,62,231,111,153,64,26,19,8,198,2,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,237,17,44,128,196,231,144,64,26,19,8,198,2,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,245,20,146,100,78,45,153,64,26,19,8,198,2,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,251,144,1,40,191,251,144,64,26,19,8,198,2,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,25,202,58,192,194,152,64,26,19,8,198,2,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,251,144,1,40,191,251,144,64,26,19,8,198,2,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,27,31,235,202,154,152,64,26,19,8,198,2,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,142,18,243,186,114,218,144,64,26,19,8,198,2,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,158,158,243,218,94,152,64,26,19,8,198,2,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,71,151,199,115,141,118,144,64,26,19,8,198,2,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,160,243,163,229,54,152,64,26,19,8,198,2,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,104,60,169,244,19,200,143,64,26,19,8,198,2,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,60,161,186,222,147,41,152,64,26,19,8,198,2,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,133,92,78,170,201,32,141,64,26,19,8,198,2,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,160,243,163,229,54,152,64,26,19,8,198,2,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,181,100,105,166,162,115,140,64,26,19,8,198,2,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,158,158,243,218,94,152,64,26,19,8,198,2,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,172,112,46,3,145,118,139,64,26,19,8,198,2,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,108,152,216,167,12,228,152,64,26,19,8,198,2,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,201,127,214,133,230,54,138,64,26,19,8,198,2,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,221,144,132,230,225,131,153,64,26,19,8,198,2,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,172,129,43,54,241,14,138,64,26,19,8,198,2,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,141,161,192,122,198,153,64,26,19,8,198,2,16,82,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,201,127,214,133,230,54,138,64,26,19,8,198,2,16,83,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,81,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,131,11,233,242,24,245,153,64,26,19,8,198,2,16,85,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,163,124,243,95,127,121,138,64,26,19,8,198,2,16,86,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,84,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,136,105,234,8,49,154,64,26,19,8,198,2,16,88,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,115,116,216,99,166,38,139,64,26,19,8,198,2,16,89,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,87,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,188,7,63,146,3,69,154,64,26,19,8,198,2,16,91,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,200,110,217,82,134,158,139,64,26,19,8,198,2,16,92,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,90,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,188,7,63,146,3,69,154,64,26,19,8,198,2,16,94,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,124,104,19,7,184,35,140,64,26,19,8,198,2,16,95,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,93,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,115,99,219,48,70,142,140,64,26,19,8,198,2,16,98,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,12,136,162,175,90,62,154,64,26,19,8,198,2,16,97,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,96,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,79,137,48,37,183,35,154,64,26,19,8,198,2,16,100,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,10,95,106,149,130,235,140,64,26,19,8,198,2,16,101,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,99,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,92,247,8,154,81,159,155,64,26,19,8,198,2,16,103,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,19,66,168,5,52,80,143,64,26,19,8,198,2,16,104,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,102,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,197,251,121,53,21,66,155,64,26,19,8,198,2,16,106,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,28,26,71,124,157,58,144,64,26,19,8,198,2,16,107,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,105,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,154,126,249,61,37,6,155,64,26,19,8,198,2,16,109,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,42,153,28,36,152,78,144,64,26,19,8,198,2,16,110,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,108,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,235,254,92,91,124,255,154,64,26,19,8,198,2,16,112,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,189,26,14,183,75,45,144,64,26,19,8,198,2,16,113,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,111,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,154,126,249,61,37,6,155,64,26,19,8,198,2,16,115,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,175,155,56,15,81,25,144,64,26,19,8,198,2,16,116,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,114,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,125,50,3,119,19,155,64,26,19,8,198,2,16,118,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,0,28,156,44,168,18,144,64,26,19,8,198,2,16,119,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,117,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,198,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,198,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,197,2,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,197,2,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,197,2,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,154,64,26,19,8,197,2,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,197,2,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,197,2,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,155,64,26,19,8,197,2,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,86,64,26,19,8,197,2,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,197,2,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,197,2,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,197,2,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,200,2,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,200,2,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,200,2,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,34,192,26,19,8,200,2,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,156,64,26,19,8,200,2,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,200,2,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,156,64,26,19,8,200,2,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,93,64,26,19,8,200,2,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,200,2,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,200,2,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,200,2,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,246,5,18,243,5,10,240,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,201,2,16,4,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,155,64,26,19,8,201,2,16,7,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,95,64,26,19,8,201,2,16,8,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,201,2,16,6,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,156,64,26,19,8,201,2,16,10,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,95,64,26,19,8,201,2,16,11,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,201,2,16,9,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,156,64,26,19,8,201,2,16,13,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,96,64,26,19,8,201,2,16,14,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,201,2,16,12,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,155,64,26,19,8,201,2,16,16,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,98,64,26,19,8,201,2,16,17,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,201,2,16,15,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,155,64,26,19,8,201,2,16,19,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,103,64,26,19,8,201,2,16,20,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,201,2,16,18,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,201,2,16,5,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,201,2,16,2,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,49,97,55,57,49,101,26,19,8,201,2,16,3,26,12,99,70,121,186,152,207,109,6,237,70,84,180,18,19,8,201,2,16,1,26,12,99,70,121,186,152,207,109,6,237,70,84,180,10,163,101,18,160,101,10,157,101,10,251,99,10,6,112,111,105,110,116,115,18,240,99,18,237,99,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,251,178,250,102,79,155,64,26,19,8,201,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,132,13,187,228,0,69,145,64,26,19,8,201,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,206,0,178,11,135,215,154,64,26,19,8,201,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,132,13,187,228,0,69,145,64,26,19,8,201,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,199,14,73,90,93,42,145,64,26,19,8,201,2,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,97,130,163,158,58,182,154,64,26,19,8,201,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,164,131,49,20,151,155,154,64,26,19,8,201,2,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,170,16,158,10,104,2,145,64,26,19,8,201,2,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,150,4,92,108,156,135,154,64,26,19,8,201,2,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,189,26,14,183,75,45,144,64,26,19,8,201,2,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,3,149,49,238,148,154,64,26,19,8,201,2,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,114,65,225,202,133,93,143,64,26,19,8,201,2,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,97,130,163,158,58,182,154,64,26,19,8,201,2,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,29,71,224,219,165,229,142,64,26,19,8,201,2,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,221,127,135,179,129,235,154,64,26,19,8,201,2,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,0,73,53,140,176,189,142,64,26,19,8,201,2,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,124,221,82,108,59,155,64,26,19,8,201,2,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,161,73,252,198,94,176,142,64,26,19,8,201,2,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,112,223,48,44,43,156,64,26,19,8,201,2,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,123,70,25,161,247,242,142,64,26,19,8,201,2,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,168,236,209,178,191,129,156,64,26,19,8,201,2,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,209,64,26,144,215,106,143,64,26,19,8,201,2,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,239,103,253,249,164,229,156,64,26,19,8,201,2,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,109,154,170,153,244,51,144,64,26,19,8,201,2,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,135,99,140,94,225,66,157,64,26,19,8,201,2,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,47,19,186,245,32,205,144,64,26,19,8,201,2,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,163,97,55,174,214,106,157,64,26,19,8,201,2,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,52,141,87,199,169,75,145,64,26,19,8,201,2,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,16,224,69,27,35,140,157,64,26,19,8,201,2,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,89,127,61,186,176,112,146,64,26,19,8,201,2,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,13,121,119,110,226,245,146,64,26,19,8,201,2,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,16,224,69,27,35,140,157,64,26,19,8,201,2,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,225,211,144,127,113,157,64,26,19,8,201,2,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,98,115,120,93,194,109,147,64,26,19,8,201,2,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,106,101,225,14,236,26,157,64,26,19,8,201,2,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,36,236,135,185,238,6,148,64,26,19,8,201,2,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,7,236,10,120,17,143,156,64,26,19,8,201,2,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,136,101,94,80,201,146,148,64,26,19,8,201,2,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,187,246,65,95,163,172,155,64,26,19,8,201,2,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,46,224,194,92,0,4,149,64,26,19,8,201,2,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,78,120,51,242,86,139,155,64,26,19,8,201,2,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,221,95,95,63,169,10,149,64,26,19,8,201,2,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,46,224,194,92,0,4,149,64,26,19,8,201,2,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,21,124,221,82,108,59,155,64,26,19,8,201,2,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,45,0,235,208,216,228,154,64,26,19,8,201,2,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,17,226,23,13,11,220,148,64,26,19,8,201,2,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,69,132,248,78,69,142,154,64,26,19,8,201,2,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,22,109,178,17,244,242,147,64,26,19,8,201,2,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,69,132,248,78,69,142,154,64,26,19,8,201,2,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,221,112,92,114,9,163,147,64,26,19,8,201,2,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,206,0,178,11,135,215,154,64,26,19,8,201,2,16,82,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,47,2,189,194,192,52,146,64,26,19,8,201,2,16,83,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,81,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,102,252,64,112,195,52,155,64,26,19,8,201,2,16,85,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,108,137,173,102,148,155,145,64,26,19,8,201,2,16,86,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,84,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,118,222,65,76,179,155,64,26,19,8,201,2,16,88,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,9,16,215,207,185,15,145,64,26,19,8,201,2,16,89,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,87,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,59,110,195,69,115,96,156,64,26,19,8,201,2,16,91,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,180,21,214,224,217,151,144,64,26,19,8,201,2,16,92,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,90,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,102,168,73,154,13,157,64,26,19,8,201,2,16,94,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,57,24,242,203,146,98,144,64,26,19,8,201,2,16,95,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,93,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,222,240,106,24,180,157,64,26,19,8,201,2,16,97,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,151,23,43,145,228,111,144,64,26,19,8,201,2,16,98,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,96,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,134,82,143,43,129,170,158,64,26,19,8,201,2,16,100,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,251,144,1,40,191,251,144,64,26,19,8,201,2,16,101,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,99,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,139,204,44,253,9,41,159,64,26,19,8,201,2,16,103,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,123,8,131,14,143,175,145,64,26,19,8,201,2,16,104,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,102,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,167,202,215,76,255,80,159,64,26,19,8,201,2,16,106,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,208,2,132,253,110,39,146,64,26,19,8,201,2,16,107,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,105,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,248,74,59,106,86,74,159,64,26,19,8,201,2,16,109,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,184,126,118,127,2,126,146,64,26,19,8,201,2,16,110,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,108,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,241,122,204,30,237,205,146,64,26,19,8,201,2,16,113,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,139,204,44,253,9,41,159,64,26,19,8,201,2,16,112,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,111,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,87,199,1,243,63,158,64,26,19,8,201,2,16,115,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,112,242,77,5,189,129,147,64,26,19,8,201,2,16,116,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,114,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,95,27,195,29,160,157,64,26,19,8,201,2,16,118,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,46,241,191,143,96,156,147,64,26,19,8,201,2,16,119,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,117,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,32,114,234,231,101,136,147,64,26,19,8,201,2,16,122,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,54,227,40,65,138,73,157,64,26,19,8,201,2,16,121,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,120,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,102,168,73,154,13,157,64,26,19,8,201,2,16,124,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,70,117,205,13,205,69,147,64,26,19,8,201,2,16,125,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,123,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,158,231,153,220,77,236,156,64,26,19,8,201,2,16,127,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,94,249,218,139,57,239,146,64,26,20,8,201,2,16,128,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,126,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,158,231,153,220,77,236,156,64,26,20,8,201,2,16,130,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,222,129,89,165,105,59,146,64,26,20,8,201,2,16,131,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,129,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,102,168,73,154,13,157,64,26,20,8,201,2,16,133,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,165,133,3,6,127,235,145,64,26,20,8,201,2,16,134,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,132,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,163,97,55,174,214,106,157,64,26,20,8,201,2,16,136,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,28,9,74,73,61,162,145,64,26,20,8,201,2,16,137,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,135,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,111,223,126,224,116,153,157,64,26,20,8,201,2,16,139,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,189,9,17,132,235,148,145,64,26,20,8,201,2,16,140,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,138,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,115,89,28,178,253,23,158,64,26,20,8,201,2,16,142,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,14,138,116,161,66,142,145,64,26,20,8,201,2,16,143,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,141,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,253,213,213,110,63,97,158,64,26,20,8,201,2,16,145,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,203,136,230,43,230,168,145,64,26,20,8,201,2,16,146,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,144,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,84,228,219,139,130,158,64,26,20,8,201,2,16,148,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,137,135,88,182,137,195,145,64,26,20,8,201,2,16,149,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,147,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,83,29,161,221,143,158,64,26,20,8,201,2,16,151,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,70,134,202,64,45,222,145,64,26,20,8,201,2,16,152,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,150,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,83,29,161,221,143,158,64,26,20,8,201,2,16,154,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,194,131,174,85,116,19,146,64,26,20,8,201,2,16,155,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,153,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,224,215,42,31,74,57,158,64,26,20,8,201,2,16,157,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,75,0,104,18,182,92,146,64,26,20,8,201,2,16,158,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,156,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,87,91,113,98,8,240,157,64,26,20,8,201,2,16,160,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,184,126,118,127,2,126,146,64,26,20,8,201,2,16,161,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,159,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,59,93,198,18,19,200,157,64,26,20,8,201,2,16,163,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,9,255,217,156,89,119,146,64,26,20,8,201,2,16,164,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,162,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,125,94,84,136,111,173,157,64,26,20,8,201,2,16,166,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,75,0,104,18,182,92,146,64,26,20,8,201,2,16,167,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,165,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,99,132,117,144,34,6,146,64,26,20,8,201,2,16,170,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,30,95,27,195,29,160,157,64,26,20,8,201,2,16,169,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,168,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,125,94,84,136,111,173,157,64,26,20,8,201,2,16,172,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,94,10,216,190,153,135,145,64,26,20,8,201,2,16,173,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,171,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,153,92,255,215,100,213,157,64,26,20,8,201,2,16,175,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,37,14,130,31,175,55,145,64,26,20,8,201,2,16,176,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,174,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,156,145,200,98,109,238,144,64,26,20,8,201,2,16,179,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,115,89,28,178,253,23,158,64,26,20,8,201,2,16,178,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,177,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,85,114,81,232,103,158,64,26,20,8,201,2,16,181,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,128,147,29,19,120,198,144,64,26,20,8,201,2,16,182,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,180,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,148,209,100,211,123,190,158,64,26,20,8,201,2,16,184,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,33,148,228,77,38,185,144,64,26,20,8,201,2,16,185,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,183,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,20,73,230,185,75,114,159,64,26,20,8,201,2,16,187,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,142,18,243,186,114,218,144,64,26,20,8,201,2,16,188,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,186,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,252,196,216,59,223,200,159,64,26,20,8,201,2,16,190,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,118,142,229,60,6,49,145,64,26,20,8,201,2,16,191,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,189,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,10,68,174,227,217,220,159,64,26,20,8,201,2,16,193,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,146,140,144,140,251,88,145,64,26,20,8,201,2,16,194,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,192,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,10,68,174,227,217,220,159,64,26,20,8,201,2,16,196,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,80,139,2,23,159,115,145,64,26,20,8,201,2,16,197,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,195,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,101,201,73,215,162,107,159,64,26,20,8,201,2,16,199,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,217,7,188,211,224,188,145,64,26,20,8,201,2,16,200,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,198,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,72,203,158,135,173,67,159,64,26,20,8,201,2,16,202,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,137,135,88,182,137,195,145,64,26,20,8,201,2,16,203,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,201,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,30,78,30,144,189,7,159,64,26,20,8,201,2,16,205,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,123,8,131,14,143,175,145,64,26,20,8,201,2,16,206,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,204,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,14,138,116,161,66,142,145,64,26,20,8,201,2,16,209,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,191,78,229,202,107,250,158,64,26,20,8,201,2,16,208,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,207,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,44,205,243,55,184,27,159,64,26,20,8,201,2,16,211,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,9,16,215,207,185,15,145,64,26,20,8,201,2,16,212,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,210,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,248,74,59,106,86,74,159,64,26,20,8,201,2,16,214,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,75,17,101,69,22,245,144,64,26,20,8,201,2,16,215,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,213,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,210,71,88,68,239,140,159,64,26,20,8,201,2,16,217,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,237,17,44,128,196,231,144,64,26,20,8,201,2,16,218,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,216,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,19,161,172,153,103,2,160,64,26,20,8,201,2,16,220,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,61,146,143,157,27,225,144,64,26,20,8,201,2,16,221,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,219,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,30,244,203,5,49,160,64,26,20,8,201,2,16,223,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,251,144,1,40,191,251,144,64,26,20,8,201,2,16,224,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,222,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,36,221,80,170,166,85,160,64,26,20,8,201,2,16,226,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,132,13,187,228,0,69,145,64,26,20,8,201,2,16,227,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,225,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,255,10,159,249,71,122,145,64,26,20,8,201,2,16,230,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,171,156,59,254,163,95,160,64,26,20,8,201,2,16,229,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,228,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,156,59,254,163,95,160,64,26,20,8,201,2,16,232,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,217,7,188,211,224,188,145,64,26,20,8,201,2,16,233,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,231,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,76,157,2,57,82,82,160,64,26,20,8,201,2,16,235,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,85,5,160,232,39,242,145,64,26,20,8,201,2,16,236,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,234,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,143,158,144,174,174,55,160,64,26,20,8,201,2,16,238,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,130,32,224,23,46,146,64,26,20,8,201,2,16,239,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,237,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,10,68,174,227,217,220,159,64,26,20,8,201,2,16,241,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,170,255,160,215,7,106,146,64,26,20,8,201,2,16,242,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,240,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,115,72,31,127,157,127,159,64,26,20,8,201,2,16,244,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,89,127,61,186,176,112,146,64,26,20,8,201,2,16,245,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,243,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,250,127,4,245,94,99,146,64,26,20,8,201,2,16,248,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,20,73,230,185,75,114,159,64,26,20,8,201,2,16,247,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,246,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,6,202,16,18,81,94,159,64,26,20,8,201,2,16,250,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,130,32,224,23,46,146,64,26,20,8,201,2,16,251,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,249,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,202,215,76,255,80,159,64,26,20,8,201,2,16,253,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,246,5,103,35,214,228,145,64,26,20,8,201,2,16,254,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,252,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,63,198,102,177,59,174,159,64,26,20,8,201,2,16,128,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,222,146,86,216,201,211,144,64,26,20,8,201,2,16,129,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,255,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,66,32,110,125,247,159,64,26,20,8,201,2,16,131,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,4,150,57,254,48,145,144,64,26,20,8,201,2,16,132,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,130,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,62,30,45,145,87,62,160,64,26,20,8,201,2,16,134,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,57,24,242,203,146,98,144,64,26,20,8,201,2,16,135,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,133,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,218,24,185,6,65,85,144,64,26,20,8,201,2,16,138,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,64,219,251,249,155,125,160,64,26,20,8,201,2,16,137,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,136,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,107,88,124,241,139,185,160,64,26,20,8,201,2,16,140,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,19,21,15,166,43,165,144,64,26,20,8,201,2,16,141,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,139,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,23,103,69,137,195,160,64,26,20,8,201,2,16,143,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,222,146,86,216,201,211,144,64,26,20,8,201,2,16,144,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,142,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,23,103,69,137,195,160,64,26,20,8,201,2,16,146,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,9,16,215,207,185,15,145,64,26,20,8,201,2,16,147,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,145,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,147,24,46,128,55,182,160,64,26,20,8,201,2,16,149,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,227,12,244,169,82,82,145,64,26,20,8,201,2,16,150,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,148,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,214,25,188,245,147,155,160,64,26,20,8,201,2,16,152,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,14,138,116,161,66,142,145,64,26,20,8,201,2,16,153,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,151,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,88,95,9,120,8,39,160,64,26,20,8,201,2,16,155,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,85,5,160,232,39,242,145,64,26,20,8,201,2,16,156,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,154,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,249,95,208,178,182,25,160,64,26,20,8,201,2,16,158,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,151,6,46,94,132,215,145,64,26,20,8,201,2,16,159,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,157,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,249,95,208,178,182,25,160,64,26,20,8,201,2,16,161,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,37,14,130,31,175,55,145,64,26,20,8,201,2,16,162,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,160,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,31,187,6,180,35,160,64,26,20,8,201,2,16,164,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,222,146,86,216,201,211,144,64,26,20,8,201,2,16,165,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,163,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,190,149,174,119,39,242,160,64,26,20,8,201,2,16,167,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,151,23,43,145,228,111,144,64,26,20,8,201,2,16,168,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,166,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,202,87,181,182,221,198,160,64,26,20,8,201,2,16,170,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,222,146,86,216,201,211,144,64,26,20,8,201,2,16,171,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,169,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,228,152,145,157,142,175,160,64,26,20,8,201,2,16,173,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,142,18,243,186,114,218,144,64,26,20,8,201,2,16,174,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,172,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,12,89,67,44,58,172,160,64,26,20,8,201,2,16,176,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,47,19,186,245,32,205,144,64,26,20,8,201,2,16,177,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,175,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,23,103,69,137,195,160,64,26,20,8,201,2,16,179,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,137,152,85,233,233,91,144,64,26,20,8,201,2,16,180,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,178,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,216,214,138,94,216,218,160,64,26,20,8,201,2,16,182,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,204,153,227,94,70,65,144,64,26,20,8,201,2,16,183,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,181,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,204,153,227,94,70,65,144,64,26,20,8,201,2,16,186,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,43,20,189,228,115,19,161,64,26,20,8,201,2,16,185,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,184,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,152,146,203,81,192,52,161,64,26,20,8,201,2,16,188,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,232,151,142,174,59,105,144,64,26,20,8,201,2,16,189,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,187,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,31,82,182,165,189,62,161,64,26,20,8,201,2,16,191,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,99,149,114,195,130,158,144,64,26,20,8,201,2,16,192,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,190,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,17,211,224,253,194,42,161,64,26,20,8,201,2,16,194,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,208,19,129,48,207,191,144,64,26,20,8,201,2,16,195,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,193,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,83,212,110,115,31,16,161,64,26,20,8,201,2,16,197,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,208,19,129,48,207,191,144,64,26,20,8,201,2,16,198,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,196,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,164,84,210,144,118,9,161,64,26,20,8,201,2,16,200,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,113,20,72,107,125,178,144,64,26,20,8,201,2,16,201,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,199,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,166,150,0,57,223,131,144,64,26,20,8,201,2,16,204,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,204,20,132,31,34,6,161,64,26,20,8,201,2,16,203,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,202,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,83,212,110,115,31,16,161,64,26,20,8,201,2,16,206,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,232,151,142,174,59,105,144,64,26,20,8,201,2,16,207,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,205,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,97,83,68,27,26,36,161,64,26,20,8,201,2,16,209,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,57,24,242,203,146,98,144,64,26,20,8,201,2,16,210,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,208,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,166,150,0,57,223,131,144,64,26,20,8,201,2,16,213,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,126,81,239,106,15,76,161,64,26,20,8,201,2,16,212,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,211,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,145,61,220,99,79,161,64,26,20,8,201,2,16,215,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,4,150,57,254,48,145,144,64,26,20,8,201,2,16,216,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,201,2,16,214,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,201,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,201,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,201,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,243,79,18,240,79,10,237,79,10,203,78,10,6,112,111,105,110,116,115,18,192,78,18,189,78,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,22,109,178,17,244,242,147,64,26,19,8,203,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,164,84,210,144,118,9,161,64,26,19,8,203,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,109,21,75,90,208,248,160,64,26,19,8,203,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,22,109,178,17,244,242,147,64,26,19,8,203,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,22,18,149,126,235,160,64,26,19,8,203,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,8,238,220,105,249,222,147,64,26,19,8,203,2,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,176,22,217,207,44,222,160,64,26,19,8,203,2,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,236,239,49,26,4,183,147,64,26,19,8,203,2,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,81,23,160,10,219,208,160,64,26,19,8,203,2,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,18,243,20,64,107,116,147,64,26,19,8,203,2,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,161,151,3,40,50,202,160,64,26,19,8,203,2,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,217,246,190,160,128,36,147,64,26,19,8,203,2,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,161,151,3,40,50,202,160,64,26,19,8,203,2,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,241,122,204,30,237,205,146,64,26,19,8,203,2,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,146,140,144,140,251,88,145,64,26,19,8,203,2,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,176,22,217,207,44,222,160,64,26,19,8,203,2,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,230,85,96,6,211,238,160,64,26,19,8,203,2,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,118,142,229,60,6,49,145,64,26,19,8,203,2,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,212,53,174,205,2,161,64,26,19,8,203,2,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,184,143,115,178,98,22,145,64,26,19,8,203,2,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,71,18,104,52,105,59,161,64,26,19,8,203,2,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,170,16,158,10,104,2,145,64,26,19,8,203,2,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,180,144,118,161,181,92,161,64,26,19,8,203,2,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,184,143,115,178,98,22,145,64,26,19,8,203,2,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,116,76,183,148,157,182,161,64,26,19,8,203,2,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,203,119,233,248,133,16,147,64,26,19,8,203,2,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,216,229,193,109,32,140,148,64,26,19,8,203,2,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,171,139,62,203,67,199,161,64,26,19,8,203,2,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,76,140,5,6,242,185,161,64,26,19,8,203,2,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,211,90,39,105,55,117,149,64,26,19,8,203,2,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,77,69,10,250,155,161,64,26,19,8,203,2,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,83,210,168,79,7,41,150,64,26,19,8,203,2,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,116,93,180,199,253,78,160,64,26,19,8,203,2,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,131,235,192,126,64,20,148,64,26,19,8,203,2,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,206,209,82,136,102,69,161,64,26,19,8,203,2,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,141,1,246,135,18,66,146,64,26,19,8,203,2,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,207,54,157,173,122,161,64,26,19,8,203,2,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,127,130,32,224,23,46,146,64,26,19,8,203,2,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,142,141,147,123,78,159,161,64,26,19,8,203,2,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,47,2,189,194,192,52,146,64,26,19,8,203,2,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,35,204,83,119,70,189,161,64,26,19,8,203,2,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,156,128,203,47,13,86,146,64,26,19,8,203,2,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,139,119,144,149,212,161,64,26,19,8,203,2,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,23,126,175,68,84,139,146,64,26,19,8,203,2,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,138,176,85,231,225,161,64,26,19,8,203,2,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,3,116,63,152,112,96,147,64,26,19,8,203,2,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,9,139,119,144,149,212,161,64,26,19,8,203,2,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,141,240,248,84,178,169,147,64,26,19,8,203,2,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,212,107,36,156,151,13,148,64,26,19,8,203,2,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,156,12,105,35,73,179,161,64,26,19,8,203,2,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,142,33,241,170,132,161,64,26,19,8,203,2,16,82,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,27,231,79,227,124,113,148,64,26,19,8,203,2,16,83,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,81,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,45,209,139,77,184,82,161,64,26,19,8,203,2,16,85,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,84,227,165,130,103,193,148,64,26,19,8,203,2,16,86,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,84,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,88,93,67,84,240,63,149,64,26,19,8,203,2,16,89,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,176,22,217,207,44,222,160,64,26,19,8,203,2,16,88,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,87,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,67,152,202,98,224,188,160,64,26,19,8,203,2,16,91,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,183,92,124,25,66,77,149,64,26,19,8,203,2,16,92,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,90,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,153,88,216,60,162,160,64,26,19,8,203,2,16,94,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,183,92,124,25,66,77,149,64,26,19,8,203,2,16,95,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,93,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,218,52,191,237,138,160,64,26,19,8,203,2,16,97,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,155,94,209,201,76,37,149,64,26,19,8,203,2,16,98,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,96,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,240,90,152,220,68,132,160,64,26,19,8,203,2,16,100,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,178,226,222,71,185,206,148,64,26,19,8,203,2,16,101,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,99,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,240,90,152,220,68,132,160,64,26,19,8,203,2,16,103,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,27,231,79,227,124,113,148,64,26,19,8,203,2,16,104,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,102,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,119,26,131,48,66,142,160,64,26,19,8,203,2,16,106,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,131,235,192,126,64,20,148,64,26,19,8,203,2,16,107,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,105,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,22,18,149,126,235,160,64,26,19,8,203,2,16,109,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,217,246,190,160,128,36,147,64,26,19,8,203,2,16,110,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,108,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,147,89,199,28,26,161,64,26,19,8,203,2,16,112,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,122,247,133,219,46,23,147,64,26,19,8,203,2,16,113,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,111,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,82,125,224,107,49,161,64,26,19,8,203,2,16,115,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,136,118,91,131,41,43,147,64,26,19,8,203,2,16,116,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,114,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,210,25,195,20,56,161,64,26,19,8,203,2,16,118,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,3,116,63,152,112,96,147,64,26,19,8,203,2,16,119,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,117,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,55,214,195,35,42,232,160,64,26,19,8,203,2,16,121,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,13,104,122,59,130,93,148,64,26,19,8,203,2,16,122,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,120,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,242,23,103,69,137,195,160,64,26,19,8,203,2,16,124,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,216,229,193,109,32,140,148,64,26,19,8,203,2,16,125,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,123,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,52,25,245,186,229,168,160,64,26,19,8,203,2,16,127,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,136,101,94,80,201,146,148,64,26,20,8,203,2,16,128,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,126,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,93,217,166,73,145,165,160,64,26,20,8,203,2,16,130,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,107,103,179,0,212,106,148,64,26,20,8,203,2,16,131,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,129,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,151,60,237,131,215,160,64,26,20,8,203,2,16,133,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,155,111,206,252,172,189,147,64,26,20,8,203,2,16,134,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,132,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,55,214,195,35,42,232,160,64,26,20,8,203,2,16,136,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,155,111,206,252,172,189,147,64,26,20,8,203,2,16,137,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,135,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,109,21,75,90,208,248,160,64,26,20,8,203,2,16,139,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,169,238,163,164,167,209,147,64,26,20,8,203,2,16,140,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,138,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,164,84,210,144,118,9,161,64,26,20,8,203,2,16,142,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,65,234,50,9,228,46,148,64,26,20,8,203,2,16,143,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,141,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,164,84,210,144,118,9,161,64,26,20,8,203,2,16,145,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,13,104,122,59,130,93,148,64,26,20,8,203,2,16,146,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,144,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,81,23,160,10,219,208,160,64,26,20,8,203,2,16,148,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,169,221,166,113,71,57,149,64,26,20,8,203,2,16,149,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,147,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,107,88,124,241,139,185,160,64,26,20,8,203,2,16,151,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,22,92,181,222,147,90,149,64,26,20,8,203,2,16,152,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,150,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,131,218,195,75,224,123,149,64,26,20,8,203,2,16,155,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,214,25,188,245,147,155,160,64,26,20,8,203,2,16,154,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,153,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,64,219,251,249,155,125,160,64,26,20,8,203,2,16,157,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,50,90,96,46,137,130,149,64,26,20,8,203,2,16,158,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,156,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,145,91,95,23,243,118,160,64,26,20,8,203,2,16,160,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,74,222,109,172,245,43,149,64,26,20,8,203,2,16,161,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,159,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,155,173,136,71,122,160,64,26,20,8,203,2,16,163,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,112,225,80,210,92,233,148,64,26,20,8,203,2,16,164,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,162,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,240,90,152,220,68,132,160,64,26,20,8,203,2,16,166,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,245,227,108,189,21,180,148,64,26,20,8,203,2,16,167,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,165,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,12,89,67,44,58,172,160,64,26,20,8,203,2,16,169,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,174,104,65,118,48,80,148,64,26,20,8,203,2,16,170,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,168,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,202,87,181,182,221,198,160,64,26,20,8,203,2,16,172,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,145,106,150,38,59,40,148,64,26,20,8,203,2,16,173,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,171,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,147,89,199,28,26,161,64,26,20,8,203,2,16,175,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,174,104,65,118,48,80,148,64,26,20,8,203,2,16,176,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,174,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,147,89,199,28,26,161,64,26,20,8,203,2,16,178,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,17,226,23,13,11,220,148,64,26,20,8,203,2,16,179,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,177,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,20,132,31,34,6,161,64,26,20,8,203,2,16,181,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,8,221,223,54,153,70,149,64,26,20,8,203,2,16,182,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,180,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,24,27,74,107,240,128,160,64,26,20,8,203,2,16,184,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,164,82,12,109,94,34,150,64,26,20,8,203,2,16,185,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,183,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,156,59,254,163,95,160,64,26,20,8,203,2,16,187,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,178,209,225,20,89,54,150,64,26,20,8,203,2,16,188,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,186,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,22,94,123,2,172,65,160,64,26,20,8,203,2,16,190,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,178,209,225,20,89,54,150,64,26,20,8,203,2,16,191,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,189,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,128,31,187,6,180,35,160,64,26,20,8,203,2,16,193,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,164,82,12,109,94,34,150,64,26,20,8,203,2,16,194,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,192,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,169,223,108,149,95,32,160,64,26,20,8,203,2,16,196,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,55,212,253,255,17,1,150,64,26,20,8,203,2,16,197,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,195,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,24,27,74,107,240,128,160,64,26,20,8,203,2,16,199,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,188,231,22,30,43,100,148,64,26,20,8,203,2,16,200,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,198,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,242,23,103,69,137,195,160,64,26,20,8,203,2,16,202,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,93,232,221,88,217,86,148,64,26,20,8,203,2,16,203,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,201,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,164,84,210,144,118,9,161,64,26,20,8,203,2,16,205,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,188,231,22,30,43,100,148,64,26,20,8,203,2,16,206,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,204,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,31,82,182,165,189,62,161,64,26,20,8,203,2,16,208,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,150,228,51,248,195,166,148,64,26,20,8,203,2,16,209,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,207,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,140,208,196,18,10,96,161,64,26,20,8,203,2,16,211,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,221,95,95,63,169,10,149,64,26,20,8,203,2,16,212,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,210,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,45,209,139,77,184,82,161,64,26,20,8,203,2,16,214,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,74,222,109,172,245,43,149,64,26,20,8,203,2,16,215,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,213,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,83,212,110,115,31,16,161,64,26,20,8,203,2,16,217,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,102,220,24,252,234,83,149,64,26,20,8,203,2,16,218,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,216,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,214,25,188,245,147,155,160,64,26,20,8,203,2,16,220,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,46,224,194,92,0,4,149,64,26,20,8,203,2,16,221,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,219,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,155,173,136,71,122,160,64,26,20,8,203,2,16,223,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,69,100,208,218,108,173,148,64,26,20,8,203,2,16,224,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,222,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,10,156,116,195,245,108,160,64,26,20,8,203,2,16,226,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,27,231,79,227,124,113,148,64,26,20,8,203,2,16,227,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,225,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,90,28,216,224,76,102,160,64,26,20,8,203,2,16,229,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,22,109,178,17,244,242,147,64,26,20,8,203,2,16,230,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,228,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,145,91,95,23,243,118,160,64,26,20,8,203,2,16,232,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,46,241,191,143,96,156,147,64,26,20,8,203,2,16,233,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,231,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,154,31,19,235,148,160,64,26,20,8,203,2,16,235,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,127,113,35,173,183,149,147,64,26,20,8,203,2,16,236,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,234,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,74,239,106,223,85,196,147,64,26,20,8,203,2,16,239,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,93,217,166,73,145,165,160,64,26,20,8,203,2,16,238,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,237,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,173,89,10,103,232,158,160,64,26,20,8,203,2,16,241,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,79,105,8,177,222,66,148,64,26,20,8,203,2,16,242,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,240,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,155,173,136,71,122,160,64,26,20,8,203,2,16,244,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,41,102,37,139,119,133,148,64,26,20,8,203,2,16,245,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,243,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,62,30,45,145,87,62,160,64,26,20,8,203,2,16,247,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,245,227,108,189,21,180,148,64,26,20,8,203,2,16,248,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,246,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,122,230,136,168,206,126,148,64,26,20,8,203,2,16,251,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,20,73,230,185,75,114,159,64,26,20,8,203,2,16,250,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,249,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,233,203,101,194,91,54,159,64,26,20,8,203,2,16,253,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,131,235,192,126,64,20,148,64,26,20,8,203,2,16,254,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,252,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,139,204,44,253,9,41,159,64,26,20,8,203,2,16,128,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,193,114,177,34,20,123,147,64,26,20,8,203,2,16,129,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,255,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,88,95,9,120,8,39,160,64,26,20,8,203,2,16,131,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,151,245,48,43,36,63,147,64,26,20,8,203,2,16,132,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,130,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,102,222,222,31,3,59,160,64,26,20,8,203,2,16,134,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,179,243,219,122,25,103,147,64,26,20,8,203,2,16,135,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,133,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,211,92,237,140,79,92,160,64,26,20,8,203,2,16,137,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,169,238,163,164,167,209,147,64,26,20,8,203,2,16,138,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,136,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,156,59,254,163,95,160,64,26,20,8,203,2,16,140,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,160,233,107,206,53,60,148,64,26,20,8,203,2,16,141,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,139,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,74,224,51,208,13,19,160,64,26,20,8,203,2,16,143,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,136,101,94,80,201,146,148,64,26,20,8,203,2,16,144,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,203,2,16,142,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,203,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,203,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,203,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,204,2,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,147,64,26,19,8,204,2,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,116,47,129,64,26,19,8,204,2,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,204,2,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,147,64,26,19,8,204,2,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,116,31,129,64,26,19,8,204,2,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,204,2,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,204,2,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,204,2,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,204,2,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,204,2,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,205,2,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,205,2,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,205,2,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,139,64,26,19,8,205,2,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,192,8,72,192,26,19,8,205,2,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,205,2,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,143,64,26,19,8,205,2,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,132,82,192,26,19,8,205,2,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,205,2,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,145,64,26,19,8,205,2,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,196,87,192,26,19,8,205,2,16,14,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,205,2,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,205,2,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,205,2,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,231,32,18,228,32,10,225,32,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,206,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,206,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,191,31,10,6,112,111,105,110,116,115,18,180,31,18,177,31,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,90,130,239,38,152,196,156,64,26,19,8,206,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,135,116,137,145,65,219,155,64,26,19,8,206,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,216,244,236,174,152,212,155,64,26,19,8,206,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,48,5,111,47,168,136,156,64,26,19,8,206,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,216,244,236,174,152,212,155,64,26,19,8,206,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,106,35,191,52,83,9,154,64,26,19,8,206,2,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,106,84,228,219,139,130,158,64,26,19,8,206,2,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,248,42,19,246,125,105,153,64,26,19,8,206,2,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,229,81,200,240,210,183,158,64,26,19,8,206,2,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,229,32,163,73,154,62,154,64,26,19,8,206,2,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,208,214,93,31,217,158,64,26,19,8,206,2,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,115,23,250,215,100,6,155,64,26,19,8,206,2,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,1,80,115,64,200,223,158,64,26,19,8,206,2,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,214,144,208,110,63,146,155,64,26,19,8,206,2,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,80,58,123,118,210,158,64,26,19,8,206,2,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,152,9,224,202,107,43,156,64,26,19,8,206,2,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,76,3,26,127,157,176,156,64,26,19,8,206,2,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,53,210,43,14,42,177,158,64,26,19,8,206,2,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,102,235,67,61,99,156,156,64,26,19,8,206,2,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,52,127,12,1,49,7,157,64,26,19,8,206,2,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,107,167,90,186,149,156,64,26,19,8,206,2,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,228,15,166,22,58,166,155,64,26,19,8,206,2,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,211,105,82,170,175,189,156,64,26,19,8,206,2,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,72,154,121,224,116,202,154,64,26,19,8,206,2,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,104,196,52,83,216,156,64,26,19,8,206,2,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,110,157,92,6,220,135,154,64,26,19,8,206,2,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,124,77,87,85,15,21,159,64,26,19,8,206,2,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,1,31,78,153,143,102,154,64,26,19,8,206,2,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,115,72,31,127,157,127,159,64,26,19,8,206,2,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,20,24,193,18,19,249,154,64,26,19,8,206,2,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,77,69,60,89,54,194,159,64,26,19,8,206,2,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,95,13,138,43,129,219,155,64,26,19,8,206,2,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,196,216,59,223,200,159,64,26,19,8,206,2,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,5,136,238,55,184,76,156,64,26,19,8,206,2,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,248,74,59,106,86,74,159,64,26,19,8,206,2,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,105,1,197,206,146,216,156,64,26,19,8,206,2,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,76,201,223,178,47,159,64,26,19,8,206,2,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,171,2,83,68,239,189,156,64,26,19,8,206,2,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,114,6,253,164,4,110,156,64,26,19,8,206,2,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,44,205,243,55,184,27,159,64,26,19,8,206,2,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,53,144,9,52,145,159,155,64,26,19,8,206,2,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,124,77,87,85,15,21,159,64,26,19,8,206,2,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,29,102,86,169,75,160,64,26,19,8,206,2,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,157,148,122,207,84,66,155,64,26,19,8,206,2,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,50,92,38,82,161,105,160,64,26,19,8,206,2,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,148,143,66,249,226,172,155,64,26,19,8,206,2,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,27,74,107,240,128,160,64,26,19,8,206,2,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,152,9,224,202,107,43,156,64,26,19,8,206,2,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,76,3,26,127,157,176,156,64,26,19,8,206,2,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,78,90,209,161,150,145,160,64,26,19,8,206,2,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,154,31,19,235,148,160,64,26,19,8,206,2,16,82,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,0,253,83,51,207,53,157,64,26,19,8,206,2,16,83,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,81,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,38,154,31,19,235,148,160,64,26,19,8,206,2,16,85,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,152,248,226,151,11,147,157,64,26,19,8,206,2,16,86,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,84,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,221,80,170,166,85,160,64,26,19,8,206,2,16,88,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,171,241,85,17,143,37,158,64,26,19,8,206,2,16,89,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,87,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,76,157,2,57,82,82,160,64,26,19,8,206,2,16,91,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,152,248,226,151,11,147,157,64,26,19,8,206,2,16,92,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,90,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,131,220,137,111,248,98,160,64,26,19,8,206,2,16,94,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,176,124,240,21,120,60,157,64,26,19,8,206,2,16,95,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,93,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,185,27,17,166,158,115,160,64,26,19,8,206,2,16,97,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,147,126,69,198,130,20,157,64,26,19,8,206,2,16,98,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,96,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,147,89,199,28,26,161,64,26,19,8,206,2,16,100,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,203,105,158,50,13,204,158,64,26,19,8,206,2,16,101,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,99,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,147,89,199,28,26,161,64,26,19,8,206,2,16,103,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,222,98,17,172,144,94,159,64,26,19,8,206,2,16,104,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,102,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,118,94,160,16,205,187,159,64,26,19,8,206,2,16,107,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,244,212,53,174,205,2,161,64,26,19,8,206,2,16,106,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,105,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,121,215,81,153,134,205,160,64,26,19,8,206,2,16,109,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,182,44,52,157,45,19,160,64,26,19,8,206,2,16,110,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,108,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,93,217,166,73,145,165,160,64,26,19,8,206,2,16,112,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,61,236,30,241,42,29,160,64,26,19,8,206,2,16,113,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,111,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,206,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,246,228,2,18,242,228,2,10,238,228,2,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,207,2,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,203,227,2,10,6,112,111,105,110,116,115,18,191,227,2,18,187,227,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,145,158,64,26,19,8,207,2,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,47,149,64,26,19,8,207,2,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,147,149,64,26,19,8,207,2,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,158,64,26,19,8,207,2,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,98,158,64,26,19,8,207,2,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,187,149,64,26,19,8,207,2,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,214,149,64,26,19,8,207,2,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,138,158,64,26,19,8,207,2,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,158,64,26,19,8,207,2,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,214,149,64,26,19,8,207,2,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,158,64,26,19,8,207,2,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,187,149,64,26,19,8,207,2,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,22,159,64,26,19,8,207,2,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,147,149,64,26,19,8,207,2,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,29,159,64,26,19,8,207,2,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,94,149,64,26,19,8,207,2,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,159,64,26,19,8,207,2,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,54,149,64,26,19,8,207,2,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,238,158,64,26,19,8,207,2,16,34,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,21,149,64,26,19,8,207,2,16,35,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,33,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,158,158,64,26,19,8,207,2,16,37,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,223,148,64,26,19,8,207,2,16,38,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,36,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,145,158,64,26,19,8,207,2,16,40,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,250,148,64,26,19,8,207,2,16,41,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,39,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,158,64,26,19,8,207,2,16,43,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,101,149,64,26,19,8,207,2,16,44,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,42,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,145,158,64,26,19,8,207,2,16,46,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,167,149,64,26,19,8,207,2,16,47,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,45,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,178,158,64,26,19,8,207,2,16,49,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,214,149,64,26,19,8,207,2,16,50,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,48,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,158,64,26,19,8,207,2,16,52,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,227,149,64,26,19,8,207,2,16,53,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,51,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,158,64,26,19,8,207,2,16,55,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,227,149,64,26,19,8,207,2,16,56,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,54,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,159,64,26,19,8,207,2,16,58,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,207,149,64,26,19,8,207,2,16,59,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,57,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,29,159,64,26,19,8,207,2,16,61,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,174,149,64,26,19,8,207,2,16,62,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,60,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,29,159,64,26,19,8,207,2,16,64,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,121,149,64,26,19,8,207,2,16,65,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,63,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,159,64,26,19,8,207,2,16,67,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,81,149,64,26,19,8,207,2,16,68,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,66,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,245,158,64,26,19,8,207,2,16,70,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,41,149,64,26,19,8,207,2,16,71,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,69,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,185,158,64,26,19,8,207,2,16,73,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,14,149,64,26,19,8,207,2,16,74,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,72,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,138,158,64,26,19,8,207,2,16,76,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,21,149,64,26,19,8,207,2,16,77,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,75,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,158,64,26,19,8,207,2,16,79,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,47,149,64,26,19,8,207,2,16,80,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,78,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,107,149,64,26,19,8,207,2,16,83,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,158,64,26,19,8,207,2,16,82,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,81,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,254,149,64,26,19,8,207,2,16,86,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,158,64,26,19,8,207,2,16,85,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,84,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,254,149,64,26,19,8,207,2,16,89,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,105,158,64,26,19,8,207,2,16,88,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,87,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,118,158,64,26,19,8,207,2,16,91,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,241,149,64,26,19,8,207,2,16,92,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,90,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,158,64,26,19,8,207,2,16,94,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,161,149,64,26,19,8,207,2,16,95,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,93,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,105,158,64,26,19,8,207,2,16,97,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,34,149,64,26,19,8,207,2,16,98,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,96,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,158,64,26,19,8,207,2,16,100,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,61,149,64,26,19,8,207,2,16,101,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,99,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,158,64,26,19,8,207,2,16,103,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,114,149,64,26,19,8,207,2,16,104,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,102,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,158,64,26,19,8,207,2,16,106,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,207,149,64,26,19,8,207,2,16,107,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,105,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,234,149,64,26,19,8,207,2,16,110,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,25,158,64,26,19,8,207,2,16,109,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,108,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,78,158,64,26,19,8,207,2,16,112,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,247,149,64,26,19,8,207,2,16,113,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,111,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,125,158,64,26,19,8,207,2,16,115,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,207,149,64,26,19,8,207,2,16,116,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,114,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,158,64,26,19,8,207,2,16,118,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,154,149,64,26,19,8,207,2,16,119,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,117,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,158,64,26,19,8,207,2,16,121,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,127,149,64,26,19,8,207,2,16,122,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,120,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,138,158,64,26,19,8,207,2,16,124,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,101,149,64,26,19,8,207,2,16,125,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,123,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,110,18,108,10,106,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,87,149,64,26,20,8,207,2,16,128,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,118,158,64,26,19,8,207,2,16,127,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,126,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,2,16,130,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,207,2,16,131,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,129,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,2,16,133,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,101,149,64,26,20,8,207,2,16,134,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,132,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,207,2,16,136,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,134,149,64,26,20,8,207,2,16,137,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,135,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,207,2,16,139,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,161,149,64,26,20,8,207,2,16,140,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,138,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,207,2,16,142,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,207,149,64,26,20,8,207,2,16,143,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,141,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,247,149,64,26,20,8,207,2,16,146,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,207,2,16,145,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,144,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,207,2,16,148,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,11,150,64,26,20,8,207,2,16,149,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,147,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,207,2,16,151,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,5,150,64,26,20,8,207,2,16,152,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,150,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,207,2,16,154,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,221,149,64,26,20,8,207,2,16,155,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,153,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,207,2,16,157,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,187,149,64,26,20,8,207,2,16,158,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,156,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,207,2,16,160,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,107,149,64,26,20,8,207,2,16,161,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,159,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,163,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,74,149,64,26,20,8,207,2,16,164,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,162,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,2,16,166,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,207,2,16,167,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,165,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,207,2,16,169,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,207,2,16,170,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,168,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,207,2,16,172,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,207,2,16,173,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,171,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,127,149,64,26,20,8,207,2,16,176,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,207,2,16,175,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,174,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,207,2,16,178,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,194,149,64,26,20,8,207,2,16,179,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,177,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,214,149,64,26,20,8,207,2,16,182,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,207,2,16,181,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,180,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,207,2,16,184,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,214,149,64,26,20,8,207,2,16,185,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,183,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,187,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,194,149,64,26,20,8,207,2,16,188,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,186,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,134,149,64,26,20,8,207,2,16,191,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,207,2,16,190,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,189,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,207,2,16,193,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,74,149,64,26,20,8,207,2,16,194,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,192,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,196,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,27,149,64,26,20,8,207,2,16,197,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,195,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,2,16,199,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,207,2,16,200,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,198,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,207,2,16,202,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,217,148,64,26,20,8,207,2,16,203,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,201,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,2,16,205,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,217,148,64,26,20,8,207,2,16,206,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,204,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,207,2,16,208,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,207,2,16,209,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,207,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,207,2,16,211,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,41,149,64,26,20,8,207,2,16,212,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,210,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,207,2,16,214,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,207,2,16,215,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,213,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,207,2,16,217,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,161,149,64,26,20,8,207,2,16,218,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,216,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,234,149,64,26,20,8,207,2,16,221,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,207,2,16,220,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,219,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,207,2,16,223,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,25,150,64,26,20,8,207,2,16,224,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,222,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,165,158,64,26,20,8,207,2,16,226,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,45,150,64,26,20,8,207,2,16,227,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,225,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,205,158,64,26,20,8,207,2,16,229,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,38,150,64,26,20,8,207,2,16,230,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,228,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,158,64,26,20,8,207,2,16,232,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,254,149,64,26,20,8,207,2,16,233,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,231,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,158,64,26,20,8,207,2,16,235,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,154,149,64,26,20,8,207,2,16,236,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,234,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,218,158,64,26,20,8,207,2,16,238,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,94,149,64,26,20,8,207,2,16,239,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,237,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,207,2,16,241,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,41,149,64,26,20,8,207,2,16,242,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,240,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,207,2,16,244,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,207,2,16,245,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,243,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,2,16,247,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,207,2,16,248,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,246,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,207,2,16,250,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,207,2,16,251,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,249,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,207,2,16,253,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,21,149,64,26,20,8,207,2,16,254,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,252,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,243,148,64,26,20,8,207,2,16,129,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,207,2,16,128,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,255,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,207,2,16,131,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,132,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,130,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,207,2,16,134,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,110,148,64,26,20,8,207,2,16,135,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,133,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,207,2,16,137,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,63,148,64,26,20,8,207,2,16,138,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,136,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,207,2,16,140,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,37,148,64,26,20,8,207,2,16,141,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,139,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,2,16,143,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,37,148,64,26,20,8,207,2,16,144,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,142,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,207,2,16,146,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,197,148,64,26,20,8,207,2,16,147,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,145,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,207,2,16,150,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,2,16,149,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,148,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,207,2,16,152,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,207,2,16,153,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,151,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,156,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,207,2,16,155,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,154,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,254,157,64,26,20,8,207,2,16,158,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,210,148,64,26,20,8,207,2,16,159,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,157,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,207,2,16,161,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,137,148,64,26,20,8,207,2,16,162,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,160,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,207,2,16,164,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,83,148,64,26,20,8,207,2,16,165,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,163,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,207,2,16,167,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,57,148,64,26,20,8,207,2,16,168,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,166,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,207,2,16,170,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,17,148,64,26,20,8,207,2,16,171,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,169,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,2,16,173,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,253,147,64,26,20,8,207,2,16,174,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,172,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,207,2,16,176,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,17,148,64,26,20,8,207,2,16,177,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,175,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,207,2,16,179,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,43,148,64,26,20,8,207,2,16,180,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,178,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,207,2,16,182,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,90,148,64,26,20,8,207,2,16,183,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,181,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,117,148,64,26,20,8,207,2,16,186,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,185,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,184,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,2,16,188,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,137,148,64,26,20,8,207,2,16,189,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,187,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,123,148,64,26,20,8,207,2,16,192,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,207,2,16,191,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,190,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,2,16,194,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,97,148,64,26,20,8,207,2,16,195,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,193,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,207,2,16,197,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,43,148,64,26,20,8,207,2,16,198,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,196,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,3,148,64,26,20,8,207,2,16,201,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,207,2,16,200,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,199,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,207,2,16,203,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,246,147,64,26,20,8,207,2,16,204,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,202,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,207,2,16,206,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,253,147,64,26,20,8,207,2,16,207,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,205,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,207,2,16,209,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,23,148,64,26,20,8,207,2,16,210,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,208,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,207,2,16,212,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,70,148,64,26,20,8,207,2,16,213,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,211,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,215,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,90,148,64,26,20,8,207,2,16,216,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,214,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,207,2,16,218,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,110,148,64,26,20,8,207,2,16,219,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,217,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,207,2,16,221,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,103,148,64,26,20,8,207,2,16,222,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,220,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,207,2,16,224,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,70,148,64,26,20,8,207,2,16,225,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,223,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,50,148,64,26,20,8,207,2,16,228,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,207,2,16,227,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,226,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,207,2,16,230,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,253,147,64,26,20,8,207,2,16,231,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,229,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,2,16,233,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,233,147,64,26,20,8,207,2,16,234,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,232,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,226,147,64,26,20,8,207,2,16,237,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,2,16,236,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,235,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,205,158,64,26,20,8,207,2,16,239,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,3,148,64,26,20,8,207,2,16,240,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,238,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,238,158,64,26,20,8,207,2,16,242,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,23,148,64,26,20,8,207,2,16,243,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,241,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,207,2,16,245,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,43,148,64,26,20,8,207,2,16,246,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,244,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,238,158,64,26,20,8,207,2,16,248,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,70,148,64,26,20,8,207,2,16,249,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,247,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,207,2,16,251,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,110,148,64,26,20,8,207,2,16,252,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,250,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,165,158,64,26,20,8,207,2,16,254,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,123,148,64,26,20,8,207,2,16,255,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,253,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,207,2,16,129,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,110,148,64,26,20,8,207,2,16,130,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,128,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,132,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,103,148,64,26,20,8,207,2,16,133,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,131,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,135,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,50,148,64,26,20,8,207,2,16,136,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,134,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,207,2,16,138,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,30,148,64,26,20,8,207,2,16,139,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,137,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,238,158,64,26,20,8,207,2,16,141,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,137,148,64,26,20,8,207,2,16,142,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,140,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,198,158,64,26,20,8,207,2,16,144,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,163,148,64,26,20,8,207,2,16,145,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,143,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,207,2,16,147,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,163,148,64,26,20,8,207,2,16,148,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,146,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,207,2,16,150,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,123,148,64,26,20,8,207,2,16,151,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,149,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,153,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,63,148,64,26,20,8,207,2,16,154,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,152,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,156,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,3,148,64,26,20,8,207,2,16,157,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,155,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,207,2,16,159,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,172,170,170,42,191,219,147,64,26,20,8,207,2,16,160,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,158,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,158,64,26,20,8,207,2,16,162,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,226,147,64,26,20,8,207,2,16,163,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,161,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,207,2,16,165,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,253,147,64,26,20,8,207,2,16,166,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,164,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,207,2,16,168,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,23,148,64,26,20,8,207,2,16,169,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,167,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,171,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,50,148,64,26,20,8,207,2,16,172,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,170,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,207,2,16,174,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,172,170,170,42,191,239,147,64,26,20,8,207,2,16,175,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,173,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,207,2,16,177,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,206,147,64,26,20,8,207,2,16,178,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,176,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,207,2,16,180,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,172,170,170,42,191,199,147,64,26,20,8,207,2,16,181,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,179,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,185,158,64,26,20,8,207,2,16,183,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,172,170,170,42,191,199,147,64,26,20,8,207,2,16,184,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,182,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,158,64,26,20,8,207,2,16,186,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,213,147,64,26,20,8,207,2,16,187,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,185,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,253,147,64,26,20,8,207,2,16,190,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,225,158,64,26,20,8,207,2,16,189,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,188,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,57,148,64,26,20,8,207,2,16,193,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,225,158,64,26,20,8,207,2,16,192,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,191,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,185,158,64,26,20,8,207,2,16,195,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,137,148,64,26,20,8,207,2,16,196,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,194,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,163,148,64,26,20,8,207,2,16,199,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,207,2,16,198,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,197,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,207,2,16,201,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,170,148,64,26,20,8,207,2,16,202,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,200,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,2,16,204,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,150,148,64,26,20,8,207,2,16,205,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,203,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,2,16,207,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,123,148,64,26,20,8,207,2,16,208,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,206,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,207,2,16,210,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,90,148,64,26,20,8,207,2,16,211,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,209,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,207,2,16,213,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,70,148,64,26,20,8,207,2,16,214,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,212,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,207,2,16,216,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,77,148,64,26,20,8,207,2,16,217,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,215,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,97,148,64,26,20,8,207,2,16,220,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,205,158,64,26,20,8,207,2,16,219,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,218,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,130,148,64,26,20,8,207,2,16,223,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,205,158,64,26,20,8,207,2,16,222,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,221,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,185,158,64,26,20,8,207,2,16,225,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,177,148,64,26,20,8,207,2,16,226,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,224,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,165,158,64,26,20,8,207,2,16,228,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,210,148,64,26,20,8,207,2,16,229,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,227,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,207,2,16,231,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,232,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,230,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,207,2,16,234,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,235,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,233,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,2,16,237,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,207,2,16,238,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,236,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,2,16,240,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,183,148,64,26,20,8,207,2,16,241,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,239,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,170,148,64,26,20,8,207,2,16,244,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,207,2,16,243,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,242,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,207,2,16,246,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,157,148,64,26,20,8,207,2,16,247,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,245,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,205,158,64,26,20,8,207,2,16,249,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,177,148,64,26,20,8,207,2,16,250,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,248,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,218,158,64,26,20,8,207,2,16,252,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,197,148,64,26,20,8,207,2,16,253,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,251,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,218,158,64,26,20,8,207,2,16,255,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,128,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,254,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,207,2,16,130,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,207,2,16,131,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,129,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,207,2,16,133,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,207,2,16,134,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,132,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,207,2,16,136,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,41,149,64,26,20,8,207,2,16,137,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,135,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,207,2,16,139,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,27,149,64,26,20,8,207,2,16,140,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,138,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,2,16,142,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,230,148,64,26,20,8,207,2,16,143,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,141,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,207,2,16,145,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,146,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,144,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,207,2,16,148,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,243,148,64,26,20,8,207,2,16,149,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,147,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,207,2,16,152,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,207,2,16,151,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,150,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,207,2,16,154,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,207,2,16,155,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,153,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,2,16,157,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,47,149,64,26,20,8,207,2,16,158,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,156,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,207,2,16,160,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,21,149,64,26,20,8,207,2,16,161,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,159,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,2,16,163,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,230,148,64,26,20,8,207,2,16,164,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,162,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,207,2,16,166,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,167,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,165,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,2,16,169,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,230,148,64,26,20,8,207,2,16,170,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,168,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,207,2,16,172,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,250,148,64,26,20,8,207,2,16,173,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,171,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,207,2,16,175,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,207,2,16,176,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,174,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,178,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,207,2,16,179,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,177,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,121,149,64,26,20,8,207,2,16,182,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,207,2,16,181,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,180,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,207,2,16,184,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,121,149,64,26,20,8,207,2,16,185,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,183,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,207,2,16,187,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,107,149,64,26,20,8,207,2,16,188,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,186,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,207,2,16,190,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,207,2,16,191,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,189,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,207,2,16,193,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,207,2,16,194,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,192,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,207,2,16,196,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,21,149,64,26,20,8,207,2,16,197,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,195,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,207,2,16,199,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,207,2,16,200,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,198,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,207,2,16,202,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,107,149,64,26,20,8,207,2,16,203,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,201,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,207,2,16,206,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,207,2,16,205,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,204,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,207,2,16,208,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,207,2,16,209,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,207,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,207,2,16,211,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,41,149,64,26,20,8,207,2,16,212,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,210,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,207,2,16,214,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,134,149,64,26,20,8,207,2,16,215,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,213,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,207,2,16,217,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,74,149,64,26,20,8,207,2,16,218,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,216,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,207,2,16,220,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,47,149,64,26,20,8,207,2,16,221,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,219,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,207,2,16,223,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,41,149,64,26,20,8,207,2,16,224,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,222,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,207,2,16,226,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,47,149,64,26,20,8,207,2,16,227,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,225,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,207,2,16,229,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,74,149,64,26,20,8,207,2,16,230,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,228,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,232,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,107,149,64,26,20,8,207,2,16,233,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,231,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,235,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,147,149,64,26,20,8,207,2,16,236,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,234,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,207,2,16,238,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,161,149,64,26,20,8,207,2,16,239,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,237,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,207,2,16,241,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,161,149,64,26,20,8,207,2,16,242,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,240,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,207,2,16,244,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,147,149,64,26,20,8,207,2,16,245,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,243,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,207,2,16,247,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,101,149,64,26,20,8,207,2,16,248,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,246,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,207,2,16,250,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,47,149,64,26,20,8,207,2,16,251,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,249,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,207,2,16,253,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,250,148,64,26,20,8,207,2,16,254,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,252,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,207,2,16,128,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,41,149,64,26,20,8,207,2,16,129,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,255,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,207,2,16,131,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,41,149,64,26,20,8,207,2,16,132,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,130,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,207,2,16,134,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,207,2,16,135,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,133,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,177,148,64,26,20,8,207,2,16,138,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,207,2,16,137,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,136,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,207,2,16,140,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,217,148,64,26,20,8,207,2,16,141,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,139,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,207,2,16,143,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,207,2,16,144,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,142,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,207,2,16,146,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,67,149,64,26,20,8,207,2,16,147,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,145,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,207,2,16,149,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,207,2,16,150,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,148,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,207,2,16,152,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,207,2,16,153,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,151,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,207,2,16,155,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,61,149,64,26,20,8,207,2,16,156,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,154,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,207,2,16,158,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,47,149,64,26,20,8,207,2,16,159,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,157,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,207,2,16,161,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,207,2,16,162,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,160,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,207,2,16,164,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,207,2,16,165,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,163,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,207,2,16,167,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,243,148,64,26,20,8,207,2,16,168,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,166,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,201,157,64,26,20,8,207,2,16,170,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,243,148,64,26,20,8,207,2,16,171,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,169,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,207,2,16,173,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,27,149,64,26,20,8,207,2,16,174,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,172,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,207,2,16,176,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,207,2,16,177,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,175,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,87,149,64,26,20,8,207,2,16,180,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,101,157,64,26,20,8,207,2,16,179,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,178,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,207,2,16,182,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,207,2,16,183,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,181,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,207,2,16,185,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,207,2,16,186,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,184,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,207,2,16,188,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,207,2,16,189,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,187,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,41,157,64,26,20,8,207,2,16,191,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,207,2,16,192,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,190,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,157,64,26,20,8,207,2,16,194,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,230,148,64,26,20,8,207,2,16,195,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,193,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,207,2,16,197,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,210,148,64,26,20,8,207,2,16,198,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,196,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,210,148,64,26,20,8,207,2,16,201,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,201,157,64,26,20,8,207,2,16,200,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,199,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,207,2,16,203,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,204,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,202,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,250,148,64,26,20,8,207,2,16,207,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,207,2,16,206,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,205,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,207,2,16,209,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,207,2,16,210,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,208,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,207,2,16,212,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,207,2,16,213,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,211,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,207,2,16,215,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,207,2,16,216,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,214,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,207,2,16,218,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,207,2,16,219,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,217,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,207,2,16,221,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,217,148,64,26,20,8,207,2,16,222,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,220,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,183,148,64,26,20,8,207,2,16,225,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,207,2,16,224,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,223,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,207,2,16,227,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,177,148,64,26,20,8,207,2,16,228,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,226,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,183,148,64,26,20,8,207,2,16,231,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,207,2,16,230,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,229,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,217,148,64,26,20,8,207,2,16,234,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,207,2,16,233,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,232,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,207,2,16,236,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,230,148,64,26,20,8,207,2,16,237,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,235,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,207,2,16,240,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,157,64,26,20,8,207,2,16,239,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,238,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,207,2,16,242,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,207,2,16,243,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,241,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,207,2,16,245,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,217,148,64,26,20,8,207,2,16,246,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,244,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,207,2,16,248,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,83,148,64,26,20,8,207,2,16,249,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,247,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,207,2,16,251,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,17,148,64,26,20,8,207,2,16,252,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,250,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,103,148,64,26,20,8,207,2,16,255,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,207,2,16,254,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,253,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,117,148,64,26,20,8,207,2,16,130,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,207,2,16,129,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,128,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,157,148,64,26,20,8,207,2,16,133,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,207,2,16,132,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,131,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,207,2,16,135,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,150,148,64,26,20,8,207,2,16,136,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,134,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,70,148,64,26,20,8,207,2,16,139,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,207,2,16,138,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,137,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,207,2,16,141,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,50,148,64,26,20,8,207,2,16,142,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,140,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,201,157,64,26,20,8,207,2,16,144,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,50,148,64,26,20,8,207,2,16,145,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,143,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,83,148,64,26,20,8,207,2,16,148,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,207,2,16,147,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,146,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,207,2,16,150,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,157,148,64,26,20,8,207,2,16,151,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,149,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,207,2,16,153,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,154,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,152,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,207,2,16,156,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,230,148,64,26,20,8,207,2,16,157,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,155,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,207,2,16,159,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,143,148,64,26,20,8,207,2,16,160,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,158,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,90,148,64,26,20,8,207,2,16,163,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,207,2,16,162,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,161,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,201,157,64,26,20,8,207,2,16,165,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,83,148,64,26,20,8,207,2,16,166,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,164,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,207,2,16,168,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,83,148,64,26,20,8,207,2,16,169,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,167,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,110,148,64,26,20,8,207,2,16,172,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,254,157,64,26,20,8,207,2,16,171,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,170,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,2,16,174,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,230,148,64,26,20,8,207,2,16,175,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,173,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,207,2,16,177,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,230,148,64,26,20,8,207,2,16,178,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,176,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,207,2,16,180,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,130,148,64,26,20,8,207,2,16,181,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,179,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,2,16,183,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,117,148,64,26,20,8,207,2,16,184,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,182,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,207,2,16,186,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,97,148,64,26,20,8,207,2,16,187,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,185,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,207,2,16,189,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,83,148,64,26,20,8,207,2,16,190,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,188,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,97,148,64,26,20,8,207,2,16,193,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,62,159,64,26,20,8,207,2,16,192,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,191,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,159,64,26,20,8,207,2,16,195,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,103,148,64,26,20,8,207,2,16,196,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,194,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,159,64,26,20,8,207,2,16,198,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,97,148,64,26,20,8,207,2,16,199,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,197,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,50,148,64,26,20,8,207,2,16,202,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,238,158,64,26,20,8,207,2,16,201,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,200,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,30,148,64,26,20,8,207,2,16,205,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,207,2,16,204,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,203,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,29,159,64,26,20,8,207,2,16,207,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,43,148,64,26,20,8,207,2,16,208,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,206,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,69,159,64,26,20,8,207,2,16,210,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,90,148,64,26,20,8,207,2,16,211,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,209,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,205,158,64,26,20,8,207,2,16,213,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,210,148,64,26,20,8,207,2,16,214,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,212,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,207,2,16,216,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,177,148,64,26,20,8,207,2,16,217,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,215,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,207,2,16,219,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,157,148,64,26,20,8,207,2,16,220,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,218,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,218,158,64,26,20,8,207,2,16,222,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,150,148,64,26,20,8,207,2,16,223,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,221,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,29,159,64,26,20,8,207,2,16,225,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,177,148,64,26,20,8,207,2,16,226,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,224,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,69,159,64,26,20,8,207,2,16,228,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,229,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,227,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,49,159,64,26,20,8,207,2,16,231,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,207,2,16,232,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,230,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,207,2,16,234,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,207,2,16,235,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,233,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,205,158,64,26,20,8,207,2,16,237,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,207,2,16,238,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,236,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,207,2,16,240,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,210,148,64,26,20,8,207,2,16,241,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,239,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,198,158,64,26,20,8,207,2,16,243,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,207,2,16,244,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,242,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,207,2,16,246,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,21,149,64,26,20,8,207,2,16,247,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,245,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,207,2,16,249,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,207,2,16,250,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,248,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,225,158,64,26,20,8,207,2,16,252,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,47,149,64,26,20,8,207,2,16,253,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,251,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,207,2,16,128,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,205,158,64,26,20,8,207,2,16,255,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,254,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,47,149,64,26,20,8,207,2,16,131,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,207,2,16,130,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,129,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,207,2,16,133,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,21,149,64,26,20,8,207,2,16,134,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,132,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,207,2,16,136,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,207,2,16,137,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,135,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,207,2,16,139,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,243,148,64,26,20,8,207,2,16,140,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,138,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,207,2,16,142,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,207,2,16,143,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,141,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,218,158,64,26,20,8,207,2,16,145,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,243,148,64,26,20,8,207,2,16,146,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,144,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,2,159,64,26,20,8,207,2,16,148,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,207,2,16,149,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,147,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,159,64,26,20,8,207,2,16,151,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,41,149,64,26,20,8,207,2,16,152,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,150,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,9,159,64,26,20,8,207,2,16,154,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,87,149,64,26,20,8,207,2,16,155,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,153,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,238,158,64,26,20,8,207,2,16,157,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,101,149,64,26,20,8,207,2,16,158,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,156,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,207,2,16,160,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,87,149,64,26,20,8,207,2,16,161,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,159,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,61,149,64,26,20,8,207,2,16,164,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,207,2,16,163,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,162,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,207,2,16,166,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,207,2,16,167,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,165,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,2,16,169,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,207,2,16,170,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,168,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,172,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,207,2,16,173,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,171,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,47,149,64,26,20,8,207,2,16,176,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,165,158,64,26,20,8,207,2,16,175,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,174,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,207,2,16,178,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,207,2,16,179,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,177,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,207,2,16,181,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,94,149,64,26,20,8,207,2,16,182,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,180,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,207,2,16,184,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,114,149,64,26,20,8,207,2,16,185,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,183,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,207,2,16,187,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,94,149,64,26,20,8,207,2,16,188,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,186,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,207,2,16,190,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,207,2,16,191,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,189,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,207,2,16,193,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,27,149,64,26,20,8,207,2,16,194,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,192,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,207,2,16,196,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,27,149,64,26,20,8,207,2,16,197,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,195,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,165,158,64,26,20,8,207,2,16,199,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,207,2,16,200,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,198,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,158,64,26,20,8,207,2,16,202,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,121,149,64,26,20,8,207,2,16,203,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,201,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,225,158,64,26,20,8,207,2,16,205,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,141,149,64,26,20,8,207,2,16,206,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,204,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,207,2,16,208,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,141,149,64,26,20,8,207,2,16,209,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,207,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,114,149,64,26,20,8,207,2,16,212,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,207,2,16,211,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,210,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,2,16,214,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,81,149,64,26,20,8,207,2,16,215,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,213,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,207,2,16,217,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,107,149,64,26,20,8,207,2,16,218,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,216,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,207,2,16,220,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,154,149,64,26,20,8,207,2,16,221,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,219,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,181,149,64,26,20,8,207,2,16,224,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,207,2,16,223,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,222,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,207,2,16,226,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,194,149,64,26,20,8,207,2,16,227,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,225,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,207,2,16,229,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,194,149,64,26,20,8,207,2,16,230,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,228,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,207,2,16,232,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,154,149,64,26,20,8,207,2,16,233,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,231,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,207,2,16,235,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,187,149,64,26,20,8,207,2,16,236,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,234,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,2,16,238,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,174,149,64,26,20,8,207,2,16,239,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,237,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,2,16,241,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,107,149,64,26,20,8,207,2,16,242,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,240,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,207,2,16,244,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,94,149,64,26,20,8,207,2,16,245,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,243,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,247,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,94,149,64,26,20,8,207,2,16,248,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,246,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,207,2,16,250,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,114,149,64,26,20,8,207,2,16,251,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,249,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,134,149,64,26,20,8,207,2,16,254,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,207,2,16,253,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,252,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,207,2,16,128,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,154,149,64,26,20,8,207,2,16,129,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,255,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,207,2,16,131,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,154,149,64,26,20,8,207,2,16,132,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,130,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,2,16,134,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,121,149,64,26,20,8,207,2,16,135,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,133,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,198,158,64,26,20,8,207,2,16,137,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,207,2,16,138,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,136,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,225,158,64,26,20,8,207,2,16,140,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,47,149,64,26,20,8,207,2,16,141,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,139,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,238,158,64,26,20,8,207,2,16,143,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,67,149,64,26,20,8,207,2,16,144,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,142,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,158,64,26,20,8,207,2,16,146,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,207,2,16,147,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,145,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,207,2,16,149,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,250,148,64,26,20,8,207,2,16,150,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,148,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,2,159,64,26,20,8,207,2,16,152,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,250,148,64,26,20,8,207,2,16,153,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,151,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,159,64,26,20,8,207,2,16,155,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,207,2,16,156,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,154,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,69,159,64,26,20,8,207,2,16,158,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,67,149,64,26,20,8,207,2,16,159,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,157,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,56,159,64,26,20,8,207,2,16,161,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,74,149,64,26,20,8,207,2,16,162,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,160,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,2,159,64,26,20,8,207,2,16,164,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,47,149,64,26,20,8,207,2,16,165,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,163,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,218,158,64,26,20,8,207,2,16,167,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,207,2,16,168,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,166,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,250,148,64,26,20,8,207,2,16,171,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,218,158,64,26,20,8,207,2,16,170,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,169,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,9,159,64,26,20,8,207,2,16,173,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,243,148,64,26,20,8,207,2,16,174,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,172,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,159,64,26,20,8,207,2,16,176,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,27,149,64,26,20,8,207,2,16,177,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,175,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,122,159,64,26,20,8,207,2,16,179,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,47,149,64,26,20,8,207,2,16,180,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,178,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,122,159,64,26,20,8,207,2,16,182,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,61,149,64,26,20,8,207,2,16,183,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,181,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,116,159,64,26,20,8,207,2,16,185,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,67,149,64,26,20,8,207,2,16,186,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,184,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,159,64,26,20,8,207,2,16,188,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,67,149,64,26,20,8,207,2,16,189,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,187,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,2,159,64,26,20,8,207,2,16,191,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,207,2,16,192,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,190,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,207,2,16,194,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,210,148,64,26,20,8,207,2,16,195,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,193,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,207,2,16,197,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,190,148,64,26,20,8,207,2,16,198,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,196,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,158,64,26,20,8,207,2,16,200,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,190,148,64,26,20,8,207,2,16,201,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,199,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,159,64,26,20,8,207,2,16,203,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,207,2,16,204,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,202,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,156,159,64,26,20,8,207,2,16,206,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,207,2,16,207,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,205,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,202,159,64,26,20,8,207,2,16,209,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,41,149,64,26,20,8,207,2,16,210,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,208,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,142,159,64,26,20,8,207,2,16,212,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,54,149,64,26,20,8,207,2,16,213,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,211,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,62,159,64,26,20,8,207,2,16,215,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,41,149,64,26,20,8,207,2,16,216,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,214,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,22,159,64,26,20,8,207,2,16,218,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,207,2,16,219,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,217,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,238,158,64,26,20,8,207,2,16,221,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,222,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,220,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,207,2,16,224,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,210,148,64,26,20,8,207,2,16,225,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,223,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,159,64,26,20,8,207,2,16,227,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,207,2,16,228,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,226,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,69,159,64,26,20,8,207,2,16,230,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,231,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,229,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,21,149,64,26,20,8,207,2,16,234,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,122,159,64,26,20,8,207,2,16,233,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,232,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,102,159,64,26,20,8,207,2,16,236,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,207,2,16,237,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,235,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,36,159,64,26,20,8,207,2,16,239,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,34,149,64,26,20,8,207,2,16,240,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,238,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,207,2,16,242,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,21,149,64,26,20,8,207,2,16,243,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,241,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,207,2,16,245,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,210,148,64,26,20,8,207,2,16,246,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,244,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,207,2,16,248,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,177,148,64,26,20,8,207,2,16,249,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,247,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,207,2,16,251,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,163,148,64,26,20,8,207,2,16,252,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,250,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,207,2,16,254,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,170,148,64,26,20,8,207,2,16,255,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,253,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,2,159,64,26,20,8,207,2,16,129,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,130,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,128,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,16,159,64,26,20,8,207,2,16,132,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,14,149,64,26,20,8,207,2,16,133,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,131,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,21,149,64,26,20,8,207,2,16,136,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,158,64,26,20,8,207,2,16,135,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,134,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,207,2,16,138,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,207,2,16,139,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,137,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,207,2,16,141,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,177,148,64,26,20,8,207,2,16,142,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,140,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,165,158,64,26,20,8,207,2,16,144,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,170,148,64,26,20,8,207,2,16,145,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,143,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,207,2,16,148,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,158,64,26,20,8,207,2,16,147,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,146,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,207,2,16,150,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,237,148,64,26,20,8,207,2,16,151,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,149,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,207,2,16,153,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,1,149,64,26,20,8,207,2,16,154,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,152,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,232,158,64,26,20,8,207,2,16,156,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,7,149,64,26,20,8,207,2,16,157,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,155,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,207,2,16,159,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,250,148,64,26,20,8,207,2,16,160,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,158,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,207,2,16,162,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,207,2,16,163,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,161,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,207,2,16,165,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,177,148,64,26,20,8,207,2,16,166,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,164,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,207,2,16,168,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,170,148,64,26,20,8,207,2,16,169,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,167,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,218,158,64,26,20,8,207,2,16,171,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,207,2,16,172,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,170,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,175,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,238,158,64,26,20,8,207,2,16,174,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,173,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,207,2,16,177,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,223,148,64,26,20,8,207,2,16,178,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,176,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,203,148,64,26,20,8,207,2,16,181,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,245,158,64,26,20,8,207,2,16,180,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,2,16,179,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,207,2,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,207,2,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,2,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,208,2,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,208,2,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,208,2,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,135,64,26,19,8,208,2,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,221,43,64,26,19,8,208,2,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,208,2,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,143,64,26,19,8,208,2,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,87,192,26,19,8,208,2,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,208,2,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,208,2,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,208,2,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,178,9,18,175,9,10,172,9,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,220,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,178,161,64,26,19,8,220,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,167,64,26,19,8,220,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,220,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,58,167,64,26,19,8,220,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,126,161,64,26,19,8,220,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,220,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,110,161,64,26,19,8,220,2,16,13,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,22,167,64,26,19,8,220,2,16,14,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,220,2,16,12,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,161,64,26,19,8,220,2,16,16,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,166,64,26,19,8,220,2,16,17,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,220,2,16,15,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,190,166,64,26,19,8,220,2,16,20,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,161,64,26,19,8,220,2,16,19,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,220,2,16,18,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,110,161,64,26,19,8,220,2,16,22,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,172,166,64,26,19,8,220,2,16,23,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,220,2,16,21,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,142,161,64,26,19,8,220,2,16,25,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,130,166,64,26,19,8,220,2,16,26,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,220,2,16,24,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,178,161,64,26,19,8,220,2,16,28,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,98,166,64,26,19,8,220,2,16,29,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,220,2,16,27,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,162,166,64,26,19,8,220,2,16,32,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,162,64,26,19,8,220,2,16,31,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,220,2,16,30,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,220,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,220,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,220,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,220,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,247,18,18,244,18,10,241,18,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,221,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,221,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,221,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,207,17,10,6,112,111,105,110,116,115,18,196,17,18,193,17,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,182,163,64,26,19,8,221,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,78,166,64,26,19,8,221,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,166,163,64,26,19,8,221,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,72,166,64,26,19,8,221,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,130,163,64,26,19,8,221,2,16,13,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,44,166,64,26,19,8,221,2,16,14,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,12,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,163,64,26,19,8,221,2,16,16,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,242,165,64,26,19,8,221,2,16,17,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,15,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,50,163,64,26,19,8,221,2,16,19,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,190,165,64,26,19,8,221,2,16,20,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,18,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,36,163,64,26,19,8,221,2,16,22,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,132,165,64,26,19,8,221,2,16,23,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,21,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,163,64,26,19,8,221,2,16,25,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,38,165,64,26,19,8,221,2,16,26,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,24,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,54,163,64,26,19,8,221,2,16,28,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,2,165,64,26,19,8,221,2,16,29,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,27,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,163,64,26,19,8,221,2,16,31,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,164,64,26,19,8,221,2,16,32,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,30,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,170,164,64,26,19,8,221,2,16,35,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,163,64,26,19,8,221,2,16,34,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,33,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,163,64,26,19,8,221,2,16,37,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,152,164,64,26,19,8,221,2,16,38,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,36,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,138,164,64,26,19,8,221,2,16,41,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,163,64,26,19,8,221,2,16,40,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,39,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,163,64,26,19,8,221,2,16,43,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,130,164,64,26,19,8,221,2,16,44,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,42,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,122,164,64,26,19,8,221,2,16,46,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,126,164,64,26,19,8,221,2,16,47,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,45,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,174,164,64,26,19,8,221,2,16,49,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,130,164,64,26,19,8,221,2,16,50,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,48,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,164,64,26,19,8,221,2,16,52,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,146,164,64,26,19,8,221,2,16,53,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,51,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,2,165,64,26,19,8,221,2,16,55,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,170,164,64,26,19,8,221,2,16,56,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,54,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,70,165,64,26,19,8,221,2,16,58,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,250,164,64,26,19,8,221,2,16,59,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,57,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,94,165,64,26,19,8,221,2,16,61,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,60,165,64,26,19,8,221,2,16,62,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,60,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,98,165,64,26,19,8,221,2,16,64,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,104,165,64,26,19,8,221,2,16,65,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,63,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,221,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,251,54,18,248,54,10,245,54,10,211,53,10,6,112,111,105,110,116,115,18,200,53,18,197,53,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,90,167,64,26,19,8,222,2,16,8,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,163,64,26,19,8,222,2,16,7,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,6,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,174,163,64,26,19,8,222,2,16,10,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,24,167,64,26,19,8,222,2,16,11,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,9,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,118,164,64,26,19,8,222,2,16,13,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,118,166,64,26,19,8,222,2,16,14,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,12,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,170,164,64,26,19,8,222,2,16,16,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,210,166,64,26,19,8,222,2,16,17,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,15,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,164,64,26,19,8,222,2,16,19,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,167,64,26,19,8,222,2,16,20,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,18,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,214,164,64,26,19,8,222,2,16,22,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,98,167,64,26,19,8,222,2,16,23,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,21,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,214,164,64,26,19,8,222,2,16,25,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,140,167,64,26,19,8,222,2,16,26,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,24,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,164,64,26,19,8,222,2,16,28,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,158,167,64,26,19,8,222,2,16,29,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,27,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,164,64,26,19,8,222,2,16,31,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,192,167,64,26,19,8,222,2,16,32,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,30,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,150,164,64,26,19,8,222,2,16,34,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,218,167,64,26,19,8,222,2,16,35,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,33,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,74,164,64,26,19,8,222,2,16,37,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,242,167,64,26,19,8,222,2,16,38,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,36,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,254,167,64,26,19,8,222,2,16,41,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,234,163,64,26,19,8,222,2,16,40,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,39,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,178,163,64,26,19,8,222,2,16,43,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,254,167,64,26,19,8,222,2,16,44,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,42,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,154,163,64,26,19,8,222,2,16,46,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,167,64,26,19,8,222,2,16,47,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,45,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,118,163,64,26,19,8,222,2,16,49,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,230,167,64,26,19,8,222,2,16,50,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,48,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,210,167,64,26,19,8,222,2,16,53,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,90,163,64,26,19,8,222,2,16,52,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,51,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,66,163,64,26,19,8,222,2,16,55,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,178,167,64,26,19,8,222,2,16,56,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,54,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,42,163,64,26,19,8,222,2,16,58,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,128,167,64,26,19,8,222,2,16,59,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,57,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,163,64,26,19,8,222,2,16,61,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,120,167,64,26,19,8,222,2,16,62,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,60,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,163,64,26,19,8,222,2,16,64,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,60,167,64,26,19,8,222,2,16,65,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,63,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,218,163,64,26,19,8,222,2,16,67,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,166,64,26,19,8,222,2,16,68,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,66,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,90,164,64,26,19,8,222,2,16,70,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,82,166,64,26,19,8,222,2,16,71,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,69,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,164,64,26,19,8,222,2,16,73,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,226,166,64,26,19,8,222,2,16,74,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,72,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,56,167,64,26,19,8,222,2,16,77,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,202,164,64,26,19,8,222,2,16,76,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,75,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,164,64,26,19,8,222,2,16,79,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,156,167,64,26,19,8,222,2,16,80,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,78,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,164,64,26,19,8,222,2,16,82,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,172,167,64,26,19,8,222,2,16,83,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,81,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,164,64,26,19,8,222,2,16,85,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,204,167,64,26,19,8,222,2,16,86,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,84,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,164,64,26,19,8,222,2,16,88,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,242,167,64,26,19,8,222,2,16,89,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,87,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,58,164,64,26,19,8,222,2,16,91,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,18,168,64,26,19,8,222,2,16,92,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,90,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,164,64,26,19,8,222,2,16,94,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,30,168,64,26,19,8,222,2,16,95,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,93,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,206,163,64,26,19,8,222,2,16,97,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,168,64,26,19,8,222,2,16,98,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,96,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,163,64,26,19,8,222,2,16,100,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,28,168,64,26,19,8,222,2,16,101,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,99,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,118,163,64,26,19,8,222,2,16,103,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,12,168,64,26,19,8,222,2,16,104,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,102,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,76,163,64,26,19,8,222,2,16,106,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,248,167,64,26,19,8,222,2,16,107,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,105,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,163,64,26,19,8,222,2,16,109,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,228,167,64,26,19,8,222,2,16,110,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,108,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,180,167,64,26,19,8,222,2,16,113,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,163,64,26,19,8,222,2,16,112,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,111,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,163,64,26,19,8,222,2,16,115,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,160,167,64,26,19,8,222,2,16,116,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,114,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,114,163,64,26,19,8,222,2,16,118,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,86,167,64,26,19,8,222,2,16,119,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,117,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,163,64,26,19,8,222,2,16,121,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,167,64,26,19,8,222,2,16,122,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,120,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,164,64,26,19,8,222,2,16,124,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,116,166,64,26,19,8,222,2,16,125,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,123,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,164,64,26,19,8,222,2,16,127,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,70,166,64,26,20,8,222,2,16,128,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,126,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,164,64,26,20,8,222,2,16,130,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,112,166,64,26,20,8,222,2,16,131,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,129,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,254,163,64,26,20,8,222,2,16,133,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,198,166,64,26,20,8,222,2,16,134,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,132,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,150,163,64,26,20,8,222,2,16,136,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,40,167,64,26,20,8,222,2,16,137,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,135,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,163,64,26,20,8,222,2,16,139,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,94,167,64,26,20,8,222,2,16,140,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,138,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,88,167,64,26,20,8,222,2,16,143,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,163,64,26,20,8,222,2,16,142,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,141,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,163,64,26,20,8,222,2,16,145,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,72,167,64,26,20,8,222,2,16,146,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,144,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,163,64,26,20,8,222,2,16,148,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,36,167,64,26,20,8,222,2,16,149,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,147,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,26,166,64,26,20,8,222,2,16,152,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,164,64,26,20,8,222,2,16,151,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,150,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,154,164,64,26,20,8,222,2,16,154,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,244,165,64,26,20,8,222,2,16,155,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,153,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,164,64,26,20,8,222,2,16,157,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,76,166,64,26,20,8,222,2,16,158,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,156,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,94,163,64,26,20,8,222,2,16,160,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,64,167,64,26,20,8,222,2,16,161,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,159,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,26,163,64,26,20,8,222,2,16,163,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,150,167,64,26,20,8,222,2,16,164,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,162,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,200,163,64,26,20,8,222,2,16,166,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,246,166,64,26,20,8,222,2,16,167,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,165,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,0,164,64,26,20,8,222,2,16,169,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,186,166,64,26,20,8,222,2,16,170,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,168,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,6,164,64,26,20,8,222,2,16,172,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,182,166,64,26,20,8,222,2,16,173,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,171,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,163,64,26,20,8,222,2,16,175,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,90,167,64,26,20,8,222,2,16,176,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,174,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,164,64,26,20,8,222,2,16,178,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,138,166,64,26,20,8,222,2,16,179,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,177,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,58,164,64,26,20,8,222,2,16,181,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,156,166,64,26,20,8,222,2,16,182,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,180,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,154,163,64,26,20,8,222,2,16,184,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,44,167,64,26,20,8,222,2,16,185,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,183,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,20,164,64,26,20,8,222,2,16,187,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,0,174,166,64,26,20,8,222,2,16,188,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,20,8,222,2,16,186,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,5,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,222,2,16,2,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,52,52,52,57,51,26,19,8,222,2,16,3,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,222,2,16,4,26,12,99,70,121,201,152,207,109,6,237,70,104,174,18,19,8,222,2,16,1,26,12,99,70,121,201,152,207,109,6,237,70,104,174,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,214,2,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,214,2,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,137,64,26,19,8,214,2,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,24,81,112,192,26,19,8,214,2,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,214,2,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,138,64,26,19,8,214,2,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,66,98,192,26,19,8,214,2,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,214,2,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,214,2,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,214,2,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,214,2,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,213,73,18,210,73,10,207,73,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,214,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,214,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,214,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,173,72,10,6,112,111,105,110,116,115,18,162,72,18,159,72,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,95,9,120,8,39,160,64,26,19,8,214,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,243,162,39,14,161,225,160,64,26,19,8,214,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,195,74,198,130,227,159,64,26,19,8,214,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,47,109,73,73,48,9,160,64,26,19,8,214,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,105,67,231,168,43,234,159,64,26,19,8,214,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,52,110,15,206,208,110,158,64,26,19,8,214,2,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,119,194,188,80,38,254,159,64,26,19,8,214,2,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,100,118,42,202,169,193,157,64,26,19,8,214,2,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,242,125,126,139,212,33,157,64,26,19,8,214,2,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,169,223,108,149,95,32,160,64,26,19,8,214,2,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,221,80,170,166,85,160,64,26,19,8,214,2,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,175,228,202,47,0,189,160,64,26,19,8,214,2,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,221,80,170,166,85,160,64,26,19,8,214,2,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,142,108,130,14,130,22,160,64,26,19,8,214,2,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,47,227,116,201,231,87,159,64,26,19,8,214,2,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,50,92,38,82,161,105,160,64,26,19,8,214,2,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,218,52,191,237,138,160,64,26,19,8,214,2,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,14,107,44,168,105,177,158,64,26,19,8,214,2,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,88,124,241,139,185,160,64,26,19,8,214,2,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,251,113,185,46,230,30,158,64,26,19,8,214,2,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,95,150,117,178,213,228,160,64,26,19,8,214,2,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,180,246,141,231,0,187,157,64,26,19,8,214,2,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,43,20,189,228,115,19,161,64,26,19,8,214,2,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,138,121,13,240,16,127,157,64,26,19,8,214,2,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,142,33,241,170,132,161,64,26,19,8,214,2,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,29,251,254,130,196,93,157,64,26,19,8,214,2,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,152,248,226,151,11,147,157,64,26,19,8,214,2,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,116,76,183,148,157,182,161,64,26,19,8,214,2,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,225,202,197,1,234,215,161,64,26,19,8,214,2,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,209,244,56,55,246,226,157,64,26,19,8,214,2,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,213,8,191,194,51,3,162,64,26,19,8,214,2,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,14,107,44,168,105,177,158,64,26,19,8,214,2,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,92,200,169,22,49,13,162,64,26,19,8,214,2,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,236,225,230,83,139,114,159,64,26,19,8,214,2,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,213,8,191,194,51,3,162,64,26,19,8,214,2,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,37,222,60,243,117,194,159,64,26,19,8,214,2,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,11,219,173,236,205,161,64,26,19,8,214,2,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,21,44,109,98,127,32,160,64,26,19,8,214,2,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,11,162,232,154,192,161,64,26,19,8,214,2,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,156,235,87,182,124,42,160,64,26,19,8,214,2,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,75,107,244,152,37,49,160,64,26,19,8,214,2,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,156,12,105,35,73,179,161,64,26,19,8,214,2,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,7,206,168,39,81,149,161,64,26,19,8,214,2,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,75,107,244,152,37,49,160,64,26,19,8,214,2,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,77,69,10,250,155,161,64,26,19,8,214,2,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,246,230,30,42,253,7,159,64,26,19,8,214,2,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,242,108,129,88,116,137,158,64,26,19,8,214,2,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,116,76,183,148,157,182,161,64,26,19,8,214,2,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,137,233,26,57,239,161,64,26,19,8,214,2,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,142,243,170,193,153,253,157,64,26,19,8,214,2,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,12,72,70,249,217,19,162,64,26,19,8,214,2,16,82,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,194,117,99,143,251,206,157,64,26,19,8,214,2,16,83,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,81,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,134,63,186,35,63,162,64,26,19,8,214,2,16,85,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,194,117,99,143,251,206,157,64,26,19,8,214,2,16,86,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,84,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,195,56,123,109,106,162,64,26,19,8,214,2,16,88,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,90,113,242,243,55,44,158,64,26,19,8,214,2,16,89,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,87,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,42,3,192,177,19,123,162,64,26,19,8,214,2,16,91,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,147,109,72,147,34,124,158,64,26,19,8,214,2,16,92,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,90,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,177,194,170,5,17,133,162,64,26,19,8,214,2,16,94,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,42,105,215,247,94,217,158,64,26,19,8,214,2,16,95,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,93,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,241,6,106,18,41,43,162,64,26,19,8,214,2,16,97,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,166,119,184,63,6,167,157,64,26,19,8,214,2,16,98,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,96,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,65,185,114,93,166,162,64,26,19,8,214,2,16,100,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,119,128,154,118,141,236,156,64,26,19,8,214,2,16,101,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,99,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,4,0,221,139,172,189,162,64,26,19,8,214,2,16,103,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,52,127,12,1,49,7,157,64,26,19,8,214,2,16,104,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,102,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,126,235,248,248,222,162,64,26,19,8,214,2,16,106,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,204,122,155,101,109,100,157,64,26,19,8,214,2,16,107,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,105,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,208,125,36,190,74,236,162,64,26,19,8,214,2,16,109,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,247,247,27,93,93,160,157,64,26,19,8,214,2,16,110,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,108,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,127,253,192,160,243,242,162,64,26,19,8,214,2,16,112,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,90,113,242,243,55,44,158,64,26,19,8,214,2,16,113,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,111,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,213,110,214,8,127,97,158,64,26,19,8,214,2,16,116,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,154,62,157,135,164,219,162,64,26,19,8,214,2,16,115,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,114,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,52,110,15,206,208,110,158,64,26,19,8,214,2,16,119,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,165,0,164,198,90,176,162,64,26,19,8,214,2,16,118,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,117,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,254,78,22,80,216,162,64,26,19,8,214,2,16,121,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,85,247,84,34,175,173,157,64,26,19,8,214,2,16,122,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,120,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,247,84,34,175,173,157,64,26,19,8,214,2,16,125,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,33,254,135,219,161,229,162,64,26,19,8,214,2,16,124,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,123,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,222,252,249,101,69,0,163,64,26,19,8,214,2,16,127,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,100,118,42,202,169,193,157,64,26,20,8,214,2,16,128,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,126,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,156,251,107,240,232,26,163,64,26,20,8,214,2,16,130,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,223,115,14,223,240,246,157,64,26,20,8,214,2,16,131,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,129,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,122,65,152,227,46,163,64,26,20,8,214,2,16,133,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,104,240,199,155,50,64,158,64,26,20,8,214,2,16,134,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,132,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,184,249,22,64,222,66,163,64,26,20,8,214,2,16,136,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,151,231,229,100,171,250,158,64,26,20,8,214,2,16,137,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,135,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,47,125,93,131,156,249,162,64,26,20,8,214,2,16,139,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,190,251,197,189,114,80,157,64,26,20,8,214,2,16,140,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,138,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,122,65,152,227,46,163,64,26,20,8,214,2,16,142,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,171,2,83,68,239,189,156,64,26,20,8,214,2,16,143,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,141,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,104,121,179,34,135,73,163,64,26,20,8,214,2,16,145,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,143,4,168,244,249,149,156,64,26,20,8,214,2,16,146,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,144,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,37,120,37,173,42,100,163,64,26,20,8,214,2,16,148,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,48,5,111,47,168,136,156,64,26,20,8,214,2,16,149,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,147,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,55,73,198,121,123,163,64,26,20,8,214,2,16,151,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,223,132,11,18,81,143,156,64,26,20,8,214,2,16,152,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,150,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,25,182,30,110,116,143,163,64,26,20,8,214,2,16,154,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,76,3,26,127,157,176,156,64,26,20,8,214,2,16,155,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,153,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,40,53,244,21,111,163,163,64,26,20,8,214,2,16,157,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,38,0,55,89,54,243,156,64,26,20,8,214,2,16,158,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,156,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,94,116,123,76,21,180,163,64,26,20,8,214,2,16,160,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,190,251,197,189,114,80,157,64,26,20,8,214,2,16,161,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,159,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,229,51,102,160,18,190,163,64,26,20,8,214,2,16,163,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,180,246,141,231,0,187,157,64,26,20,8,214,2,16,164,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,162,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,189,115,180,17,103,193,163,64,26,20,8,214,2,16,166,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,9,241,142,214,224,50,158,64,26,20,8,214,2,16,167,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,165,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,229,51,102,160,18,190,163,64,26,20,8,214,2,16,169,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,137,104,16,189,176,230,158,64,26,20,8,214,2,16,170,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,168,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,134,52,45,219,192,176,163,64,26,20,8,214,2,16,172,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,180,229,144,180,160,34,159,64,26,20,8,214,2,16,173,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,171,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,55,73,198,121,123,163,64,26,20,8,214,2,16,175,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,9,224,145,163,128,154,159,64,26,20,8,214,2,16,176,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,174,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,118,94,160,16,205,187,159,64,26,20,8,214,2,16,179,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,198,120,236,231,216,86,163,64,26,20,8,214,2,16,178,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,177,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,196,187,29,127,148,23,163,64,26,20,8,214,2,16,181,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,37,222,60,243,117,194,159,64,26,20,8,214,2,16,182,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,180,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,198,222,3,46,36,181,159,64,26,20,8,214,2,16,185,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,142,124,150,72,238,6,163,64,26,20,8,214,2,16,184,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,183,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,168,189,114,47,159,239,162,64,26,20,8,214,2,16,187,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,251,96,188,251,133,134,159,64,26,20,8,214,2,16,188,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,186,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,33,100,159,33,237,67,159,64,26,20,8,214,2,16,191,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,33,254,135,219,161,229,162,64,26,20,8,214,2,16,190,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,189,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,73,190,57,106,77,226,162,64,26,20,8,214,2,16,193,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,109,106,101,109,187,190,158,64,26,20,8,214,2,16,194,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,192,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,222,252,249,101,69,0,163,64,26,20,8,214,2,16,196,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,9,241,142,214,224,50,158,64,26,20,8,214,2,16,197,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,195,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,75,123,8,211,145,33,163,64,26,20,8,214,2,16,199,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,128,116,213,25,159,233,157,64,26,20,8,214,2,16,200,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,198,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,118,248,136,202,129,93,163,64,26,20,8,214,2,16,202,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,71,120,127,122,180,153,157,64,26,20,8,214,2,16,203,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,201,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,201,53,187,80,29,150,163,64,26,20,8,214,2,16,205,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,138,121,13,240,16,127,157,64,26,20,8,214,2,16,206,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,204,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,163,50,216,42,182,216,163,64,26,20,8,214,2,16,208,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,138,121,13,240,16,127,157,64,26,20,8,214,2,16,209,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,207,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,42,242,194,126,179,226,163,64,26,20,8,214,2,16,211,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,57,249,169,210,185,133,157,64,26,20,8,214,2,16,212,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,210,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,71,120,127,122,180,153,157,64,26,20,8,214,2,16,215,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,137,241,251,67,5,240,163,64,26,20,8,214,2,16,214,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,213,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,151,112,209,235,255,3,164,64,26,20,8,214,2,16,217,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,114,245,255,113,164,213,157,64,26,20,8,214,2,16,218,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,216,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,231,240,52,9,87,253,163,64,26,20,8,214,2,16,220,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,62,115,71,164,66,4,158,64,26,20,8,214,2,16,221,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,219,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,137,241,251,67,5,240,163,64,26,20,8,214,2,16,223,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,251,113,185,46,230,30,158,64,26,20,8,214,2,16,224,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,222,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,243,178,59,72,13,210,163,64,26,20,8,214,2,16,226,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,104,240,199,155,50,64,158,64,26,20,8,214,2,16,227,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,225,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,134,52,45,219,192,176,163,64,26,20,8,214,2,16,229,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,213,110,214,8,127,97,158,64,26,20,8,214,2,16,230,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,228,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,146,246,51,26,119,133,163,64,26,20,8,214,2,16,232,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,227,237,171,176,121,117,158,64,26,20,8,214,2,16,233,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,231,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,51,247,250,84,37,120,163,64,26,20,8,214,2,16,235,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,52,110,15,206,208,110,158,64,26,20,8,214,2,16,236,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,234,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,227,118,151,55,206,126,163,64,26,20,8,214,2,16,238,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,90,113,242,243,55,44,158,64,26,20,8,214,2,16,239,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,237,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,66,118,208,252,31,140,163,64,26,20,8,214,2,16,241,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,156,114,128,105,148,17,158,64,26,20,8,214,2,16,242,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,240,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,223,115,14,223,240,246,157,64,26,20,8,214,2,16,245,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,120,18,36,26,34,8,4,18,8,80,245,165,164,26,160,163,64,26,20,8,214,2,16,244,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,243,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,189,115,180,17,103,193,163,64,26,20,8,214,2,16,247,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,128,116,213,25,159,233,157,64,26,20,8,214,2,16,248,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,246,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,215,180,144,248,23,170,163,64,26,20,8,214,2,16,250,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,41,10,1,121,18,36,26,34,8,4,18,8,237,242,227,134,235,10,158,64,26,20,8,214,2,16,251,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,20,8,214,2,16,249,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,214,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,216,2,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,216,2,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,216,2,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,137,64,26,19,8,216,2,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,2,96,192,26,19,8,216,2,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,216,2,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,138,64,26,19,8,216,2,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,162,97,192,26,19,8,216,2,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,216,2,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,139,64,26,19,8,216,2,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,194,99,192,26,19,8,216,2,16,14,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,216,2,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,139,64,26,19,8,216,2,16,16,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,98,100,192,26,19,8,216,2,16,17,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,216,2,16,15,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,140,64,26,19,8,216,2,16,19,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,226,100,192,26,19,8,216,2,16,20,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,216,2,16,18,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,216,2,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,216,2,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,178,9,18,175,9,10,172,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,217,2,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,217,2,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,217,2,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,139,64,26,19,8,217,2,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,95,192,26,19,8,217,2,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,2,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,139,64,26,19,8,217,2,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,196,93,192,26,19,8,217,2,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,2,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,139,64,26,19,8,217,2,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,68,92,192,26,19,8,217,2,16,14,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,2,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,139,64,26,19,8,217,2,16,16,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,92,192,26,19,8,217,2,16,17,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,2,16,15,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,139,64,26,19,8,217,2,16,19,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,196,92,192,26,19,8,217,2,16,20,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,2,16,18,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,140,64,26,19,8,217,2,16,22,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,34,97,192,26,19,8,217,2,16,23,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,2,16,21,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,139,64,26,19,8,217,2,16,25,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,162,98,192,26,19,8,217,2,16,26,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,2,16,24,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,176,139,64,26,19,8,217,2,16,28,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,66,98,192,26,19,8,217,2,16,29,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,2,16,27,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,139,64,26,19,8,217,2,16,31,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,196,95,192,26,19,8,217,2,16,32,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,2,16,30,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,2,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,2,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,218,2,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,218,2,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,218,2,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,167,142,91,18,156,97,150,64,26,19,8,218,2,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,120,18,35,26,33,8,4,18,8,20,143,180,162,132,48,151,64,26,19,8,218,2,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,218,2,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,192,201,233,218,41,151,64,26,19,8,218,2,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,167,142,91,18,156,97,150,64,26,19,8,218,2,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,218,2,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,192,201,233,218,41,151,64,26,19,8,218,2,16,13,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,243,186,101,20,88,65,152,64,26,19,8,218,2,16,14,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,218,2,16,12,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,218,2,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,218,2,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,219,2,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,219,2,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,219,2,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,140,64,26,19,8,219,2,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,68,92,192,26,19,8,219,2,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,219,2,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,140,64,26,19,8,219,2,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,196,89,192,26,19,8,219,2,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,219,2,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,219,2,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,219,2,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,219,2,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,192,201,233,218,41,151,64,26,19,8,219,2,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,230,8,100,105,99,241,151,64,26,19,8,219,2,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,219,2,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,195,123,121,84,132,152,64,26,19,8,219,2,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,134,244,55,48,194,174,151,64,26,19,8,219,2,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,219,2,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,219,2,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,219,2,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,219,2,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,219,2,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,221,2,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,221,2,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,221,2,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,195,123,121,84,132,152,64,26,19,8,221,2,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,161,181,218,188,161,57,150,64,26,19,8,221,2,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,221,2,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,195,123,121,84,132,152,64,26,19,8,221,2,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,35,197,251,176,168,98,152,64,26,19,8,221,2,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,221,2,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,221,2,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,221,2,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,222,2,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,222,2,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,222,2,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,137,64,26,19,8,222,2,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,196,81,192,26,19,8,222,2,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,222,2,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,138,64,26,19,8,222,2,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,68,88,192,26,19,8,222,2,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,222,2,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,141,64,26,19,8,222,2,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,94,192,26,19,8,222,2,16,14,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,222,2,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,222,2,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,222,2,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,222,26,18,219,26,10,216,26,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,223,2,16,2,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,48,99,101,53,54,26,19,8,223,2,16,3,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,223,2,16,4,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,182,25,10,6,112,111,105,110,116,115,18,171,25,18,168,25,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,233,0,0,37,56,76,153,64,26,19,8,223,2,16,7,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,89,168,18,163,243,171,152,64,26,19,8,223,2,16,8,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,6,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,233,0,0,37,56,76,153,64,26,19,8,223,2,16,10,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,196,13,111,174,253,10,150,64,26,19,8,223,2,16,11,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,9,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,191,207,234,221,225,82,153,64,26,19,8,223,2,16,13,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,65,161,174,131,0,247,149,64,26,19,8,223,2,16,14,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,12,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,108,109,192,79,53,96,153,64,26,19,8,223,2,16,16,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,190,52,238,88,3,227,149,64,26,19,8,223,2,16,17,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,15,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,21,44,94,217,142,153,64,26,19,8,223,2,16,19,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,142,42,88,188,178,193,149,64,26,19,8,223,2,16,20,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,18,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,252,139,130,37,39,196,153,64,26,19,8,223,2,16,22,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,225,140,130,74,95,180,149,64,26,19,8,223,2,16,23,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,21,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,152,92,70,166,13,120,154,64,26,19,8,223,2,16,25,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,11,190,151,145,181,173,149,64,26,19,8,223,2,16,26,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,24,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,117,4,178,180,177,166,154,64,26,19,8,223,2,16,28,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,184,91,109,3,9,187,149,64,26,19,8,223,2,16,29,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,27,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,123,8,124,255,219,154,64,26,19,8,223,2,16,31,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,148,3,217,17,173,233,149,64,26,19,8,223,2,16,32,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,30,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,214,24,222,237,82,233,154,64,26,19,8,223,2,16,34,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,119,132,197,117,75,64,150,64,26,19,8,223,2,16,35,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,33,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,123,8,124,255,219,154,64,26,19,8,223,2,16,37,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,90,5,178,217,233,150,150,64,26,19,8,223,2,16,38,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,36,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,35,162,135,38,5,180,154,64,26,19,8,223,2,16,40,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,20,85,137,246,49,244,150,64,26,19,8,223,2,16,41,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,39,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,242,151,241,137,180,146,154,64,26,19,8,223,2,16,43,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,240,252,244,4,214,34,151,64,26,19,8,223,2,16,44,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,42,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,240,133,123,16,100,154,64,26,19,8,223,2,16,46,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,247,213,117,90,208,74,151,64,26,19,8,223,2,16,47,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,45,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,80,17,33,62,119,101,151,64,26,19,8,223,2,16,50,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,120,18,35,26,33,8,4,18,8,246,178,1,208,44,156,153,64,26,19,8,223,2,16,49,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,48,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,92,160,174,94,200,6,154,64,26,19,8,223,2,16,52,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,205,164,96,19,122,81,151,64,26,19,8,223,2,16,53,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,51,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,123,8,124,255,219,154,64,26,19,8,223,2,16,55,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,247,213,117,90,208,74,151,64,26,19,8,223,2,16,56,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,54,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,55,160,195,68,77,155,64,26,19,8,223,2,16,58,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,38,224,11,247,32,108,151,64,26,19,8,223,2,16,59,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,57,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,239,124,225,67,60,137,155,64,26,19,8,223,2,16,61,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,45,185,140,76,27,148,151,64,26,19,8,223,2,16,62,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,60,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,72,184,140,39,227,163,155,64,26,19,8,223,2,16,64,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,9,97,248,90,191,194,151,64,26,19,8,223,2,16,65,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,63,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,135,119,224,140,170,155,64,26,19,8,223,2,16,67,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,141,205,184,133,188,214,151,64,26,19,8,223,2,16,68,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,66,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,72,184,140,39,227,163,155,64,26,19,8,223,2,16,70,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,243,186,101,20,88,65,152,64,26,19,8,223,2,16,71,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,69,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,174,246,138,146,130,155,64,26,19,8,223,2,16,73,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,124,0,167,148,79,125,152,64,26,19,8,223,2,16,74,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,72,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,60,6,139,124,238,83,155,64,26,19,8,223,2,16,76,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,47,119,253,91,157,178,152,64,26,19,8,223,2,16,77,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,75,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,54,80,126,177,151,218,152,64,26,19,8,223,2,16,80,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,120,18,35,26,33,8,4,18,8,137,143,52,181,160,30,155,64,26,19,8,223,2,16,79,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,78,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,63,93,152,88,193,154,64,26,19,8,223,2,16,82,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,143,139,41,149,62,245,152,64,26,19,8,223,2,16,83,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,81,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,98,121,47,180,194,46,154,64,26,19,8,223,2,16,85,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,185,188,62,220,148,238,152,64,26,19,8,223,2,16,86,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,84,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,210,90,109,222,208,202,153,64,26,19,8,223,2,16,88,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,220,20,211,205,240,191,152,64,26,19,8,223,2,16,89,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,87,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,228,22,23,131,149,153,64,26,19,8,223,2,16,91,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,40,10,1,121,18,35,26,33,8,4,18,8,214,59,82,120,246,151,152,64,26,19,8,223,2,16,92,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,90,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,5,26,12,99,70,121,199,152,207,109,6,237,70,101,71,18,19,8,223,2,16,1,26,12,99,70,121,199,152,207,109,6,237,70,101,71,10,161,10,18,158,10,10,155,10,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,139,64,26,19,8,224,2,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,88,192,26,19,8,224,2,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,224,2,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,139,64,26,19,8,224,2,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,82,192,26,19,8,224,2,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,224,2,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,139,64,26,19,8,224,2,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,68,81,192,26,19,8,224,2,16,14,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,224,2,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,141,64,26,19,8,224,2,16,16,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,68,81,192,26,19,8,224,2,16,17,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,224,2,16,15,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,141,64,26,19,8,224,2,16,19,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,84,192,26,19,8,224,2,16,20,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,224,2,16,18,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,140,64,26,19,8,224,2,16,22,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,86,192,26,19,8,224,2,16,23,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,224,2,16,21,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,140,64,26,19,8,224,2,16,25,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,68,88,192,26,19,8,224,2,16,26,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,224,2,16,24,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,140,64,26,19,8,224,2,16,28,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,89,192,26,19,8,224,2,16,29,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,224,2,16,27,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,40,140,64,26,19,8,224,2,16,31,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,89,192,26,19,8,224,2,16,32,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,224,2,16,30,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,139,64,26,19,8,224,2,16,34,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,88,192,26,19,8,224,2,16,35,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,224,2,16,33,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,224,2,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,224,2,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,224,2,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,224,2,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,224,2,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,153,17,18,150,17,10,147,17,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,224,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,241,15,10,6,112,111,105,110,116,115,18,230,15,18,227,15,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,129,147,64,26,19,8,224,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,174,161,64,26,19,8,224,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,155,147,64,26,19,8,224,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,158,161,64,26,19,8,224,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,189,147,64,26,19,8,224,2,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,154,161,64,26,19,8,224,2,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,6,148,64,26,19,8,224,2,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,158,161,64,26,19,8,224,2,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,174,161,64,26,19,8,224,2,16,20,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,66,148,64,26,19,8,224,2,16,19,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,18,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,86,148,64,26,19,8,224,2,16,22,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,218,161,64,26,19,8,224,2,16,23,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,21,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,79,148,64,26,19,8,224,2,16,25,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,238,161,64,26,19,8,224,2,16,26,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,24,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,148,64,26,19,8,224,2,16,28,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,22,162,64,26,19,8,224,2,16,29,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,27,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,26,148,64,26,19,8,224,2,16,31,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,45,162,64,26,19,8,224,2,16,32,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,30,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,249,147,64,26,19,8,224,2,16,34,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,55,162,64,26,19,8,224,2,16,35,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,33,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,48,162,64,26,19,8,224,2,16,38,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,209,147,64,26,19,8,224,2,16,37,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,36,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,32,162,64,26,19,8,224,2,16,41,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,169,147,64,26,19,8,224,2,16,40,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,39,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,115,147,64,26,19,8,224,2,16,43,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,231,161,64,26,19,8,224,2,16,44,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,42,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,109,147,64,26,19,8,224,2,16,46,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,201,161,64,26,19,8,224,2,16,47,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,45,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,174,161,64,26,19,8,224,2,16,50,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,115,147,64,26,19,8,224,2,16,49,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,48,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,155,147,64,26,19,8,224,2,16,52,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,144,161,64,26,19,8,224,2,16,53,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,51,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,144,161,64,26,19,8,224,2,16,56,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,202,147,64,26,19,8,224,2,16,55,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,54,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,222,147,64,26,19,8,224,2,16,58,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,154,161,64,26,19,8,224,2,16,59,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,57,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,224,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,224,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,224,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,225,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,225,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,225,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,153,148,64,26,19,8,225,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,111,161,64,26,19,8,225,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,225,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,199,148,64,26,19,8,225,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,238,161,64,26,19,8,225,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,225,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,213,148,64,26,19,8,225,2,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,52,162,64,26,19,8,225,2,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,225,2,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,28,162,64,26,19,8,225,2,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,206,148,64,26,19,8,225,2,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,225,2,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,225,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,225,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,227,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,227,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,227,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,154,161,64,26,19,8,227,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,179,148,64,26,19,8,227,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,227,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,37,149,64,26,19,8,227,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,154,161,64,26,19,8,227,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,227,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,43,149,64,26,19,8,227,2,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,161,161,64,26,19,8,227,2,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,227,2,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,227,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,227,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,228,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,228,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,228,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,173,148,64,26,19,8,228,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,201,161,64,26,19,8,228,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,228,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,110,149,64,26,19,8,228,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,198,161,64,26,19,8,228,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,228,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,228,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,228,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,161,10,18,158,10,10,155,10,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,229,2,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,142,64,26,19,8,229,2,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,194,104,192,26,19,8,229,2,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,229,2,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,142,64,26,19,8,229,2,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,162,102,192,26,19,8,229,2,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,229,2,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,142,64,26,19,8,229,2,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,196,93,192,26,19,8,229,2,16,14,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,229,2,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,142,64,26,19,8,229,2,16,16,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,196,90,192,26,19,8,229,2,16,17,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,229,2,16,15,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,144,64,26,19,8,229,2,16,19,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,68,92,192,26,19,8,229,2,16,20,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,229,2,16,18,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,120,144,64,26,19,8,229,2,16,22,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,196,93,192,26,19,8,229,2,16,23,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,229,2,16,21,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,144,64,26,19,8,229,2,16,25,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,132,94,192,26,19,8,229,2,16,26,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,229,2,16,24,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,144,64,26,19,8,229,2,16,28,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,34,99,192,26,19,8,229,2,16,29,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,229,2,16,27,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,34,103,192,26,19,8,229,2,16,32,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,143,64,26,19,8,229,2,16,31,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,229,2,16,30,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,142,64,26,19,8,229,2,16,34,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,162,106,192,26,19,8,229,2,16,35,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,229,2,16,33,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,229,2,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,229,2,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,229,2,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,229,2,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,178,9,18,175,9,10,172,9,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,229,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,53,148,64,26,19,8,229,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,75,162,64,26,19,8,229,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,229,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,79,148,64,26,19,8,229,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,68,162,64,26,19,8,229,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,229,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,50,149,64,26,19,8,229,2,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,62,162,64,26,19,8,229,2,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,229,2,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,77,149,64,26,19,8,229,2,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,55,162,64,26,19,8,229,2,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,229,2,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,103,149,64,26,19,8,229,2,16,19,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,55,162,64,26,19,8,229,2,16,20,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,229,2,16,18,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,130,149,64,26,19,8,229,2,16,22,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,62,162,64,26,19,8,229,2,16,23,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,229,2,16,21,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,117,149,64,26,19,8,229,2,16,25,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,128,162,64,26,19,8,229,2,16,26,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,229,2,16,24,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,117,149,64,26,19,8,229,2,16,28,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,162,162,64,26,19,8,229,2,16,29,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,229,2,16,27,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,123,149,64,26,19,8,229,2,16,31,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,162,162,64,26,19,8,229,2,16,32,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,229,2,16,30,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,229,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,229,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,229,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,229,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,231,2,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,231,2,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,231,2,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,24,142,64,26,19,8,231,2,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,2,100,192,26,19,8,231,2,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,231,2,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,142,64,26,19,8,231,2,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,66,99,192,26,19,8,231,2,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,231,2,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,143,64,26,19,8,231,2,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,66,99,192,26,19,8,231,2,16,14,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,231,2,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,143,64,26,19,8,231,2,16,16,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,226,99,192,26,19,8,231,2,16,17,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,231,2,16,15,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,231,2,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,231,2,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,161,10,18,158,10,10,155,10,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,56,101,98,56,26,19,8,231,2,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,231,2,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,33,75,55,241,155,1,166,64,26,19,8,231,2,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,208,148,168,173,111,114,161,64,26,19,8,231,2,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,2,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,160,58,165,16,218,165,64,26,19,8,231,2,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,208,148,168,173,111,114,161,64,26,19,8,231,2,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,2,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,30,188,146,144,28,185,165,64,26,19,8,231,2,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,244,77,81,239,128,137,161,64,26,19,8,231,2,16,14,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,2,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,45,233,33,238,171,165,64,26,19,8,231,2,16,16,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,233,63,165,249,250,153,161,64,26,19,8,231,2,16,17,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,2,16,15,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,38,164,74,135,151,216,161,64,26,19,8,231,2,16,20,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,11,47,223,5,144,34,166,64,26,19,8,231,2,16,19,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,2,16,18,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,47,223,5,144,34,166,64,26,19,8,231,2,16,22,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,118,149,163,159,192,173,161,64,26,19,8,231,2,16,23,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,2,16,21,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,103,138,206,248,27,166,64,26,19,8,231,2,16,25,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,129,163,79,149,70,157,161,64,26,19,8,231,2,16,26,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,2,16,24,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,127,217,224,95,202,14,166,64,26,19,8,231,2,16,28,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,93,234,166,83,53,134,161,64,26,19,8,231,2,16,29,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,2,16,27,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,138,231,140,85,80,254,165,64,26,19,8,231,2,16,31,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,255,91,253,228,6,121,161,64,26,19,8,231,2,16,32,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,2,16,30,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,91,32,56,30,185,247,165,64,26,19,8,231,2,16,34,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,255,91,253,228,6,121,161,64,26,19,8,231,2,16,35,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,2,16,33,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,2,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,231,2,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,231,2,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,229,6,18,226,6,10,223,6,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,231,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,131,161,64,26,19,8,231,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,157,149,64,26,19,8,231,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,231,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,183,149,64,26,19,8,231,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,128,161,64,26,19,8,231,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,231,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,121,150,64,26,19,8,231,2,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,144,161,64,26,19,8,231,2,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,231,2,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,121,150,64,26,19,8,231,2,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,158,161,64,26,19,8,231,2,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,231,2,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,61,150,64,26,19,8,231,2,16,19,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,244,161,64,26,19,8,231,2,16,20,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,231,2,16,18,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,61,150,64,26,19,8,231,2,16,22,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,254,161,64,26,19,8,231,2,16,23,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,231,2,16,21,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,231,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,231,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,231,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,231,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,232,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,232,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,232,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,194,150,64,26,19,8,232,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,151,161,64,26,19,8,232,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,232,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,234,150,64,26,19,8,232,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,221,161,64,26,19,8,232,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,232,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,227,150,64,26,19,8,232,2,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,218,161,64,26,19,8,232,2,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,232,2,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,232,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,232,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,234,2,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,234,2,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,234,2,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,144,64,26,19,8,234,2,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,98,104,192,26,19,8,234,2,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,234,2,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,180,144,64,26,19,8,234,2,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,34,103,192,26,19,8,234,2,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,234,2,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,145,64,26,19,8,234,2,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,2,98,192,26,19,8,234,2,16,14,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,234,2,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,234,2,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,234,2,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,246,5,18,243,5,10,240,5,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,234,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,234,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,254,150,64,26,19,8,234,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,194,161,64,26,19,8,234,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,234,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,58,151,64,26,19,8,234,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,188,161,64,26,19,8,234,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,234,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,105,151,64,26,19,8,234,2,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,188,161,64,26,19,8,234,2,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,234,2,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,145,151,64,26,19,8,234,2,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,181,161,64,26,19,8,234,2,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,234,2,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,185,151,64,26,19,8,234,2,16,19,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,181,161,64,26,19,8,234,2,16,20,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,234,2,16,18,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,234,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,234,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,234,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,236,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,236,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,236,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,55,162,64,26,19,8,236,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,101,150,64,26,19,8,236,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,236,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,114,150,64,26,19,8,236,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,52,162,64,26,19,8,236,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,236,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,167,150,64,26,19,8,236,2,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,102,162,64,26,19,8,236,2,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,236,2,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,194,150,64,26,19,8,236,2,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,118,162,64,26,19,8,236,2,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,236,2,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,71,151,64,26,19,8,236,2,16,19,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,115,162,64,26,19,8,236,2,16,20,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,236,2,16,18,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,108,162,64,26,19,8,236,2,16,23,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,125,151,64,26,19,8,236,2,16,22,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,236,2,16,21,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,158,151,64,26,19,8,236,2,16,25,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,98,162,64,26,19,8,236,2,16,26,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,236,2,16,24,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,236,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,236,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,245,2,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,245,2,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,245,2,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,144,64,26,19,8,245,2,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,194,96,192,26,19,8,245,2,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,245,2,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,130,96,192,26,19,8,245,2,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,145,64,26,19,8,245,2,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,245,2,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,145,64,26,19,8,245,2,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,132,94,192,26,19,8,245,2,16,14,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,245,2,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,145,64,26,19,8,245,2,16,16,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,132,92,192,26,19,8,245,2,16,17,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,245,2,16,15,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,145,64,26,19,8,245,2,16,19,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,68,91,192,26,19,8,245,2,16,20,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,245,2,16,18,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,145,64,26,19,8,245,2,16,22,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,196,90,192,26,19,8,245,2,16,23,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,245,2,16,21,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,145,64,26,19,8,245,2,16,25,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,68,91,192,26,19,8,245,2,16,26,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,245,2,16,24,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,245,2,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,245,2,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,246,5,18,243,5,10,240,5,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,122,152,64,26,19,8,245,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,131,161,64,26,19,8,245,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,245,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,155,152,64,26,19,8,245,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,191,161,64,26,19,8,245,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,245,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,202,152,64,26,19,8,245,2,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,55,162,64,26,19,8,245,2,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,245,2,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,222,152,64,26,19,8,245,2,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,78,162,64,26,19,8,245,2,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,245,2,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,222,152,64,26,19,8,245,2,16,19,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,75,162,64,26,19,8,245,2,16,20,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,245,2,16,18,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,245,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,245,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,245,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,245,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,245,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,152,4,18,149,4,10,146,4,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,202,152,64,26,19,8,246,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,238,161,64,26,19,8,246,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,246,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,53,153,64,26,19,8,246,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,224,161,64,26,19,8,246,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,246,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,211,161,64,26,19,8,246,2,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,93,153,64,26,19,8,246,2,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,246,2,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,246,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,246,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,246,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,246,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,246,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,245,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,29,12,252,181,36,246,155,64,26,19,8,245,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,137,201,122,144,34,213,148,64,26,19,8,245,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,136,247,130,145,39,218,101,64,26,19,8,245,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,124,54,63,135,54,166,112,64,26,19,8,245,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,245,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,122,40,171,130,103,144,151,64,26,19,8,245,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,222,236,229,43,217,15,160,64,26,19,8,245,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,245,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,245,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,245,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,245,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,245,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,246,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,246,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,246,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,29,12,252,181,36,246,155,64,26,19,8,246,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,137,201,122,144,34,213,148,64,26,19,8,246,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,136,247,130,145,39,218,101,64,26,19,8,246,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,124,54,63,135,54,166,112,64,26,19,8,246,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,246,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,222,236,229,43,217,15,160,64,26,19,8,246,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,122,40,171,130,103,144,151,64,26,19,8,246,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,246,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,246,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,246,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,152,4,18,149,4,10,146,4,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,113,153,64,26,19,8,250,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,141,161,64,26,19,8,250,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,250,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,106,153,64,26,19,8,250,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,251,161,64,26,19,8,250,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,250,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,93,153,64,26,19,8,250,2,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,52,162,64,26,19,8,250,2,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,250,2,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,250,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,250,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,250,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,250,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,250,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,251,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,251,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,251,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,222,152,64,26,19,8,251,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,58,162,64,26,19,8,251,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,251,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,179,153,64,26,19,8,251,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,35,162,64,26,19,8,251,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,251,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,251,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,251,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,152,4,18,149,4,10,146,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,252,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,241,161,64,26,19,8,252,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,159,153,64,26,19,8,252,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,252,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,219,153,64,26,19,8,252,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,234,161,64,26,19,8,252,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,252,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,57,154,64,26,19,8,252,2,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,211,161,64,26,19,8,252,2,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,252,2,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,252,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,252,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,252,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,252,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,142,4,18,139,4,10,136,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,124,54,63,135,54,166,112,64,26,19,8,247,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,29,12,252,181,36,246,155,64,26,19,8,247,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,137,201,122,144,34,213,148,64,26,19,8,247,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,136,247,130,145,39,218,101,64,26,19,8,247,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,247,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,122,40,171,130,103,144,151,64,26,19,8,247,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,222,236,229,43,217,15,160,64,26,19,8,247,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,247,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,247,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,247,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,247,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,247,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,247,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,251,2,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,48,57,102,55,98,48,26,19,8,251,2,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,251,2,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,137,201,122,144,34,213,148,64,26,19,8,251,2,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,136,247,130,145,39,218,101,64,26,19,8,251,2,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,124,54,63,135,54,166,112,64,26,19,8,251,2,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,29,12,252,181,36,246,155,64,26,19,8,251,2,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,251,2,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,222,236,229,43,217,15,160,64,26,19,8,251,2,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,122,40,171,130,103,144,151,64,26,19,8,251,2,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,251,2,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,251,2,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,251,2,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,246,5,18,243,5,10,240,5,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,246,51,61,39,41,166,64,26,19,8,238,2,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,49,178,246,124,29,200,161,64,26,19,8,238,2,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,238,2,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,246,51,61,39,41,166,64,26,19,8,238,2,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,66,222,235,51,162,72,162,64,26,19,8,238,2,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,238,2,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,200,172,240,182,244,82,165,64,26,19,8,238,2,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,174,9,230,248,213,141,162,64,26,19,8,238,2,16,14,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,238,2,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,211,186,156,172,122,66,165,64,26,19,8,238,2,16,16,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,185,23,146,238,91,125,162,64,26,19,8,238,2,16,17,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,238,2,16,15,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,49,73,70,27,169,79,165,64,26,19,8,238,2,16,19,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,236,206,73,90,122,226,161,64,26,19,8,238,2,16,20,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,238,2,16,18,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,238,2,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,238,2,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,56,101,98,56,26,19,8,238,2,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,238,2,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,238,2,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,195,8,18,192,8,10,189,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,255,2,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,56,101,98,56,26,19,8,255,2,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,255,2,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,53,6,209,8,160,202,166,64,26,19,8,255,2,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,82,220,250,93,175,150,161,64,26,19,8,255,2,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,255,2,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,122,233,125,43,67,176,166,64,26,19,8,255,2,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,165,92,248,214,87,180,161,64,26,19,8,255,2,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,255,2,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,133,211,143,247,172,166,64,26,19,8,255,2,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,182,136,237,141,220,52,162,64,26,19,8,255,2,16,14,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,255,2,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,176,210,98,218,182,166,64,26,19,8,255,2,16,16,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,113,165,64,107,57,79,162,64,26,19,8,255,2,16,17,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,255,2,16,15,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,247,64,109,167,251,117,167,64,26,19,8,255,2,16,19,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,179,249,72,45,93,236,161,64,26,19,8,255,2,16,20,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,255,2,16,18,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,96,121,75,180,180,206,161,64,26,19,8,255,2,16,23,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,106,235,110,1,54,98,167,64,26,19,8,255,2,16,22,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,255,2,16,21,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,111,219,209,53,189,192,166,64,26,19,8,255,2,16,25,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,129,163,79,149,70,157,161,64,26,19,8,255,2,16,26,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,255,2,16,24,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,176,210,98,218,182,166,64,26,19,8,255,2,16,28,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,82,220,250,93,175,150,161,64,26,19,8,255,2,16,29,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,255,2,16,27,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,255,2,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,255,2,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,255,2,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,255,2,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,255,2,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,77,154,64,26,19,8,255,2,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,171,161,64,26,19,8,255,2,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,255,2,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,117,154,64,26,19,8,255,2,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,78,162,64,26,19,8,255,2,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,255,2,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,255,2,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,255,2,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,195,8,18,192,8,10,189,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,129,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,129,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,129,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,146,64,26,19,8,129,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,66,105,192,26,19,8,129,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,129,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,146,64,26,19,8,129,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,98,104,192,26,19,8,129,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,129,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,146,64,26,19,8,129,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,2,104,192,26,19,8,129,3,16,14,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,129,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,60,146,64,26,19,8,129,3,16,16,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,98,103,192,26,19,8,129,3,16,17,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,129,3,16,15,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,146,64,26,19,8,129,3,16,19,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,194,99,192,26,19,8,129,3,16,20,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,129,3,16,18,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,146,64,26,19,8,129,3,16,22,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,66,97,192,26,19,8,129,3,16,23,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,129,3,16,21,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,146,64,26,19,8,129,3,16,25,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,130,96,192,26,19,8,129,3,16,26,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,129,3,16,24,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,146,64,26,19,8,129,3,16,28,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,130,96,192,26,19,8,129,3,16,29,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,129,3,16,27,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,129,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,129,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,130,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,130,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,130,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,130,96,192,26,19,8,130,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,146,64,26,19,8,130,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,130,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,146,64,26,19,8,130,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,2,97,192,26,19,8,130,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,130,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,130,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,130,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,129,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,129,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,237,154,64,26,19,8,129,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,94,161,64,26,19,8,129,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,129,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,27,155,64,26,19,8,129,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,208,161,64,26,19,8,129,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,129,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,129,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,129,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,129,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,195,8,18,192,8,10,189,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,130,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,130,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,130,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,14,157,64,26,19,8,130,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,130,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,130,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,217,156,64,26,19,8,130,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,115,151,64,26,19,8,130,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,130,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,210,156,64,26,19,8,130,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,26,152,64,26,19,8,130,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,130,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,19,152,64,26,19,8,130,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,158,64,26,19,8,130,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,130,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,158,64,26,19,8,130,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,13,152,64,26,19,8,130,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,130,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,158,64,26,19,8,130,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,95,151,64,26,19,8,130,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,130,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,158,64,26,19,8,130,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,42,151,64,26,19,8,130,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,130,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,65,158,64,26,19,8,130,3,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,35,151,64,26,19,8,130,3,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,130,3,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,130,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,130,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,130,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,130,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,130,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,161,161,64,26,19,8,130,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,41,155,64,26,19,8,130,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,130,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,161,155,64,26,19,8,130,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,111,161,64,26,19,8,130,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,130,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,130,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,130,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,133,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,133,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,133,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,146,64,26,19,8,133,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,226,97,192,26,19,8,133,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,133,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,147,64,26,19,8,133,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,34,99,192,26,19,8,133,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,133,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,133,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,133,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,131,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,131,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,131,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,167,155,64,26,19,8,131,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,104,161,64,26,19,8,131,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,131,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,161,155,64,26,19,8,131,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,201,161,64,26,19,8,131,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,131,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,154,155,64,26,19,8,131,3,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,218,161,64,26,19,8,131,3,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,131,3,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,221,161,64,26,19,8,131,3,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,141,155,64,26,19,8,131,3,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,131,3,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,131,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,131,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,147,64,26,19,8,136,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,34,99,192,26,19,8,136,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,136,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,162,101,192,26,19,8,136,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,147,64,26,19,8,136,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,136,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,136,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,136,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,136,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,136,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,136,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,135,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,135,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,135,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,47,155,64,26,19,8,135,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,224,161,64,26,19,8,135,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,135,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,214,155,64,26,19,8,135,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,214,161,64,26,19,8,135,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,135,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,135,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,135,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,137,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,137,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,137,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,221,155,64,26,19,8,137,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,148,161,64,26,19,8,137,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,137,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,145,156,64,26,19,8,137,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,141,161,64,26,19,8,137,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,137,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,137,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,137,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,152,4,18,149,4,10,146,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,140,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,104,147,64,26,19,8,140,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,162,110,192,26,19,8,140,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,140,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,147,64,26,19,8,140,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,132,82,192,26,19,8,140,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,140,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,147,64,26,19,8,140,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,186,27,64,26,19,8,140,3,16,14,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,140,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,140,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,140,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,140,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,140,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,140,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,140,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,140,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,111,156,64,26,19,8,140,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,81,161,64,26,19,8,140,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,140,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,151,156,64,26,19,8,140,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,228,161,64,26,19,8,140,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,140,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,140,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,140,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,238,12,18,235,12,10,232,12,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,158,64,26,19,8,141,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,22,151,64,26,19,8,141,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,254,157,64,26,19,8,141,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,251,150,64,26,19,8,141,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,157,64,26,19,8,141,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,141,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,197,156,64,26,19,8,141,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,231,150,64,26,19,8,141,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,14,157,64,26,19,8,141,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,141,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,158,64,26,19,8,141,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,141,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,25,158,64,26,19,8,141,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,29,151,64,26,19,8,141,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,18,158,64,26,19,8,141,3,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,82,151,64,26,19,8,141,3,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,215,151,64,26,19,8,141,3,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,157,64,26,19,8,141,3,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,201,157,64,26,19,8,141,3,16,34,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,242,151,64,26,19,8,141,3,16,35,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,33,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,157,64,26,19,8,141,3,16,37,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,249,151,64,26,19,8,141,3,16,38,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,36,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,230,156,64,26,19,8,141,3,16,40,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,255,151,64,26,19,8,141,3,16,41,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,39,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,157,64,26,19,8,141,3,16,43,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,29,151,64,26,19,8,141,3,16,44,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,42,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,141,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,141,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,141,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,141,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,195,8,18,192,8,10,189,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,141,3,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,56,101,98,56,26,19,8,141,3,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,141,3,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,209,38,6,146,226,72,168,64,26,19,8,141,3,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,222,49,249,3,117,170,161,64,26,19,8,141,3,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,141,3,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,208,12,250,203,249,167,64,26,19,8,141,3,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,247,220,245,79,0,210,161,64,26,19,8,141,3,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,141,3,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,123,14,84,6,230,167,64,26,19,8,141,3,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,204,164,69,121,232,19,162,64,26,19,8,141,3,16,14,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,141,3,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,19,123,14,84,6,230,167,64,26,19,8,141,3,16,16,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,77,236,151,41,40,56,162,64,26,19,8,141,3,16,17,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,141,3,16,15,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,54,52,183,149,23,253,167,64,26,19,8,141,3,16,19,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,102,151,148,117,179,95,162,64,26,19,8,141,3,16,20,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,141,3,16,18,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,209,2,222,109,112,168,64,26,19,8,141,3,16,22,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,24,7,250,48,146,160,161,64,26,19,8,141,3,16,23,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,141,3,16,21,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,24,90,156,92,89,168,64,26,19,8,141,3,16,25,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,82,220,250,93,175,150,161,64,26,19,8,141,3,16,26,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,141,3,16,24,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,52,178,135,104,56,168,64,26,19,8,141,3,16,28,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,233,63,165,249,250,153,161,64,26,19,8,141,3,16,29,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,141,3,16,27,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,141,3,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,141,3,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,141,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,141,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,141,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,81,155,64,26,19,8,141,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,12,162,64,26,19,8,141,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,141,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,155,64,26,19,8,141,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,2,162,64,26,19,8,141,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,141,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,8,162,64,26,19,8,141,3,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,71,156,64,26,19,8,141,3,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,141,3,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,98,156,64,26,19,8,141,3,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,22,162,64,26,19,8,141,3,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,141,3,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,105,156,64,26,19,8,141,3,16,19,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,32,162,64,26,19,8,141,3,16,20,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,141,3,16,18,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,98,156,64,26,19,8,141,3,16,22,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,48,162,64,26,19,8,141,3,16,23,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,141,3,16,21,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,105,156,64,26,19,8,141,3,16,25,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,122,162,64,26,19,8,141,3,16,26,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,141,3,16,24,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,141,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,141,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,51,51,98,53,26,19,8,144,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,144,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,99,132,117,144,34,6,146,64,26,19,8,144,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,27,24,117,138,181,234,152,64,26,19,8,144,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,144,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,144,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,144,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,27,24,117,138,181,234,152,64,26,19,8,144,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,99,132,117,144,34,6,146,64,26,19,8,144,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,144,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,144,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,144,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,144,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,229,6,18,226,6,10,223,6,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,146,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,66,163,64,26,19,8,146,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,87,150,64,26,19,8,146,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,146,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,121,150,64,26,19,8,146,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,66,163,64,26,19,8,146,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,146,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,18,151,64,26,19,8,146,3,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,122,163,64,26,19,8,146,3,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,146,3,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,25,151,64,26,19,8,146,3,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,192,163,64,26,19,8,146,3,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,146,3,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,18,151,64,26,19,8,146,3,16,19,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,222,163,64,26,19,8,146,3,16,20,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,146,3,16,18,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,11,151,64,26,19,8,146,3,16,22,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,209,163,64,26,19,8,146,3,16,23,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,146,3,16,21,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,146,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,146,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,146,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,146,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,147,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,91,151,64,26,19,8,147,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,152,163,64,26,19,8,147,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,147,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,231,151,64,26,19,8,147,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,126,163,64,26,19,8,147,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,147,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,147,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,147,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,147,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,147,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,148,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,148,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,148,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,22,152,64,26,19,8,148,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,82,163,64,26,19,8,148,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,148,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,69,152,64,26,19,8,148,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,212,163,64,26,19,8,148,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,148,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,202,163,64,26,19,8,148,3,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,75,152,64,26,19,8,148,3,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,148,3,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,148,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,148,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,146,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,51,51,98,53,26,19,8,146,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,146,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,220,53,120,76,136,179,128,64,26,19,8,146,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,108,61,204,13,179,19,128,64,26,19,8,146,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,213,141,30,2,88,62,145,64,26,19,8,146,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,184,158,158,243,218,94,152,64,26,19,8,146,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,146,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,158,158,243,218,94,152,64,26,19,8,146,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,213,141,30,2,88,62,145,64,26,19,8,146,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,146,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,146,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,146,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,255,11,18,252,11,10,249,11,10,215,10,10,6,112,111,105,110,116,115,18,204,10,18,201,10,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,129,152,64,26,19,8,150,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,69,163,64,26,19,8,150,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,150,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,209,152,64,26,19,8,150,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,59,163,64,26,19,8,150,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,150,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,19,153,64,26,19,8,150,3,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,66,163,64,26,19,8,150,3,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,150,3,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,13,153,64,26,19,8,150,3,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,92,163,64,26,19,8,150,3,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,150,3,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,209,152,64,26,19,8,150,3,16,19,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,102,163,64,26,19,8,150,3,16,20,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,150,3,16,18,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,202,152,64,26,19,8,150,3,16,22,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,116,163,64,26,19,8,150,3,16,23,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,150,3,16,21,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,209,152,64,26,19,8,150,3,16,25,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,136,163,64,26,19,8,150,3,16,26,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,150,3,16,24,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,235,152,64,26,19,8,150,3,16,28,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,149,163,64,26,19,8,150,3,16,29,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,150,3,16,27,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,26,153,64,26,19,8,150,3,16,31,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,156,163,64,26,19,8,150,3,16,32,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,150,3,16,30,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,126,153,64,26,19,8,150,3,16,34,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,152,163,64,26,19,8,150,3,16,35,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,150,3,16,33,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,146,153,64,26,19,8,150,3,16,37,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,149,163,64,26,19,8,150,3,16,38,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,150,3,16,36,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,146,153,64,26,19,8,150,3,16,40,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,136,163,64,26,19,8,150,3,16,41,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,150,3,16,39,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,150,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,150,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,150,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,150,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,150,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,51,51,98,53,26,19,8,150,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,150,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,233,203,101,194,91,54,159,64,26,19,8,150,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,36,38,9,143,132,0,114,64,26,19,8,150,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,160,194,54,72,252,56,90,64,26,19,8,150,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,65,234,50,9,228,46,148,64,26,19,8,150,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,150,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,185,10,20,115,62,219,161,64,26,19,8,150,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,65,234,50,9,228,46,148,64,26,19,8,150,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,150,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,150,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,150,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,150,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,152,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,152,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,152,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,159,153,64,26,19,8,152,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,46,163,64,26,19,8,152,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,152,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,146,163,64,26,19,8,152,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,193,153,64,26,19,8,152,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,152,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,213,153,64,26,19,8,152,3,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,172,163,64,26,19,8,152,3,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,152,3,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,219,153,64,26,19,8,152,3,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,162,163,64,26,19,8,152,3,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,152,3,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,152,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,152,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,178,9,18,175,9,10,172,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,153,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,153,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,153,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,77,154,64,26,19,8,153,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,19,163,64,26,19,8,153,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,153,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,83,154,64,26,19,8,153,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,19,163,64,26,19,8,153,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,153,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,90,154,64,26,19,8,153,3,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,59,163,64,26,19,8,153,3,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,153,3,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,90,154,64,26,19,8,153,3,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,116,163,64,26,19,8,153,3,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,153,3,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,255,255,255,255,103,154,64,26,19,8,153,3,16,19,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,126,163,64,26,19,8,153,3,16,20,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,153,3,16,18,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,157,154,64,26,19,8,153,3,16,22,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,136,163,64,26,19,8,153,3,16,23,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,153,3,16,21,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,132,163,64,26,19,8,153,3,16,26,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,197,154,64,26,19,8,153,3,16,25,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,153,3,16,24,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,223,154,64,26,19,8,153,3,16,28,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,122,163,64,26,19,8,153,3,16,29,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,153,3,16,27,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,230,154,64,26,19,8,153,3,16,31,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,89,163,64,26,19,8,153,3,16,32,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,153,3,16,30,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,153,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,153,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,161,10,18,158,10,10,155,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,147,3,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,56,101,98,56,26,19,8,147,3,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,147,3,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,4,76,96,25,142,215,160,64,26,19,8,147,3,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,31,183,160,214,3,8,169,64,26,19,8,147,3,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,3,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,174,9,230,248,213,141,162,64,26,19,8,147,3,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,31,183,160,214,3,8,169,64,26,19,8,147,3,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,3,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,26,75,114,79,11,169,64,26,19,8,147,3,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,174,9,230,248,213,141,162,64,26,19,8,147,3,16,14,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,3,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,165,238,85,187,202,138,168,64,26,19,8,147,3,16,16,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,63,79,71,211,34,0,162,64,26,19,8,147,3,16,17,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,3,16,15,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,39,1,132,51,132,168,64,26,19,8,147,3,16,19,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,182,136,237,141,220,52,162,64,26,19,8,147,3,16,20,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,3,16,18,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,39,1,132,51,132,168,64,26,19,8,147,3,16,22,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,113,165,64,107,57,79,162,64,26,19,8,147,3,16,23,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,3,16,21,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,111,78,38,196,227,168,64,26,19,8,147,3,16,25,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,127,66,145,193,62,135,162,64,26,19,8,147,3,16,26,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,3,16,24,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,54,163,93,91,234,168,64,26,19,8,147,3,16,28,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,33,180,231,82,16,122,162,64,26,19,8,147,3,16,29,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,3,16,27,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,253,247,148,242,240,168,64,26,19,8,147,3,16,31,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,33,180,231,82,16,122,162,64,26,19,8,147,3,16,32,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,3,16,30,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,251,253,247,148,242,240,168,64,26,19,8,147,3,16,34,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,138,80,61,183,196,118,162,64,26,19,8,147,3,16,35,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,3,16,33,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,3,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,147,3,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,155,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,155,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,155,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,203,154,64,26,19,8,155,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,26,163,64,26,19,8,155,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,155,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,237,154,64,26,19,8,155,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,109,163,64,26,19,8,155,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,155,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,243,154,64,26,19,8,155,3,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,109,163,64,26,19,8,155,3,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,155,3,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,155,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,155,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,156,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,156,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,156,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,85,85,85,85,157,154,64,26,19,8,156,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,66,163,64,26,19,8,156,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,156,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,223,154,64,26,19,8,156,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,66,163,64,26,19,8,156,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,156,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,156,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,156,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,246,5,18,243,5,10,240,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,157,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,157,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,157,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,21,155,64,26,19,8,157,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,16,163,64,26,19,8,157,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,157,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,34,155,64,26,19,8,157,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,32,163,64,26,19,8,157,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,157,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,61,155,64,26,19,8,157,3,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,132,163,64,26,19,8,157,3,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,157,3,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,67,155,64,26,19,8,157,3,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,132,163,64,26,19,8,157,3,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,157,3,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,67,155,64,26,19,8,157,3,16,19,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,122,163,64,26,19,8,157,3,16,20,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,157,3,16,18,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,157,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,157,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,144,11,18,141,11,10,138,11,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,181,155,64,26,19,8,158,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,232,162,64,26,19,8,158,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,158,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,254,155,64,26,19,8,158,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,228,162,64,26,19,8,158,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,158,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,45,156,64,26,19,8,158,3,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,238,162,64,26,19,8,158,3,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,158,3,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,51,156,64,26,19,8,158,3,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,9,163,64,26,19,8,158,3,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,158,3,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,32,163,64,26,19,8,158,3,16,20,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,234,155,64,26,19,8,158,3,16,19,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,158,3,16,18,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,161,155,64,26,19,8,158,3,16,22,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,29,163,64,26,19,8,158,3,16,23,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,158,3,16,21,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,19,163,64,26,19,8,158,3,16,26,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,121,155,64,26,19,8,158,3,16,25,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,158,3,16,24,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,107,155,64,26,19,8,158,3,16,28,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,255,162,64,26,19,8,158,3,16,29,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,158,3,16,27,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,147,155,64,26,19,8,158,3,16,31,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,238,162,64,26,19,8,158,3,16,32,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,158,3,16,30,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,181,155,64,26,19,8,158,3,16,34,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,235,162,64,26,19,8,158,3,16,35,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,158,3,16,33,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,207,155,64,26,19,8,158,3,16,37,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,248,162,64,26,19,8,158,3,16,38,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,158,3,16,36,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,158,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,158,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,158,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,158,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,158,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,159,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,159,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,5,156,64,26,19,8,159,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,32,163,64,26,19,8,159,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,159,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,241,155,64,26,19,8,159,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,49,163,64,26,19,8,159,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,159,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,159,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,159,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,159,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,160,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,160,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,160,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,18,156,64,26,19,8,160,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,29,163,64,26,19,8,160,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,160,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,247,155,64,26,19,8,160,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,92,163,64,26,19,8,160,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,160,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,160,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,160,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,161,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,161,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,161,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,170,170,170,170,174,155,64,26,19,8,161,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,79,163,64,26,19,8,161,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,161,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,145,156,64,26,19,8,161,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,76,163,64,26,19,8,161,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,161,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,161,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,161,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,158,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,51,51,98,53,26,19,8,158,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,158,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,65,234,50,9,228,46,148,64,26,19,8,158,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,233,203,101,194,91,54,159,64,26,19,8,158,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,36,38,9,143,132,0,114,64,26,19,8,158,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,160,194,54,72,252,56,90,64,26,19,8,158,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,185,10,20,115,62,219,161,64,26,19,8,158,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,65,234,50,9,228,46,148,64,26,19,8,158,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,158,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,144,11,18,141,11,10,138,11,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,163,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,163,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,163,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,232,9,10,6,112,111,105,110,116,115,18,221,9,18,218,9,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,11,156,64,26,19,8,163,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,132,163,64,26,19,8,163,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,163,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,25,156,64,26,19,8,163,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,129,163,64,26,19,8,163,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,163,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,125,156,64,26,19,8,163,3,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,166,163,64,26,19,8,163,3,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,163,3,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,111,156,64,26,19,8,163,3,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,186,163,64,26,19,8,163,3,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,163,3,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,189,163,64,26,19,8,163,3,16,20,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,78,156,64,26,19,8,163,3,16,19,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,163,3,16,18,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,51,156,64,26,19,8,163,3,16,22,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,182,163,64,26,19,8,163,3,16,23,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,163,3,16,21,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,18,156,64,26,19,8,163,3,16,25,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,159,163,64,26,19,8,163,3,16,26,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,163,3,16,24,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,146,163,64,26,19,8,163,3,16,29,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,18,156,64,26,19,8,163,3,16,28,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,163,3,16,27,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,38,156,64,26,19,8,163,3,16,31,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,170,170,170,106,0,126,163,64,26,19,8,163,3,16,32,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,163,3,16,30,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,65,156,64,26,19,8,163,3,16,34,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,119,163,64,26,19,8,163,3,16,35,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,163,3,16,33,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,85,156,64,26,19,8,163,3,16,37,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,129,163,64,26,19,8,163,3,16,38,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,163,3,16,36,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,163,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,163,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,178,9,18,175,9,10,172,9,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,164,3,16,4,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,238,156,64,26,19,8,164,3,16,7,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,132,163,64,26,19,8,164,3,16,8,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,164,3,16,6,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,109,157,64,26,19,8,164,3,16,10,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,59,163,64,26,19,8,164,3,16,11,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,164,3,16,9,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,62,163,64,26,19,8,164,3,16,14,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,162,157,64,26,19,8,164,3,16,13,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,164,3,16,12,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,215,157,64,26,19,8,164,3,16,16,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,99,163,64,26,19,8,164,3,16,17,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,164,3,16,15,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,99,163,64,26,19,8,164,3,16,20,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,113,158,64,26,19,8,164,3,16,19,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,164,3,16,18,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,170,170,170,170,206,158,64,26,19,8,164,3,16,22,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,59,163,64,26,19,8,164,3,16,23,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,164,3,16,21,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,233,158,64,26,19,8,164,3,16,25,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,52,163,64,26,19,8,164,3,16,26,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,164,3,16,24,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,21,171,52,163,64,26,19,8,164,3,16,29,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,84,85,85,85,85,253,158,64,26,19,8,164,3,16,28,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,164,3,16,27,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,255,255,191,85,59,163,64,26,19,8,164,3,16,32,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,40,10,1,120,18,35,26,33,8,4,18,8,255,255,255,255,255,3,159,64,26,19,8,164,3,16,31,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,164,3,16,30,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,164,3,16,5,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,164,3,16,2,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,53,51,55,52,98,97,26,19,8,164,3,16,3,26,12,99,70,121,152,152,207,109,6,237,70,59,83,18,19,8,164,3,16,1,26,12,99,70,121,152,152,207,109,6,237,70,59,83,10,193,107,18,190,107,10,187,107,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,165,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,165,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,153,106,10,6,112,111,105,110,116,115,18,142,106,18,139,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,14,157,64,26,19,8,165,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,165,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,157,64,26,19,8,165,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,198,150,64,26,19,8,165,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,230,156,64,26,19,8,165,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,189,151,64,26,19,8,165,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,230,156,64,26,19,8,165,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,222,151,64,26,19,8,165,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,222,151,64,26,19,8,165,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,141,157,64,26,19,8,165,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,234,157,64,26,19,8,165,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,209,151,64,26,19,8,165,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,5,158,64,26,19,8,165,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,195,151,64,26,19,8,165,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,195,151,64,26,19,8,165,3,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,45,158,64,26,19,8,165,3,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,65,158,64,26,19,8,165,3,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,175,151,64,26,19,8,165,3,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,78,158,64,26,19,8,165,3,16,34,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,115,151,64,26,19,8,165,3,16,35,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,33,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,78,158,64,26,19,8,165,3,16,37,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,15,151,64,26,19,8,165,3,16,38,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,36,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,65,158,64,26,19,8,165,3,16,40,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,165,3,16,41,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,39,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,158,64,26,19,8,165,3,16,43,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,165,3,16,44,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,42,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,157,64,26,19,8,165,3,16,46,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,231,150,64,26,19,8,165,3,16,47,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,45,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,190,156,64,26,19,8,165,3,16,49,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,231,150,64,26,19,8,165,3,16,50,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,48,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,157,64,26,19,8,165,3,16,52,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,218,150,64,26,19,8,165,3,16,53,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,51,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,138,158,64,26,19,8,165,3,16,55,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,218,150,64,26,19,8,165,3,16,56,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,54,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,158,64,26,19,8,165,3,16,58,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,22,151,64,26,19,8,165,3,16,59,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,57,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,169,151,64,26,19,8,165,3,16,62,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,65,158,64,26,19,8,165,3,16,61,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,60,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,58,158,64,26,19,8,165,3,16,64,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,215,151,64,26,19,8,165,3,16,65,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,63,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,222,151,64,26,19,8,165,3,16,68,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,81,157,64,26,19,8,165,3,16,67,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,66,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,209,151,64,26,19,8,165,3,16,71,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,156,64,26,19,8,165,3,16,70,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,69,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,1,157,64,26,19,8,165,3,16,73,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,9,151,64,26,19,8,165,3,16,74,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,72,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,157,64,26,19,8,165,3,16,76,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,198,150,64,26,19,8,165,3,16,77,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,75,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,14,157,64,26,19,8,165,3,16,79,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,198,150,64,26,19,8,165,3,16,80,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,78,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,217,156,64,26,19,8,165,3,16,82,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,102,151,64,26,19,8,165,3,16,83,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,81,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,210,156,64,26,19,8,165,3,16,85,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,215,151,64,26,19,8,165,3,16,86,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,84,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,181,157,64,26,19,8,165,3,16,88,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,195,151,64,26,19,8,165,3,16,89,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,87,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,155,151,64,26,19,8,165,3,16,92,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,25,158,64,26,19,8,165,3,16,91,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,90,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,158,64,26,19,8,165,3,16,94,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,82,151,64,26,19,8,165,3,16,95,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,93,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,45,158,64,26,19,8,165,3,16,97,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,218,150,64,26,19,8,165,3,16,98,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,96,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,38,158,64,26,19,8,165,3,16,100,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,191,150,64,26,19,8,165,3,16,101,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,99,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,25,158,64,26,19,8,165,3,16,103,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,191,150,64,26,19,8,165,3,16,104,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,102,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,157,64,26,19,8,165,3,16,106,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,165,3,16,107,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,105,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,250,156,64,26,19,8,165,3,16,109,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,225,150,64,26,19,8,165,3,16,110,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,108,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,21,157,64,26,19,8,165,3,16,112,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,218,150,64,26,19,8,165,3,16,113,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,111,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,105,158,64,26,19,8,165,3,16,115,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,165,3,16,116,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,114,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,98,158,64,26,19,8,165,3,16,118,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,2,151,64,26,19,8,165,3,16,119,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,117,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,158,64,26,19,8,165,3,16,121,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,115,151,64,26,19,8,165,3,16,122,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,120,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,158,64,26,19,8,165,3,16,124,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,135,151,64,26,19,8,165,3,16,125,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,123,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,45,158,64,26,19,8,165,3,16,127,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,165,3,16,128,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,126,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,165,3,16,131,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,165,3,16,130,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,129,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,157,64,26,20,8,165,3,16,133,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,165,3,16,134,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,132,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,157,64,26,20,8,165,3,16,136,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,165,3,16,137,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,135,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,165,3,16,139,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,222,151,64,26,20,8,165,3,16,140,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,138,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,156,64,26,20,8,165,3,16,142,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,215,151,64,26,20,8,165,3,16,143,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,141,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,165,3,16,145,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,165,3,16,146,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,144,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,64,26,20,8,165,3,16,148,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,165,3,16,149,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,147,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,157,64,26,20,8,165,3,16,151,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,165,3,16,152,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,150,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,237,156,64,26,20,8,165,3,16,154,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,165,3,16,155,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,153,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,237,156,64,26,20,8,165,3,16,157,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,235,151,64,26,20,8,165,3,16,158,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,156,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,165,3,16,160,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,165,3,16,161,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,159,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,101,157,64,26,20,8,165,3,16,163,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,165,3,16,164,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,162,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,165,3,16,166,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,165,3,16,167,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,165,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,165,3,16,169,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,165,3,16,170,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,168,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,165,3,16,172,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,165,3,16,173,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,171,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,165,3,16,176,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,165,3,16,175,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,174,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,165,3,16,178,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,165,3,16,179,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,177,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,165,3,16,181,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,165,3,16,182,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,180,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,165,3,16,184,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,165,3,16,185,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,183,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,156,64,26,20,8,165,3,16,187,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,165,3,16,188,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,186,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,157,64,26,20,8,165,3,16,190,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,165,3,16,191,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,189,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,165,3,16,193,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,165,3,16,194,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,192,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,165,3,16,196,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,165,3,16,197,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,195,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,165,3,16,199,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,165,3,16,200,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,198,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,165,3,16,202,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,165,3,16,203,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,201,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,250,156,64,26,20,8,165,3,16,205,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,165,3,16,206,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,204,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,165,3,16,208,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,165,3,16,209,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,207,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,165,3,16,212,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,165,3,16,211,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,210,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,165,3,16,214,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,165,3,16,215,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,213,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,165,3,16,217,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,165,3,16,218,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,216,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,165,3,16,220,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,165,3,16,221,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,219,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,165,3,16,223,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,165,3,16,224,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,222,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,165,3,16,226,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,165,3,16,227,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,225,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,165,3,16,229,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,165,3,16,230,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,228,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,165,3,16,232,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,165,3,16,233,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,231,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,165,3,16,235,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,165,3,16,236,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,234,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,165,3,16,238,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,165,3,16,239,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,237,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,165,3,16,241,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,165,3,16,242,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,240,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,165,3,16,244,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,165,3,16,245,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,243,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,165,3,16,247,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,165,3,16,248,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,246,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,165,3,16,251,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,165,3,16,250,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,249,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,165,3,16,253,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,165,3,16,254,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,252,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,165,3,16,128,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,165,3,16,129,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,255,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,165,3,16,131,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,165,3,16,132,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,130,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,165,3,16,134,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,165,3,16,135,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,133,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,156,64,26,20,8,165,3,16,137,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,165,3,16,138,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,136,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,165,3,16,140,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,165,3,16,141,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,139,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,165,3,16,144,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,165,3,16,143,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,142,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,165,3,16,147,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,165,3,16,146,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,145,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,165,3,16,149,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,165,3,16,150,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,148,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,156,64,26,20,8,165,3,16,152,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,165,3,16,153,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,151,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,165,3,16,155,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,165,3,16,156,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,154,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,165,3,16,159,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,156,64,26,20,8,165,3,16,158,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,157,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,156,64,26,20,8,165,3,16,161,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,165,3,16,162,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,160,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,165,3,16,164,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,165,3,16,165,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,163,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,165,3,16,167,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,165,3,16,168,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,166,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,165,3,16,170,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,165,3,16,171,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,169,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,254,157,64,26,20,8,165,3,16,173,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,165,3,16,174,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,172,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,165,3,16,176,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,165,3,16,177,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,175,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,165,3,16,179,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,165,3,16,180,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,178,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,165,3,16,182,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,165,3,16,183,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,181,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,165,3,16,185,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,165,3,16,186,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,184,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,157,64,26,20,8,165,3,16,188,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,165,3,16,189,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,187,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,165,3,16,191,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,165,3,16,192,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,190,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,165,3,16,194,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,165,3,16,195,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,193,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,165,3,16,197,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,165,3,16,198,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,196,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,201,157,64,26,20,8,165,3,16,200,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,165,3,16,201,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,199,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,165,3,16,203,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,165,3,16,204,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,202,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,165,3,16,206,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,165,3,16,207,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,205,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,165,3,16,210,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,165,3,16,209,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,208,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,157,64,26,20,8,165,3,16,212,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,165,3,16,213,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,211,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,165,3,16,216,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,157,64,26,20,8,165,3,16,215,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,214,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,157,64,26,20,8,165,3,16,218,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,165,3,16,219,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,217,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,165,3,16,221,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,165,3,16,222,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,220,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,165,3,16,224,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,165,3,16,225,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,223,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,165,3,16,227,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,165,3,16,228,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,226,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,165,3,16,231,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,165,3,16,230,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,229,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,165,3,16,233,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,165,3,16,234,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,232,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,165,3,16,236,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,165,3,16,237,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,165,3,16,235,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,165,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,165,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,165,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,51,51,98,53,26,19,8,165,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,165,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,174,28,96,29,79,200,130,64,26,19,8,165,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,235,2,4,155,126,226,101,192,26,19,8,165,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,16,241,66,78,131,36,156,64,26,19,8,165,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,232,58,176,34,250,72,128,64,26,19,8,165,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,165,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,235,2,4,155,126,226,101,192,26,19,8,165,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,16,241,66,78,131,36,156,64,26,19,8,165,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,165,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,165,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,165,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,166,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,51,51,98,53,26,19,8,166,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,166,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,102,15,138,99,237,231,98,64,26,19,8,166,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,26,216,24,212,52,192,160,64,26,19,8,166,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,4,6,100,217,206,167,132,64,26,19,8,166,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,228,161,202,87,152,237,108,64,26,19,8,166,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,166,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,155,217,113,138,40,234,165,64,26,19,8,166,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,165,88,170,221,194,234,119,64,26,19,8,166,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,166,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,166,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,166,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,51,51,98,53,26,19,8,168,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,168,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,202,11,105,185,28,32,86,192,26,19,8,168,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,43,20,189,228,115,19,161,64,26,19,8,168,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,160,6,43,20,125,154,100,64,26,19,8,168,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,170,131,122,82,237,108,111,64,26,19,8,168,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,168,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,43,20,189,228,115,19,161,64,26,19,8,168,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,202,11,105,185,28,32,86,192,26,19,8,168,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,168,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,168,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,168,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,168,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,25,182,30,110,116,143,163,64,26,19,8,169,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,149,228,173,198,165,113,102,64,26,19,8,169,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,169,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,169,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,169,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,51,51,98,53,26,19,8,169,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,169,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,64,128,46,239,197,32,32,64,26,19,8,169,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,215,197,141,43,120,66,162,64,26,19,8,169,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,32,4,15,41,196,207,100,64,26,19,8,169,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,145,252,186,103,153,111,101,64,26,19,8,169,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,169,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,169,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,170,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,51,51,98,53,26,19,8,170,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,170,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,32,4,15,41,196,207,84,64,26,19,8,170,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,16,250,158,124,224,164,69,64,26,19,8,170,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,20,100,162,107,244,128,140,64,26,19,8,170,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,124,30,248,209,238,130,165,64,26,19,8,170,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,170,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,20,100,162,107,244,128,140,64,26,19,8,170,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,124,30,248,209,238,130,165,64,26,19,8,170,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,170,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,170,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,170,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,149,45,18,146,45,10,143,45,10,237,43,10,6,112,111,105,110,116,115,18,226,43,18,223,43,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,171,150,64,26,19,8,171,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,25,158,64,26,19,8,171,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,237,156,64,26,19,8,171,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,218,150,64,26,19,8,171,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,121,157,64,26,19,8,171,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,191,150,64,26,19,8,171,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,38,158,64,26,19,8,171,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,191,150,64,26,19,8,171,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,138,158,64,26,19,8,171,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,171,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,158,64,26,19,8,171,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,231,150,64,26,19,8,171,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,85,158,64,26,19,8,171,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,35,151,64,26,19,8,171,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,158,64,26,19,8,171,3,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,135,151,64,26,19,8,171,3,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,158,64,26,19,8,171,3,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,142,151,64,26,19,8,171,3,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,184,156,64,26,19,8,171,3,16,34,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,142,151,64,26,19,8,171,3,16,35,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,33,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,230,156,64,26,19,8,171,3,16,37,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,171,3,16,38,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,36,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,237,156,64,26,19,8,171,3,16,40,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,191,150,64,26,19,8,171,3,16,41,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,39,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,2,151,64,26,19,8,171,3,16,44,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,230,156,64,26,19,8,171,3,16,43,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,42,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,156,64,26,19,8,171,3,16,46,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,89,151,64,26,19,8,171,3,16,47,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,45,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,156,64,26,19,8,171,3,16,49,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,149,151,64,26,19,8,171,3,16,50,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,48,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,230,156,64,26,19,8,171,3,16,52,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,135,151,64,26,19,8,171,3,16,53,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,51,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,157,64,26,19,8,171,3,16,55,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,129,151,64,26,19,8,171,3,16,56,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,54,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,5,158,64,26,19,8,171,3,16,58,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,122,151,64,26,19,8,171,3,16,59,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,57,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,158,64,26,19,8,171,3,16,61,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,35,151,64,26,19,8,171,3,16,62,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,60,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,158,64,26,19,8,171,3,16,64,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,178,150,64,26,19,8,171,3,16,65,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,63,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,214,157,64,26,19,8,171,3,16,67,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,171,3,16,68,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,66,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,161,157,64,26,19,8,171,3,16,70,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,171,3,16,71,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,69,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,14,157,64,26,19,8,171,3,16,73,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,171,3,16,74,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,72,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,214,157,64,26,19,8,171,3,16,76,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,171,3,16,77,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,75,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,185,158,64,26,19,8,171,3,16,79,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,218,150,64,26,19,8,171,3,16,80,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,78,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,178,158,64,26,19,8,171,3,16,82,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,238,150,64,26,19,8,171,3,16,83,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,81,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,158,64,26,19,8,171,3,16,85,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,129,151,64,26,19,8,171,3,16,86,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,84,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,142,151,64,26,19,8,171,3,16,89,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,25,158,64,26,19,8,171,3,16,88,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,87,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,156,64,26,19,8,171,3,16,91,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,142,151,64,26,19,8,171,3,16,92,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,90,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,190,156,64,26,19,8,171,3,16,94,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,29,151,64,26,19,8,171,3,16,95,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,93,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,156,64,26,19,8,171,3,16,97,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,178,150,64,26,19,8,171,3,16,98,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,96,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,171,3,16,101,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,230,156,64,26,19,8,171,3,16,100,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,99,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,156,64,26,19,8,171,3,16,103,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,89,151,64,26,19,8,171,3,16,104,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,102,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,210,156,64,26,19,8,171,3,16,106,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,142,151,64,26,19,8,171,3,16,107,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,105,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,158,64,26,19,8,171,3,16,109,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,149,151,64,26,19,8,171,3,16,110,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,108,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,58,158,64,26,19,8,171,3,16,112,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,15,151,64,26,19,8,171,3,16,113,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,111,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,38,158,64,26,19,8,171,3,16,115,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,191,150,64,26,19,8,171,3,16,116,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,114,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,12,158,64,26,19,8,171,3,16,118,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,171,3,16,119,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,117,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,161,157,64,26,19,8,171,3,16,121,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,231,150,64,26,19,8,171,3,16,122,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,120,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,230,156,64,26,19,8,171,3,16,124,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,171,3,16,125,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,123,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,230,156,64,26,19,8,171,3,16,127,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,171,3,16,128,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,126,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,171,3,16,131,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,171,3,16,130,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,171,3,16,129,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,157,64,26,20,8,171,3,16,133,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,171,3,16,134,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,171,3,16,132,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,171,3,16,136,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,171,3,16,137,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,171,3,16,135,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,171,3,16,139,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,171,3,16,140,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,171,3,16,138,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,171,3,16,142,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,171,3,16,143,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,171,3,16,141,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,171,3,16,145,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,171,3,16,146,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,171,3,16,144,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,171,3,16,148,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,171,3,16,149,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,171,3,16,147,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,171,3,16,151,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,171,3,16,152,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,171,3,16,150,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,14,157,64,26,20,8,171,3,16,154,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,171,3,16,155,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,171,3,16,153,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,171,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,171,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,171,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,171,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,158,148,180,151,137,165,64,26,19,8,172,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,86,84,51,174,240,205,141,64,26,19,8,172,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,172,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,172,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,172,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,51,51,98,53,26,19,8,172,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,172,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,255,214,82,82,58,85,64,26,19,8,172,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,176,199,110,30,110,206,73,64,26,19,8,172,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,86,84,51,174,240,205,141,64,26,19,8,172,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,44,158,148,180,151,137,165,64,26,19,8,172,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,172,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,172,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,161,10,18,158,10,10,155,10,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,173,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,173,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,156,64,26,19,8,173,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,238,150,64,26,19,8,173,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,173,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,197,156,64,26,19,8,173,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,109,151,64,26,19,8,173,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,173,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,190,156,64,26,19,8,173,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,155,151,64,26,19,8,173,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,173,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,197,156,64,26,19,8,173,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,189,151,64,26,19,8,173,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,173,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,237,156,64,26,19,8,173,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,202,151,64,26,19,8,173,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,173,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,157,64,26,19,8,173,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,195,151,64,26,19,8,173,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,173,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,157,64,26,19,8,173,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,169,151,64,26,19,8,173,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,173,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,234,157,64,26,19,8,173,3,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,169,151,64,26,19,8,173,3,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,173,3,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,157,64,26,19,8,173,3,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,162,151,64,26,19,8,173,3,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,173,3,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,18,158,64,26,19,8,173,3,16,34,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,29,151,64,26,19,8,173,3,16,35,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,173,3,16,33,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,173,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,173,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,173,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,174,3,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,56,101,98,56,26,19,8,174,3,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,174,3,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,240,164,144,17,74,215,163,64,26,19,8,174,3,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,238,237,62,225,92,17,153,64,26,19,8,174,3,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,174,3,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,240,164,144,17,74,215,163,64,26,19,8,174,3,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,238,237,62,225,92,17,153,64,26,19,8,174,3,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,174,3,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,174,3,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,174,3,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,174,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,44,158,148,180,151,137,165,64,26,19,8,174,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,255,214,82,82,58,85,64,26,19,8,174,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,176,199,110,30,110,206,73,64,26,19,8,174,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,86,84,51,174,240,205,141,64,26,19,8,174,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,174,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,84,51,174,240,205,141,64,26,19,8,174,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,44,158,148,180,151,137,165,64,26,19,8,174,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,174,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,174,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,174,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,51,51,98,53,26,19,8,174,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,174,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,161,10,18,158,10,10,155,10,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,175,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,175,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,175,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,254,157,64,26,19,8,175,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,165,150,64,26,19,8,175,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,175,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,225,150,64,26,19,8,175,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,237,156,64,26,19,8,175,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,175,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,74,157,64,26,19,8,175,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,198,150,64,26,19,8,175,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,175,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,185,150,64,26,19,8,175,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,214,157,64,26,19,8,175,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,175,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,65,158,64,26,19,8,175,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,185,150,64,26,19,8,175,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,175,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,65,158,64,26,19,8,175,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,178,150,64,26,19,8,175,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,175,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,254,157,64,26,19,8,175,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,122,151,64,26,19,8,175,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,175,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,170,156,64,26,19,8,175,3,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,142,151,64,26,19,8,175,3,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,175,3,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,164,156,64,26,19,8,175,3,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,129,151,64,26,19,8,175,3,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,175,3,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,251,150,64,26,19,8,175,3,16,35,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,210,156,64,26,19,8,175,3,16,34,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,175,3,16,33,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,175,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,175,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,176,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,176,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,176,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,156,64,26,19,8,176,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,158,150,64,26,19,8,176,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,176,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,156,64,26,19,8,176,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,151,150,64,26,19,8,176,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,176,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,176,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,176,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,175,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,51,51,98,53,26,19,8,175,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,175,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,255,214,82,82,58,85,64,26,19,8,175,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,176,199,110,30,110,206,73,64,26,19,8,175,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,86,84,51,174,240,205,141,64,26,19,8,175,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,44,158,148,180,151,137,165,64,26,19,8,175,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,175,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,158,148,180,151,137,165,64,26,19,8,175,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,86,84,51,174,240,205,141,64,26,19,8,175,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,175,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,175,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,175,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,179,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,51,51,98,53,26,19,8,179,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,179,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,86,84,51,174,240,205,141,64,26,19,8,179,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,44,158,148,180,151,137,165,64,26,19,8,179,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,255,214,82,82,58,85,64,26,19,8,179,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,176,199,110,30,110,206,73,64,26,19,8,179,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,158,148,180,151,137,165,64,26,19,8,179,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,86,84,51,174,240,205,141,64,26,19,8,179,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,179,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,142,4,18,139,4,10,136,4,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,84,51,174,240,205,141,64,26,19,8,180,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,44,158,148,180,151,137,165,64,26,19,8,180,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,180,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,180,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,180,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,51,51,98,53,26,19,8,180,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,180,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,86,84,51,174,240,205,141,64,26,19,8,180,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,44,158,148,180,151,137,165,64,26,19,8,180,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,255,214,82,82,58,85,64,26,19,8,180,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,176,199,110,30,110,206,73,64,26,19,8,180,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,180,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,180,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,246,5,18,243,5,10,240,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,181,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,206,4,10,6,112,111,105,110,116,115,18,195,4,18,192,4,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,83,15,92,177,104,166,64,26,19,8,181,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,171,78,52,157,208,69,142,64,26,19,8,181,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,83,15,92,177,104,166,64,26,19,8,181,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,180,21,214,224,217,151,144,64,26,19,8,181,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,69,206,115,104,232,217,166,64,26,19,8,181,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,4,150,57,254,48,145,144,64,26,19,8,181,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,3,205,229,242,139,244,166,64,26,19,8,181,3,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,152,68,196,240,236,26,143,64,26,19,8,181,3,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,3,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,3,205,229,242,139,244,166,64,26,19,8,181,3,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,38,76,24,178,23,123,142,64,26,19,8,181,3,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,3,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,181,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,181,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,181,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,211,122,18,208,122,10,205,122,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,182,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,182,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,182,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,171,121,10,6,112,111,105,110,116,115,18,160,121,18,157,121,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,94,157,64,26,19,8,182,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,182,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,14,157,64,26,19,8,182,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,182,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,35,151,64,26,19,8,182,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,224,156,64,26,19,8,182,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,217,156,64,26,19,8,182,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,55,151,64,26,19,8,182,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,237,156,64,26,19,8,182,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,35,151,64,26,19,8,182,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,157,64,26,19,8,182,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,225,150,64,26,19,8,182,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,157,64,26,19,8,182,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,238,150,64,26,19,8,182,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,94,157,64,26,19,8,182,3,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,251,150,64,26,19,8,182,3,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,21,157,64,26,19,8,182,3,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,42,151,64,26,19,8,182,3,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,14,157,64,26,19,8,182,3,16,34,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,55,151,64,26,19,8,182,3,16,35,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,33,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,156,64,26,19,8,182,3,16,37,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,69,151,64,26,19,8,182,3,16,38,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,36,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,14,157,64,26,19,8,182,3,16,40,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,35,151,64,26,19,8,182,3,16,41,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,39,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,251,150,64,26,19,8,182,3,16,44,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,74,157,64,26,19,8,182,3,16,43,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,42,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,182,3,16,47,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,161,157,64,26,19,8,182,3,16,46,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,45,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,161,157,64,26,19,8,182,3,16,49,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,182,3,16,50,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,48,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,157,64,26,19,8,182,3,16,52,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,231,150,64,26,19,8,182,3,16,53,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,51,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,114,157,64,26,19,8,182,3,16,55,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,9,151,64,26,19,8,182,3,16,56,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,54,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,157,64,26,19,8,182,3,16,58,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,69,151,64,26,19,8,182,3,16,59,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,57,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,237,156,64,26,19,8,182,3,16,61,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,95,151,64,26,19,8,182,3,16,62,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,60,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,157,64,26,19,8,182,3,16,64,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,29,151,64,26,19,8,182,3,16,65,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,63,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,174,157,64,26,19,8,182,3,16,67,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,182,3,16,68,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,66,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,114,157,64,26,19,8,182,3,16,70,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,22,151,64,26,19,8,182,3,16,71,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,69,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,237,156,64,26,19,8,182,3,16,73,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,109,151,64,26,19,8,182,3,16,74,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,72,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,21,157,64,26,19,8,182,3,16,76,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,69,151,64,26,19,8,182,3,16,77,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,75,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,157,64,26,19,8,182,3,16,79,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,22,151,64,26,19,8,182,3,16,80,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,78,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,154,157,64,26,19,8,182,3,16,82,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,251,150,64,26,19,8,182,3,16,83,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,81,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,157,64,26,19,8,182,3,16,85,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,225,150,64,26,19,8,182,3,16,86,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,84,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,201,157,64,26,19,8,182,3,16,88,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,225,150,64,26,19,8,182,3,16,89,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,87,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,157,64,26,19,8,182,3,16,91,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,22,151,64,26,19,8,182,3,16,92,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,90,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,14,157,64,26,19,8,182,3,16,94,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,95,151,64,26,19,8,182,3,16,95,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,93,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,157,64,26,19,8,182,3,16,97,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,35,151,64,26,19,8,182,3,16,98,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,96,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,214,157,64,26,19,8,182,3,16,100,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,182,3,16,101,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,99,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,156,64,26,19,8,182,3,16,103,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,115,151,64,26,19,8,182,3,16,104,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,102,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,230,156,64,26,19,8,182,3,16,106,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,82,151,64,26,19,8,182,3,16,107,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,105,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,157,64,26,19,8,182,3,16,109,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,9,151,64,26,19,8,182,3,16,110,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,108,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,157,64,26,19,8,182,3,16,112,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,182,3,16,113,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,111,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,174,157,64,26,19,8,182,3,16,115,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,182,3,16,116,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,114,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,34,157,64,26,19,8,182,3,16,118,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,95,151,64,26,19,8,182,3,16,119,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,117,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,124,156,64,26,19,8,182,3,16,121,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,195,151,64,26,19,8,182,3,16,122,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,120,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,222,151,64,26,19,8,182,3,16,125,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,57,156,64,26,19,8,182,3,16,124,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,123,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,156,64,26,19,8,182,3,16,127,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,222,151,64,26,20,8,182,3,16,128,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,126,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,156,64,26,20,8,182,3,16,130,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,182,3,16,131,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,129,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,182,3,16,133,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,182,3,16,134,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,132,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,182,3,16,137,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,182,3,16,136,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,135,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,182,3,16,139,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,182,3,16,140,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,138,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,182,3,16,142,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,182,3,16,143,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,141,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,182,3,16,145,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,182,3,16,146,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,144,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,182,3,16,149,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,182,3,16,148,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,147,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,182,3,16,151,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,182,3,16,152,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,150,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,237,156,64,26,20,8,182,3,16,154,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,182,3,16,155,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,153,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,182,3,16,158,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,182,3,16,157,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,156,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,182,3,16,161,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,101,157,64,26,20,8,182,3,16,160,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,159,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,182,3,16,164,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,182,3,16,163,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,162,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,182,3,16,166,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,182,3,16,167,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,165,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,182,3,16,169,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,182,3,16,170,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,168,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,182,3,16,173,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,182,3,16,172,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,171,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,237,156,64,26,20,8,182,3,16,175,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,182,3,16,176,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,174,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,182,3,16,178,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,182,3,16,179,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,177,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,101,157,64,26,20,8,182,3,16,181,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,182,3,16,182,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,180,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,182,3,16,184,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,15,151,64,26,20,8,182,3,16,185,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,183,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,182,3,16,187,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,182,3,16,188,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,186,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,182,3,16,190,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,182,3,16,191,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,189,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,182,3,16,193,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,182,3,16,194,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,192,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,182,3,16,197,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,182,3,16,196,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,195,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,41,157,64,26,20,8,182,3,16,199,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,182,3,16,200,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,198,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,182,3,16,202,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,182,3,16,203,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,201,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,182,3,16,205,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,15,151,64,26,20,8,182,3,16,206,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,204,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,157,64,26,20,8,182,3,16,208,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,182,3,16,209,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,207,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,182,3,16,211,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,182,3,16,212,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,210,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,182,3,16,214,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,182,3,16,215,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,213,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,182,3,16,217,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,182,3,16,218,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,216,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,182,3,16,220,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,182,3,16,221,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,219,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,182,3,16,223,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,182,3,16,224,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,222,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,182,3,16,226,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,182,3,16,227,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,225,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,182,3,16,229,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,182,3,16,230,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,228,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,182,3,16,232,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,182,3,16,233,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,231,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,182,3,16,235,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,182,3,16,236,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,234,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,181,157,64,26,20,8,182,3,16,238,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,182,3,16,239,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,237,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,182,3,16,241,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,182,3,16,242,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,240,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,101,157,64,26,20,8,182,3,16,244,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,182,3,16,245,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,243,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,101,157,64,26,20,8,182,3,16,247,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,182,3,16,248,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,246,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,182,3,16,250,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,182,3,16,251,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,249,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,182,3,16,253,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,182,3,16,254,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,252,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,182,3,16,128,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,182,3,16,129,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,255,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,182,3,16,131,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,182,3,16,132,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,130,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,157,64,26,20,8,182,3,16,134,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,182,3,16,135,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,133,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,182,3,16,137,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,182,3,16,138,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,136,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,182,3,16,140,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,182,3,16,141,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,139,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,182,3,16,143,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,182,3,16,144,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,142,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,182,3,16,146,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,182,3,16,147,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,145,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,182,3,16,149,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,182,3,16,150,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,148,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,182,3,16,152,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,182,3,16,153,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,151,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,182,3,16,155,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,182,3,16,156,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,154,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,182,3,16,158,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,182,3,16,159,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,157,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,182,3,16,161,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,182,3,16,162,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,160,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,182,3,16,164,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,182,3,16,165,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,163,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,182,3,16,167,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,182,3,16,168,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,166,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,182,3,16,170,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,182,3,16,171,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,169,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,182,3,16,174,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,182,3,16,173,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,172,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,182,3,16,176,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,182,3,16,177,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,175,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,182,3,16,179,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,182,3,16,180,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,178,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,201,157,64,26,20,8,182,3,16,182,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,182,3,16,183,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,181,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,182,3,16,185,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,182,3,16,186,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,184,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,182,3,16,188,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,182,3,16,189,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,187,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,182,3,16,191,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,182,3,16,192,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,190,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,182,3,16,194,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,182,3,16,195,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,193,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,182,3,16,198,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,182,3,16,197,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,196,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,182,3,16,200,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,182,3,16,201,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,199,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,201,157,64,26,20,8,182,3,16,203,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,182,3,16,204,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,202,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,182,3,16,206,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,182,3,16,207,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,205,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,182,3,16,209,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,182,3,16,210,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,208,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,182,3,16,212,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,182,3,16,213,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,211,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,182,3,16,215,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,182,3,16,216,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,214,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,182,3,16,218,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,182,3,16,219,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,217,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,182,3,16,221,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,182,3,16,222,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,220,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,182,3,16,225,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,182,3,16,224,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,223,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,182,3,16,227,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,182,3,16,228,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,226,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,182,3,16,230,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,182,3,16,231,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,229,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,182,3,16,233,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,182,3,16,234,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,232,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,182,3,16,236,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,182,3,16,237,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,235,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,182,3,16,239,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,182,3,16,240,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,238,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,182,3,16,242,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,182,3,16,243,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,241,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,182,3,16,245,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,182,3,16,246,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,244,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,254,157,64,26,20,8,182,3,16,248,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,182,3,16,249,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,247,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,254,157,64,26,20,8,182,3,16,251,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,182,3,16,252,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,250,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,201,157,64,26,20,8,182,3,16,254,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,182,3,16,255,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,253,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,182,3,16,129,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,182,3,16,130,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,128,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,182,3,16,133,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,182,3,16,132,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,131,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,182,3,16,135,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,35,151,64,26,20,8,182,3,16,136,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,134,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,182,3,16,138,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,182,3,16,139,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,137,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,182,3,16,141,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,182,3,16,142,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,140,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,182,3,16,145,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,182,3,16,144,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,143,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,182,3,16,147,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,182,3,16,148,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,146,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,182,3,16,150,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,182,3,16,151,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,149,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,254,157,64,26,20,8,182,3,16,153,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,182,3,16,154,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,152,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,182,3,16,156,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,182,3,16,157,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,155,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,201,157,64,26,20,8,182,3,16,159,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,182,3,16,160,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,182,3,16,158,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,182,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,182,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,182,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,114,82,222,253,229,245,141,64,26,19,8,182,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,133,18,51,117,0,128,166,64,26,19,8,182,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,182,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,18,51,117,0,128,166,64,26,19,8,182,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,114,82,222,253,229,245,141,64,26,19,8,182,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,182,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,182,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,182,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,182,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,56,101,98,56,26,19,8,184,3,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,184,3,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,71,16,67,156,248,246,147,64,26,19,8,184,3,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,142,220,126,209,208,113,166,64,26,19,8,184,3,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,240,233,234,60,71,148,115,64,26,19,8,184,3,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,244,188,113,255,53,212,116,64,26,19,8,184,3,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,184,3,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,142,220,126,209,208,113,166,64,26,19,8,184,3,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,71,16,67,156,248,246,147,64,26,19,8,184,3,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,184,3,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,184,3,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,184,3,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,184,3,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,185,3,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,56,101,98,56,26,19,8,185,3,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,185,3,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,88,160,6,99,176,131,126,64,26,19,8,185,3,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,17,226,210,133,143,101,149,64,26,19,8,185,3,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,164,50,111,50,27,61,167,64,26,19,8,185,3,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,9,141,9,241,211,121,64,26,19,8,185,3,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,185,3,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,164,50,111,50,27,61,167,64,26,19,8,185,3,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,17,226,210,133,143,101,149,64,26,19,8,185,3,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,185,3,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,185,3,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,185,3,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,188,3,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,56,101,98,56,26,19,8,188,3,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,188,3,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,181,99,40,188,194,222,151,64,26,19,8,188,3,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,233,245,135,127,100,28,168,64,26,19,8,188,3,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,48,44,78,127,67,9,106,64,26,19,8,188,3,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,112,83,46,158,62,52,116,64,26,19,8,188,3,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,188,3,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,233,245,135,127,100,28,168,64,26,19,8,188,3,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,181,99,40,188,194,222,151,64,26,19,8,188,3,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,188,3,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,188,3,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,188,3,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,56,101,98,56,26,19,8,189,3,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,189,3,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,243,192,197,163,75,81,154,64,26,19,8,189,3,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,19,235,245,109,30,1,167,64,26,19,8,189,3,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,200,153,176,137,227,158,116,64,26,19,8,189,3,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,104,173,32,25,97,180,113,64,26,19,8,189,3,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,189,3,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,76,254,43,223,250,148,169,64,26,19,8,189,3,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,77,236,13,234,99,190,158,64,26,19,8,189,3,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,189,3,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,189,3,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,189,3,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,189,3,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,152,4,18,149,4,10,146,4,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,116,197,145,49,97,148,167,64,26,19,8,184,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,171,78,52,157,208,69,142,64,26,19,8,184,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,184,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,36,69,46,20,10,155,167,64,26,19,8,184,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,105,77,166,39,116,96,142,64,26,19,8,184,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,184,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,225,67,160,158,173,181,167,64,26,19,8,184,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,71,151,199,115,141,118,144,64,26,19,8,184,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,184,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,184,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,184,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,184,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,184,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,184,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,188,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,188,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,143,6,110,24,18,125,167,64,26,19,8,188,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,39,93,21,229,119,19,141,64,26,19,8,188,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,188,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,39,93,21,229,119,19,141,64,26,19,8,188,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,213,129,153,95,247,224,167,64,26,19,8,188,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,188,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,188,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,188,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,188,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,152,4,18,149,4,10,146,4,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,253,139,225,138,55,168,64,26,19,8,189,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,172,112,46,3,145,118,139,64,26,19,8,189,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,189,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,137,123,211,19,41,102,168,64,26,19,8,189,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,161,11,102,52,246,108,145,64,26,19,8,189,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,189,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,178,59,133,162,212,98,168,64,26,19,8,189,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,66,12,45,111,164,95,145,64,26,19,8,189,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,189,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,189,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,189,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,189,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,189,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,189,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,204,14,18,201,14,10,198,14,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,190,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,132,240,56,15,64,79,169,64,26,19,8,190,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,77,113,245,61,63,105,139,64,26,19,8,190,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,187,47,192,69,230,95,169,64,26,19,8,190,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,109,154,170,153,244,51,144,64,26,19,8,190,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,48,78,187,66,69,169,64,26,19,8,190,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,180,66,111,64,226,66,143,64,26,19,8,190,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,49,21,246,240,55,169,64,26,19,8,190,3,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,123,70,25,161,247,242,142,64,26,19,8,190,3,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,95,72,110,81,2,203,142,64,26,19,8,190,3,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,23,114,42,162,243,45,169,64,26,19,8,190,3,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,10,78,109,98,34,83,142,64,26,19,8,190,3,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,156,116,70,141,172,248,168,64,26,19,8,190,3,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,7,54,134,145,180,218,168,64,26,19,8,190,3,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,10,78,109,98,34,83,142,64,26,19,8,190,3,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,182,233,174,11,212,168,64,26,19,8,190,3,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,199,76,223,236,197,109,142,64,26,19,8,190,3,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,95,72,110,81,2,203,142,64,26,19,8,190,3,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,208,246,254,90,14,202,168,64,26,19,8,190,3,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,208,246,254,90,14,202,168,64,26,19,8,190,3,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,85,67,54,123,144,53,143,64,26,19,8,190,3,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,7,54,134,145,180,218,168,64,26,19,8,190,3,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,0,28,156,44,168,18,144,64,26,19,8,190,3,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,181,91,57,175,238,168,64,26,19,8,190,3,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,123,25,128,65,239,71,144,64,26,19,8,190,3,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,40,174,206,178,50,129,169,64,26,19,8,190,3,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,232,151,142,174,59,105,144,64,26,19,8,190,3,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,109,242,203,129,152,169,64,26,19,8,190,3,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,232,151,142,174,59,105,144,64,26,19,8,190,3,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,229,172,64,61,214,155,169,64,26,19,8,190,3,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,57,24,242,203,146,98,144,64,26,19,8,190,3,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,190,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,190,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,190,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,56,101,98,56,26,19,8,194,3,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,194,3,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,85,0,184,151,130,85,150,64,26,19,8,194,3,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,83,36,21,37,158,238,163,64,26,19,8,194,3,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,240,224,239,47,63,89,122,64,26,19,8,194,3,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,200,144,181,124,219,99,123,64,26,19,8,194,3,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,194,3,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,36,21,37,158,238,163,64,26,19,8,194,3,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,85,0,184,151,130,85,150,64,26,19,8,194,3,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,194,3,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,194,3,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,194,3,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,194,3,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,56,101,98,56,26,19,8,195,3,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,195,3,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,200,144,181,124,219,99,123,64,26,19,8,195,3,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,85,0,184,151,130,85,150,64,26,19,8,195,3,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,83,36,21,37,158,238,163,64,26,19,8,195,3,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,240,224,239,47,63,89,122,64,26,19,8,195,3,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,195,3,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,36,21,37,158,238,163,64,26,19,8,195,3,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,85,0,184,151,130,85,150,64,26,19,8,195,3,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,195,3,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,195,3,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,195,3,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,195,3,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,221,13,18,218,13,10,215,13,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,18,231,143,157,10,23,170,64,26,19,8,194,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,190,71,167,22,84,216,142,64,26,19,8,194,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,190,71,167,22,84,216,142,64,26,19,8,194,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,9,226,87,199,152,129,170,64,26,19,8,194,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,224,33,166,56,237,132,170,64,26,19,8,194,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,0,73,53,140,176,189,142,64,26,19,8,194,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,230,200,98,92,36,170,64,26,19,8,194,3,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,1,90,50,191,16,86,141,64,26,19,8,194,3,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,103,243,186,97,16,170,64,26,19,8,194,3,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,1,90,50,191,16,86,141,64,26,19,8,194,3,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,4,104,186,245,15,3,170,64,26,19,8,194,3,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,29,88,221,14,6,126,141,64,26,19,8,194,3,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,165,104,129,48,190,245,169,64,26,19,8,194,3,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,48,81,80,136,137,16,142,64,26,19,8,194,3,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,206,40,51,191,105,242,169,64,26,19,8,194,3,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,85,67,54,123,144,53,143,64,26,19,8,194,3,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,232,29,19,103,252,169,64,26,19,8,194,3,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,204,153,227,94,70,65,144,64,26,19,8,194,3,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,167,8,103,100,6,170,64,26,19,8,194,3,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,246,22,100,86,54,125,144,64,26,19,8,194,3,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,38,23,212,176,39,170,64,26,19,8,194,3,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,208,19,129,48,207,191,144,64,26,19,8,194,3,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,222,100,215,207,168,69,170,64,26,19,8,194,3,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,237,17,44,128,196,231,144,64,26,19,8,194,3,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,97,244,169,65,136,170,64,26,19,8,194,3,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,9,16,215,207,185,15,145,64,26,19,8,194,3,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,186,30,195,18,134,199,170,64,26,19,8,194,3,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,9,16,215,207,185,15,145,64,26,19,8,194,3,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,194,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,194,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,194,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,194,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,178,9,18,175,9,10,172,9,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,195,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,195,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,181,100,105,166,162,115,140,64,26,19,8,195,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,175,92,188,211,207,242,170,64,26,19,8,195,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,195,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,134,156,10,69,36,246,170,64,26,19,8,195,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,218,24,185,6,65,85,144,64,26,19,8,195,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,195,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,13,92,245,152,33,0,171,64,26,19,8,195,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,113,20,72,107,125,178,144,64,26,19,8,195,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,195,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,220,31,241,38,236,170,64,26,19,8,195,3,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,47,64,83,85,41,120,143,64,26,19,8,195,3,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,195,3,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,220,31,241,38,236,170,64,26,19,8,195,3,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,181,83,108,115,66,219,141,64,26,19,8,195,3,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,195,3,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,215,28,110,98,123,239,170,64,26,19,8,195,3,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,219,86,79,153,169,152,141,64,26,19,8,195,3,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,195,3,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,115,99,219,48,70,142,140,64,26,19,8,195,3,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,56,217,117,144,17,60,171,64,26,19,8,195,3,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,195,3,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,205,23,54,140,9,90,171,64,26,19,8,195,3,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,248,101,247,27,255,88,140,64,26,19,8,195,3,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,195,3,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,153,102,190,86,173,75,140,64,26,19,8,195,3,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,32,85,104,18,165,146,171,64,26,19,8,195,3,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,195,3,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,195,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,195,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,195,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,204,188,1,18,200,188,1,10,196,188,1,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,198,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,198,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,198,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,161,187,1,10,6,112,111,105,110,116,115,18,149,187,1,18,145,187,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,234,157,64,26,19,8,198,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,198,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,157,64,26,19,8,198,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,69,151,64,26,19,8,198,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,201,157,64,26,19,8,198,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,69,151,64,26,19,8,198,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,157,64,26,19,8,198,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,29,151,64,26,19,8,198,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,18,158,64,26,19,8,198,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,29,151,64,26,19,8,198,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,234,157,64,26,19,8,198,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,75,151,64,26,19,8,198,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,221,157,64,26,19,8,198,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,75,151,64,26,19,8,198,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,234,157,64,26,19,8,198,3,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,29,151,64,26,19,8,198,3,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,254,157,64,26,19,8,198,3,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,251,150,64,26,19,8,198,3,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,18,158,64,26,19,8,198,3,16,34,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,198,3,16,35,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,33,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,18,158,64,26,19,8,198,3,16,37,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,22,151,64,26,19,8,198,3,16,38,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,36,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,157,64,26,19,8,198,3,16,40,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,49,151,64,26,19,8,198,3,16,41,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,39,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,29,151,64,26,19,8,198,3,16,44,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,221,157,64,26,19,8,198,3,16,43,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,42,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,228,157,64,26,19,8,198,3,16,46,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,251,150,64,26,19,8,198,3,16,47,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,45,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,25,158,64,26,19,8,198,3,16,49,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,218,150,64,26,19,8,198,3,16,50,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,48,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,45,158,64,26,19,8,198,3,16,52,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,218,150,64,26,19,8,198,3,16,53,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,51,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,45,158,64,26,19,8,198,3,16,55,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,238,150,64,26,19,8,198,3,16,56,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,54,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,18,158,64,26,19,8,198,3,16,58,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,15,151,64,26,19,8,198,3,16,59,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,57,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,214,157,64,26,19,8,198,3,16,61,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,42,151,64,26,19,8,198,3,16,62,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,60,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,157,64,26,19,8,198,3,16,64,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,42,151,64,26,19,8,198,3,16,65,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,63,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,174,157,64,26,19,8,198,3,16,67,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,29,151,64,26,19,8,198,3,16,68,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,66,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,194,157,64,26,19,8,198,3,16,70,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,238,150,64,26,19,8,198,3,16,71,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,69,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,201,157,64,26,19,8,198,3,16,73,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,238,150,64,26,19,8,198,3,16,74,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,72,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,181,157,64,26,19,8,198,3,16,76,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,22,151,64,26,19,8,198,3,16,77,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,75,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,141,157,64,26,19,8,198,3,16,79,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,42,151,64,26,19,8,198,3,16,80,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,78,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,141,157,64,26,19,8,198,3,16,82,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,49,151,64,26,19,8,198,3,16,83,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,81,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,157,64,26,19,8,198,3,16,85,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,35,151,64,26,19,8,198,3,16,86,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,84,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,2,151,64,26,19,8,198,3,16,89,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,214,157,64,26,19,8,198,3,16,88,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,87,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,234,157,64,26,19,8,198,3,16,91,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,2,151,64,26,19,8,198,3,16,92,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,90,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,194,157,64,26,19,8,198,3,16,94,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,49,151,64,26,19,8,198,3,16,95,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,93,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,134,157,64,26,19,8,198,3,16,97,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,62,151,64,26,19,8,198,3,16,98,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,96,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,114,157,64,26,19,8,198,3,16,100,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,42,151,64,26,19,8,198,3,16,101,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,99,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,157,64,26,19,8,198,3,16,103,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,251,150,64,26,19,8,198,3,16,104,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,102,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,157,64,26,19,8,198,3,16,106,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,231,150,64,26,19,8,198,3,16,107,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,105,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,157,64,26,19,8,198,3,16,109,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,251,150,64,26,19,8,198,3,16,110,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,108,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,174,157,64,26,19,8,198,3,16,112,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,35,151,64,26,19,8,198,3,16,113,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,111,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,114,157,64,26,19,8,198,3,16,115,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,55,151,64,26,19,8,198,3,16,116,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,114,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,81,157,64,26,19,8,198,3,16,118,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,55,151,64,26,19,8,198,3,16,119,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,117,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,81,157,64,26,19,8,198,3,16,121,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,42,151,64,26,19,8,198,3,16,122,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,120,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,114,157,64,26,19,8,198,3,16,124,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,15,151,64,26,19,8,198,3,16,125,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,123,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,174,157,64,26,19,8,198,3,16,127,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,198,3,16,128,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,126,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,198,3,16,130,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,198,3,16,131,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,129,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,198,3,16,133,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,198,3,16,134,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,132,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,198,3,16,136,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,198,3,16,137,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,135,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,198,3,16,139,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,198,3,16,140,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,138,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,198,3,16,142,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,198,3,16,143,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,141,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,198,3,16,145,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,198,3,16,146,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,144,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,198,3,16,149,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,198,3,16,148,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,147,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,198,3,16,151,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,15,151,64,26,20,8,198,3,16,152,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,150,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,198,3,16,155,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,198,3,16,154,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,153,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,198,3,16,157,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,198,3,16,158,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,156,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,198,3,16,160,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,198,3,16,161,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,159,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,198,3,16,164,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,198,3,16,163,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,162,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,198,3,16,166,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,198,3,16,167,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,165,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,198,3,16,169,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,198,3,16,170,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,168,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,198,3,16,172,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,198,3,16,173,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,171,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,198,3,16,175,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,198,3,16,176,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,174,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,198,3,16,178,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,15,151,64,26,20,8,198,3,16,179,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,177,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,198,3,16,181,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,15,151,64,26,20,8,198,3,16,182,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,180,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,198,3,16,184,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,198,3,16,185,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,183,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,181,157,64,26,20,8,198,3,16,187,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,198,3,16,188,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,186,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,198,3,16,191,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,198,3,16,190,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,189,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,157,64,26,20,8,198,3,16,193,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,198,3,16,194,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,192,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,198,3,16,197,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,198,3,16,196,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,195,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,198,3,16,199,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,198,3,16,200,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,198,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,198,3,16,202,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,35,151,64,26,20,8,198,3,16,203,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,201,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,198,3,16,205,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,198,3,16,206,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,204,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,198,3,16,208,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,198,3,16,209,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,207,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,198,3,16,211,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,198,3,16,212,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,210,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,198,3,16,214,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,198,3,16,215,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,213,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,198,3,16,217,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,198,3,16,218,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,216,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,198,3,16,220,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,198,3,16,221,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,219,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,198,3,16,223,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,198,3,16,224,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,222,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,198,3,16,226,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,198,3,16,227,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,225,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,198,3,16,229,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,198,3,16,230,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,228,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,198,3,16,232,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,198,3,16,233,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,231,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,198,3,16,235,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,198,3,16,236,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,234,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,198,3,16,238,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,198,3,16,239,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,237,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,198,3,16,241,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,198,3,16,242,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,240,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,198,3,16,244,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,198,3,16,245,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,243,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,198,3,16,247,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,198,3,16,248,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,246,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,198,3,16,250,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,198,3,16,251,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,249,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,198,3,16,253,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,198,3,16,254,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,252,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,198,3,16,128,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,198,3,16,129,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,255,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,198,3,16,131,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,198,3,16,132,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,130,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,198,3,16,134,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,198,3,16,135,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,133,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,198,3,16,137,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,198,3,16,138,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,136,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,198,3,16,141,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,198,3,16,140,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,139,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,198,3,16,143,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,198,3,16,144,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,142,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,198,3,16,146,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,198,3,16,147,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,145,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,157,64,26,20,8,198,3,16,149,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,198,3,16,150,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,148,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,198,3,16,152,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,198,3,16,153,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,151,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,198,3,16,155,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,198,3,16,156,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,154,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,198,3,16,158,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,198,3,16,159,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,157,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,198,3,16,162,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,198,3,16,161,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,160,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,198,3,16,164,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,198,3,16,165,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,163,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,198,3,16,167,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,198,3,16,168,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,166,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,198,3,16,171,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,198,3,16,170,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,169,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,198,3,16,173,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,198,3,16,174,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,172,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,198,3,16,176,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,198,3,16,177,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,175,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,198,3,16,179,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,198,3,16,180,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,178,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,198,3,16,182,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,198,3,16,183,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,181,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,198,3,16,185,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,198,3,16,186,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,184,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,198,3,16,188,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,198,3,16,189,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,187,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,198,3,16,191,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,198,3,16,192,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,190,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,157,64,26,20,8,198,3,16,194,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,198,3,16,195,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,193,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,198,3,16,198,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,198,3,16,197,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,196,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,198,3,16,200,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,198,3,16,201,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,199,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,157,64,26,20,8,198,3,16,203,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,198,3,16,204,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,202,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,198,3,16,207,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,198,3,16,206,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,205,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,198,3,16,209,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,198,3,16,210,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,208,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,198,3,16,212,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,198,3,16,213,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,211,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,198,3,16,215,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,198,3,16,216,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,214,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,198,3,16,218,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,198,3,16,219,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,217,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,157,64,26,20,8,198,3,16,221,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,198,3,16,222,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,220,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,198,3,16,224,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,198,3,16,225,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,223,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,198,3,16,227,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,198,3,16,228,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,226,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,198,3,16,230,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,198,3,16,231,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,229,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,181,157,64,26,20,8,198,3,16,233,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,198,3,16,234,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,232,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,198,3,16,236,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,198,3,16,237,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,235,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,198,3,16,239,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,198,3,16,240,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,238,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,198,3,16,243,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,157,64,26,20,8,198,3,16,242,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,241,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,198,3,16,245,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,198,3,16,246,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,244,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,198,3,16,248,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,198,3,16,249,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,247,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,198,3,16,251,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,198,3,16,252,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,250,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,198,3,16,254,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,198,3,16,255,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,253,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,198,3,16,129,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,198,3,16,130,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,128,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,198,3,16,132,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,198,3,16,133,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,131,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,198,3,16,135,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,198,3,16,136,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,134,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,198,3,16,138,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,198,3,16,139,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,137,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,198,3,16,141,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,198,3,16,142,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,140,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,198,3,16,145,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,198,3,16,144,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,143,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,198,3,16,147,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,198,3,16,148,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,146,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,198,3,16,151,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,198,3,16,150,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,149,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,198,3,16,153,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,35,151,64,26,20,8,198,3,16,154,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,152,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,198,3,16,157,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,157,64,26,20,8,198,3,16,156,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,155,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,198,3,16,159,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,198,3,16,160,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,158,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,21,157,64,26,20,8,198,3,16,162,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,198,3,16,163,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,161,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,198,3,16,165,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,198,3,16,166,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,164,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,237,156,64,26,20,8,198,3,16,168,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,198,3,16,169,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,167,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,198,3,16,171,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,198,3,16,172,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,170,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,157,64,26,20,8,198,3,16,174,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,198,3,16,175,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,173,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,157,64,26,20,8,198,3,16,177,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,198,3,16,178,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,176,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,198,3,16,180,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,198,3,16,181,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,179,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,157,64,26,20,8,198,3,16,183,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,198,3,16,184,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,182,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,64,26,20,8,198,3,16,186,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,198,3,16,187,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,185,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,198,3,16,189,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,198,3,16,190,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,188,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,198,3,16,192,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,198,3,16,193,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,191,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,198,3,16,195,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,198,3,16,196,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,194,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,198,3,16,199,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,198,3,16,198,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,197,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,21,157,64,26,20,8,198,3,16,201,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,198,3,16,202,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,200,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,14,157,64,26,20,8,198,3,16,204,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,198,3,16,205,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,203,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,64,26,20,8,198,3,16,207,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,198,3,16,208,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,206,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,198,3,16,210,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,198,3,16,211,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,209,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,198,3,16,214,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,198,3,16,213,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,212,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,64,26,20,8,198,3,16,216,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,198,3,16,217,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,215,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,14,157,64,26,20,8,198,3,16,219,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,198,3,16,220,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,218,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,198,3,16,222,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,198,3,16,223,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,221,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,198,3,16,225,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,198,3,16,226,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,224,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,198,3,16,228,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,198,3,16,229,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,227,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,250,156,64,26,20,8,198,3,16,231,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,198,3,16,232,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,230,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,35,151,64,26,20,8,198,3,16,235,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,21,157,64,26,20,8,198,3,16,234,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,233,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,198,3,16,237,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,35,151,64,26,20,8,198,3,16,238,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,236,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,198,3,16,240,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,198,3,16,241,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,239,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,198,3,16,243,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,198,3,16,244,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,242,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,198,3,16,247,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,198,3,16,246,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,245,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,190,156,64,26,20,8,198,3,16,249,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,198,3,16,250,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,248,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,198,3,16,252,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,198,3,16,253,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,251,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,198,3,16,255,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,198,3,16,128,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,254,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,198,3,16,130,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,198,3,16,131,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,129,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,198,3,16,133,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,198,3,16,134,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,132,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,198,3,16,136,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,198,3,16,137,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,135,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,198,3,16,139,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,198,3,16,140,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,138,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,198,3,16,142,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,198,3,16,143,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,141,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,198,3,16,145,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,198,3,16,146,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,144,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,64,26,20,8,198,3,16,148,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,198,3,16,149,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,147,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,64,26,20,8,198,3,16,151,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,198,3,16,152,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,150,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,198,3,16,154,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,198,3,16,155,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,153,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,156,64,26,20,8,198,3,16,157,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,198,3,16,158,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,156,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,198,3,16,160,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,198,3,16,161,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,159,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,198,3,16,163,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,198,3,16,164,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,162,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,190,156,64,26,20,8,198,3,16,166,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,198,3,16,167,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,165,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,198,3,16,169,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,198,3,16,170,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,168,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,198,3,16,173,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,198,3,16,172,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,171,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,177,156,64,26,20,8,198,3,16,175,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,198,3,16,176,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,174,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,190,156,64,26,20,8,198,3,16,178,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,198,3,16,179,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,177,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,177,156,64,26,20,8,198,3,16,181,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,198,3,16,182,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,180,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,198,3,16,184,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,198,3,16,185,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,183,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,198,3,16,187,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,198,3,16,188,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,186,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,198,3,16,190,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,198,3,16,191,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,189,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,156,64,26,20,8,198,3,16,193,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,198,3,16,194,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,192,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,14,157,64,26,20,8,198,3,16,196,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,198,3,16,197,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,195,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,198,3,16,199,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,198,3,16,200,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,198,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,198,3,16,202,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,198,3,16,203,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,201,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,198,3,16,205,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,198,3,16,206,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,204,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,198,3,16,208,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,198,3,16,209,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,207,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,198,3,16,211,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,198,3,16,212,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,210,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,198,3,16,215,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,198,3,16,214,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,213,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,198,3,16,217,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,198,3,16,218,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,216,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,198,3,16,220,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,198,3,16,221,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,219,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,198,3,16,224,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,198,3,16,223,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,222,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,21,157,64,26,20,8,198,3,16,226,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,198,3,16,227,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,225,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,198,3,16,229,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,198,3,16,230,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,228,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,198,3,16,232,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,198,3,16,233,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,231,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,41,157,64,26,20,8,198,3,16,235,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,198,3,16,236,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,234,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,198,3,16,238,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,198,3,16,239,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,237,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,198,3,16,241,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,198,3,16,242,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,240,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,198,3,16,244,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,198,3,16,245,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,243,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,198,3,16,247,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,198,3,16,248,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,246,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,157,64,26,20,8,198,3,16,250,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,198,3,16,251,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,249,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,101,157,64,26,20,8,198,3,16,253,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,198,3,16,254,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,198,3,16,252,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,198,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,195,8,18,192,8,10,189,8,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,199,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,199,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,199,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,131,242,21,235,10,173,64,26,19,8,199,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,247,84,250,232,158,192,141,64,26,19,8,199,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,199,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,131,242,21,235,10,173,64,26,19,8,199,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,85,22,157,27,136,138,144,64,26,19,8,199,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,199,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,145,60,23,30,26,154,173,64,26,19,8,199,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,85,22,157,27,136,138,144,64,26,19,8,199,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,199,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,12,58,251,50,97,207,173,64,26,19,8,199,3,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,180,21,214,224,217,151,144,64,26,19,8,199,3,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,199,3,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,120,244,243,170,250,173,64,26,19,8,199,3,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,180,21,214,224,217,151,144,64,26,19,8,199,3,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,199,3,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,56,166,130,86,247,173,64,26,19,8,199,3,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,228,74,138,60,187,149,142,64,26,19,8,199,3,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,199,3,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,121,184,9,160,173,240,173,64,26,19,8,199,3,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,67,91,192,52,109,59,141,64,26,19,8,199,3,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,199,3,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,120,187,46,89,237,173,64,26,19,8,199,3,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,228,91,135,111,27,46,141,64,26,19,8,199,3,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,199,3,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,199,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,199,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,204,14,18,201,14,10,198,14,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,200,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,200,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,200,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,164,13,10,6,112,111,105,110,116,115,18,153,13,18,150,13,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,233,4,228,168,158,233,172,64,26,19,8,200,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,99,132,117,144,34,6,146,64,26,19,8,200,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,233,4,228,168,158,233,172,64,26,19,8,200,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,216,229,193,109,32,140,148,64,26,19,8,200,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,255,228,151,126,97,173,64,26,19,8,200,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,41,102,37,139,119,133,148,64,26,19,8,200,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,252,1,114,23,164,173,64,26,19,8,200,3,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,202,102,236,197,37,120,148,64,26,19,8,200,3,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,121,184,9,160,173,240,173,64,26,19,8,200,3,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,202,102,236,197,37,120,148,64,26,19,8,200,3,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,81,248,87,17,2,244,173,64,26,19,8,200,3,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,93,232,221,88,217,86,148,64,26,19,8,200,3,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,27,185,208,218,91,227,173,64,26,19,8,200,3,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,112,242,77,5,189,129,147,64,26,19,8,200,3,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,121,73,164,181,210,173,64,26,19,8,200,3,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,42,119,34,190,215,29,147,64,26,19,8,200,3,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,231,117,148,72,123,56,147,64,26,19,8,200,3,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,20,130,100,160,142,37,173,64,26,19,8,200,3,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,55,223,71,168,4,174,64,26,19,8,200,3,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,165,116,6,211,30,83,147,64,26,19,8,200,3,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,176,247,144,214,83,1,174,64,26,19,8,200,3,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,217,246,190,160,128,36,147,64,26,19,8,200,3,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,67,121,130,105,7,224,173,64,26,19,8,200,3,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,170,255,160,215,7,106,146,64,26,19,8,200,3,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,58,194,109,15,194,173,64,26,19,8,200,3,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,4,133,60,203,208,248,145,64,26,19,8,200,3,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,143,127,72,181,213,90,173,64,26,19,8,200,3,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,194,131,174,85,116,19,146,64,26,19,8,200,3,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,133,71,198,245,226,172,64,26,19,8,200,3,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,141,1,246,135,18,66,146,64,26,19,8,200,3,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,200,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,238,12,18,235,12,10,232,12,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,201,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,255,249,161,198,231,225,146,64,26,19,8,201,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,207,178,10,143,141,104,174,64,26,19,8,201,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,178,10,143,141,104,174,64,26,19,8,201,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,51,107,93,97,233,26,148,64,26,19,8,201,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,166,242,88,0,226,107,174,64,26,19,8,201,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,226,234,249,67,146,33,148,64,26,19,8,201,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,47,196,75,207,177,174,64,26,19,8,201,3,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,107,103,179,0,212,106,148,64,26,19,8,201,3,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,236,146,180,19,241,174,64,26,19,8,201,3,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,27,231,79,227,124,113,148,64,26,19,8,201,3,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,170,239,146,180,21,175,64,26,19,8,201,3,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,188,231,22,30,43,100,148,64,26,19,8,201,3,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,169,40,88,6,35,175,64,26,19,8,201,3,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,79,105,8,177,222,66,148,64,26,19,8,201,3,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,213,233,118,201,90,38,175,64,26,19,8,201,3,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,89,110,64,135,80,216,147,64,26,19,8,201,3,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,235,4,63,183,11,175,64,26,19,8,201,3,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,13,121,119,110,226,245,146,64,26,19,8,201,3,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,170,239,146,180,21,175,64,26,19,8,201,3,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,203,119,233,248,133,16,147,64,26,19,8,201,3,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,213,233,118,201,90,38,175,64,26,19,8,201,3,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,179,243,219,122,25,103,147,64,26,19,8,201,3,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,84,227,165,130,103,193,148,64,26,19,8,201,3,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,40,39,169,79,246,94,175,64,26,19,8,201,3,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,216,166,69,50,159,101,175,64,26,19,8,201,3,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,98,98,123,42,98,213,148,64,26,19,8,201,3,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,201,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,201,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,201,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,169,3,18,166,3,10,163,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,202,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,97,248,175,42,218,175,64,26,19,8,202,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,174,104,65,118,48,80,148,64,26,19,8,202,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,202,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,97,248,175,42,218,175,64,26,19,8,202,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,160,250,104,1,150,212,146,64,26,19,8,202,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,202,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,202,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,202,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,202,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,202,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,203,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,203,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,203,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,57,99,77,96,53,178,175,64,26,19,8,203,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,42,136,31,241,55,182,145,64,26,19,8,203,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,57,99,77,96,53,178,175,64,26,19,8,203,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,123,8,131,14,143,175,145,64,26,19,8,203,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,125,33,170,62,214,214,175,64,26,19,8,203,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,123,8,131,14,143,175,145,64,26,19,8,203,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,203,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,204,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,204,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,98,206,234,194,93,29,176,64,26,19,8,204,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,61,146,143,157,27,225,144,64,26,19,8,204,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,204,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,98,206,234,194,93,29,176,64,26,19,8,204,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,8,238,220,105,249,222,147,64,26,19,8,204,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,204,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,204,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,204,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,204,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,231,32,18,228,32,10,225,32,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,205,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,205,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,191,31,10,6,112,111,105,110,116,115,18,180,31,18,177,31,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,149,105,189,66,237,130,176,64,26,19,8,205,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,175,138,59,220,240,128,145,64,26,19,8,205,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,149,105,189,66,237,130,176,64,26,19,8,205,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,236,0,47,77,100,79,146,64,26,19,8,205,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,89,201,178,236,235,135,176,64,26,19,8,205,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,122,247,133,219,46,23,147,64,26,19,8,205,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,48,9,1,94,64,139,176,64,26,19,8,205,3,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,145,106,150,38,59,40,148,64,26,19,8,205,3,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,175,170,153,41,158,107,176,64,26,19,8,205,3,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,226,234,249,67,146,33,148,64,26,19,8,205,3,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,212,107,36,156,151,13,148,64,26,19,8,205,3,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,121,107,18,243,247,90,176,64,26,19,8,205,3,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,46,76,50,245,251,75,176,64,26,19,8,205,3,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,183,109,121,76,162,229,147,64,26,19,8,205,3,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,76,249,47,170,62,176,64,26,19,8,205,3,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,141,240,248,84,178,169,147,64,26,19,8,205,3,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,32,205,92,77,1,56,176,64,26,19,8,205,3,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,80,122,5,228,62,219,146,64,26,19,8,205,3,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,187,108,160,104,84,64,176,64,26,19,8,205,3,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,37,253,132,236,78,159,146,64,26,19,8,205,3,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,221,203,206,215,164,82,176,64,26,19,8,205,3,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,89,127,61,186,176,112,146,64,26,19,8,205,3,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,244,104,246,7,63,144,176,64,26,19,8,205,3,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,141,1,246,135,18,66,146,64,26,19,8,205,3,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,61,129,146,106,187,72,146,64,26,19,8,205,3,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,123,40,225,91,60,154,176,64,26,19,8,205,3,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,57,39,83,230,223,180,176,64,26,19,8,205,3,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,184,126,118,127,2,126,146,64,26,19,8,205,3,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,230,61,58,221,190,176,64,26,19,8,205,3,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,37,253,132,236,78,159,146,64,26,19,8,205,3,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,226,69,108,169,45,209,176,64,26,19,8,205,3,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,51,124,90,148,73,179,146,64,26,19,8,205,3,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,45,101,76,167,41,224,176,64,26,19,8,205,3,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,51,124,90,148,73,179,146,64,26,19,8,205,3,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,139,100,133,108,123,237,176,64,26,19,8,205,3,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,198,253,75,39,253,145,146,64,26,19,8,205,3,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,14,138,116,161,66,142,145,64,26,19,8,205,3,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,154,227,90,20,118,1,177,64,26,19,8,205,3,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,195,179,219,203,255,176,64,26,19,8,205,3,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,255,10,159,249,71,122,145,64,26,19,8,205,3,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,67,23,249,34,249,176,64,26,19,8,205,3,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,161,11,102,52,246,108,145,64,26,19,8,205,3,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,200,4,144,194,124,232,176,64,26,19,8,205,3,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,241,139,201,81,77,102,145,64,26,19,8,205,3,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,166,165,97,83,44,214,176,64,26,19,8,205,3,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,32,131,231,26,198,32,146,64,26,19,8,205,3,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,166,165,97,83,44,214,176,64,26,19,8,205,3,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,250,127,4,245,94,99,146,64,26,19,8,205,3,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,212,124,33,207,247,165,146,64,26,19,8,205,3,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,85,37,254,53,213,220,176,64,26,19,8,205,3,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,228,232,137,210,230,176,64,26,19,8,205,3,16,82,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,174,121,62,169,144,232,146,64,26,19,8,205,3,16,83,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,81,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,195,179,219,203,255,176,64,26,19,8,205,3,16,85,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,245,244,105,240,117,76,147,64,26,19,8,205,3,16,86,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,84,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,53,131,158,47,201,9,177,64,26,19,8,205,3,16,88,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,179,243,219,122,25,103,147,64,26,19,8,205,3,16,89,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,87,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,128,162,126,45,197,24,177,64,26,19,8,205,3,16,91,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,108,120,176,51,52,3,147,64,26,19,8,205,3,16,92,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,90,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,193,94,43,193,39,177,64,26,19,8,205,3,16,94,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,194,131,174,85,116,19,146,64,26,19,8,205,3,16,95,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,93,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,182,225,5,100,107,41,177,64,26,19,8,205,3,16,97,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,194,131,174,85,116,19,146,64,26,19,8,205,3,16,98,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,96,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,142,33,84,213,191,44,177,64,26,19,8,205,3,16,100,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,250,127,4,245,94,99,146,64,26,19,8,205,3,16,101,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,99,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,97,162,70,20,48,177,64,26,19,8,205,3,16,103,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,3,116,63,152,112,96,147,64,26,19,8,205,3,16,104,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,102,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,97,162,70,20,48,177,64,26,19,8,205,3,16,106,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,151,245,48,43,36,63,147,64,26,19,8,205,3,16,107,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,105,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,116,224,119,238,14,68,177,64,26,19,8,205,3,16,109,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,174,121,62,169,144,232,146,64,26,19,8,205,3,16,110,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,108,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,31,255,36,181,84,177,64,26,19,8,205,3,16,112,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,255,249,161,198,231,225,146,64,26,19,8,205,3,16,113,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,111,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,205,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,205,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,238,12,18,235,12,10,232,12,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,206,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,206,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,92,31,138,77,52,186,170,64,26,19,8,206,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,52,127,12,1,49,7,157,64,26,19,8,206,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,213,95,159,249,54,176,170,64,26,19,8,206,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,20,41,190,69,115,145,153,64,26,19,8,206,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,234,171,61,78,131,85,153,64,26,19,8,206,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,110,24,253,198,183,76,171,64,26,19,8,206,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,98,86,246,135,1,120,171,64,26,19,8,206,3,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,234,171,61,78,131,85,153,64,26,19,8,206,3,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,213,203,47,252,139,171,64,26,19,8,206,3,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,248,42,19,246,125,105,153,64,26,19,8,206,3,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,129,167,204,178,191,178,153,64,26,19,8,206,3,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,6,20,140,43,244,169,171,64,26,19,8,206,3,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,246,215,231,26,181,86,171,64,26,19,8,206,3,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,252,147,179,148,166,79,155,64,26,19,8,206,3,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,231,88,18,115,186,66,171,64,26,19,8,206,3,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,171,19,80,119,79,86,155,64,26,19,8,206,3,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,81,142,180,131,134,199,155,64,26,19,8,206,3,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,115,146,154,152,64,203,171,64,26,19,8,206,3,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,169,209,33,207,230,219,171,64,26,19,8,206,3,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,29,12,252,181,36,246,155,64,26,19,8,206,3,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,49,145,12,35,228,229,171,64,26,19,8,206,3,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,5,136,238,55,184,76,156,64,26,19,8,206,3,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,214,127,211,59,223,249,156,64,26,19,8,206,3,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,151,216,174,85,99,73,171,64,26,19,8,206,3,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,137,89,217,173,104,53,171,64,26,19,8,206,3,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,214,127,211,59,223,249,156,64,26,19,8,206,3,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,206,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,206,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,224,254,2,18,220,254,2,10,216,254,2,10,181,253,2,10,6,112,111,105,110,116,115,18,169,253,2,18,165,253,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,81,157,64,26,19,8,207,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,95,151,64,26,19,8,207,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,54,157,64,26,19,8,207,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,122,151,64,26,19,8,207,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,157,64,26,19,8,207,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,135,151,64,26,19,8,207,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,157,64,26,19,8,207,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,102,151,64,26,19,8,207,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,41,157,64,26,19,8,207,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,62,151,64,26,19,8,207,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,61,157,64,26,19,8,207,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,62,151,64,26,19,8,207,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,74,157,64,26,19,8,207,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,95,151,64,26,19,8,207,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,74,157,64,26,19,8,207,3,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,129,151,64,26,19,8,207,3,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,157,64,26,19,8,207,3,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,135,151,64,26,19,8,207,3,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,157,64,26,19,8,207,3,16,34,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,109,151,64,26,19,8,207,3,16,35,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,33,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,157,64,26,19,8,207,3,16,37,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,89,151,64,26,19,8,207,3,16,38,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,36,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,101,157,64,26,19,8,207,3,16,40,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,89,151,64,26,19,8,207,3,16,41,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,39,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,101,157,64,26,19,8,207,3,16,43,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,102,151,64,26,19,8,207,3,16,44,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,42,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,68,157,64,26,19,8,207,3,16,46,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,115,151,64,26,19,8,207,3,16,47,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,45,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,74,157,64,26,19,8,207,3,16,49,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,109,151,64,26,19,8,207,3,16,50,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,48,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,141,157,64,26,19,8,207,3,16,52,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,109,151,64,26,19,8,207,3,16,53,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,51,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,157,64,26,19,8,207,3,16,55,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,122,151,64,26,19,8,207,3,16,56,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,54,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,114,157,64,26,19,8,207,3,16,58,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,135,151,64,26,19,8,207,3,16,59,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,57,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,157,64,26,19,8,207,3,16,61,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,129,151,64,26,19,8,207,3,16,62,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,60,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,115,151,64,26,19,8,207,3,16,65,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,157,64,26,19,8,207,3,16,64,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,63,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,157,64,26,19,8,207,3,16,67,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,109,151,64,26,19,8,207,3,16,68,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,66,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,157,64,26,19,8,207,3,16,70,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,109,151,64,26,19,8,207,3,16,71,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,69,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,157,64,26,19,8,207,3,16,73,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,115,151,64,26,19,8,207,3,16,74,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,72,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,157,64,26,19,8,207,3,16,76,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,89,151,64,26,19,8,207,3,16,77,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,75,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,94,157,64,26,19,8,207,3,16,79,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,69,151,64,26,19,8,207,3,16,80,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,78,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,114,157,64,26,19,8,207,3,16,82,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,42,151,64,26,19,8,207,3,16,83,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,81,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,157,64,26,19,8,207,3,16,85,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,22,151,64,26,19,8,207,3,16,86,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,84,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,157,64,26,19,8,207,3,16,88,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,29,151,64,26,19,8,207,3,16,89,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,87,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,49,151,64,26,19,8,207,3,16,92,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,234,157,64,26,19,8,207,3,16,91,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,90,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,157,64,26,19,8,207,3,16,94,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,62,151,64,26,19,8,207,3,16,95,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,93,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,134,157,64,26,19,8,207,3,16,97,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,82,151,64,26,19,8,207,3,16,98,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,96,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,94,157,64,26,19,8,207,3,16,100,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,69,151,64,26,19,8,207,3,16,101,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,99,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,101,157,64,26,19,8,207,3,16,103,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,29,151,64,26,19,8,207,3,16,104,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,102,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,121,157,64,26,19,8,207,3,16,106,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,2,151,64,26,19,8,207,3,16,107,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,105,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,154,157,64,26,19,8,207,3,16,109,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,238,150,64,26,19,8,207,3,16,110,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,108,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,157,64,26,19,8,207,3,16,112,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,231,150,64,26,19,8,207,3,16,113,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,111,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,201,157,64,26,19,8,207,3,16,115,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,207,3,16,116,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,114,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,241,157,64,26,19,8,207,3,16,118,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,231,150,64,26,19,8,207,3,16,119,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,117,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,234,157,64,26,19,8,207,3,16,121,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,207,3,16,122,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,120,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,158,64,26,19,8,207,3,16,124,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,185,150,64,26,19,8,207,3,16,125,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,123,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,158,64,26,19,8,207,3,16,127,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,207,3,16,128,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,126,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,254,157,64,26,20,8,207,3,16,130,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,207,3,16,131,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,129,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,207,3,16,133,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,207,3,16,134,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,132,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,207,3,16,136,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,207,3,16,137,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,135,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,157,64,26,20,8,207,3,16,139,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,207,3,16,140,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,138,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,207,3,16,143,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,207,3,16,142,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,141,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,207,3,16,145,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,207,3,16,146,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,144,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,207,3,16,148,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,207,3,16,149,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,147,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,207,3,16,151,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,207,3,16,152,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,150,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,207,3,16,154,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,207,3,16,155,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,153,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,207,3,16,158,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,207,3,16,157,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,156,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,207,3,16,160,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,207,3,16,161,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,159,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,207,3,16,163,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,207,3,16,164,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,162,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,207,3,16,166,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,207,3,16,167,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,165,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,207,3,16,170,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,207,3,16,169,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,168,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,207,3,16,172,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,207,3,16,173,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,171,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,207,3,16,175,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,207,3,16,176,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,174,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,207,3,16,178,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,15,151,64,26,20,8,207,3,16,179,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,177,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,207,3,16,181,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,207,3,16,182,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,180,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,207,3,16,184,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,207,3,16,185,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,183,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,207,3,16,187,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,207,3,16,188,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,186,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,157,64,26,20,8,207,3,16,190,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,207,3,16,191,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,189,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,157,64,26,20,8,207,3,16,193,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,207,3,16,194,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,192,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,207,3,16,197,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,207,3,16,196,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,195,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,207,3,16,199,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,207,3,16,200,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,198,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,207,3,16,202,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,207,3,16,203,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,201,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,207,3,16,205,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,207,3,16,206,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,204,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,207,3,16,208,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,207,3,16,209,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,207,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,207,3,16,211,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,207,3,16,212,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,210,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,207,3,16,214,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,207,3,16,215,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,213,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,207,3,16,217,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,207,3,16,218,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,216,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,207,3,16,220,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,207,3,16,221,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,219,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,207,3,16,223,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,207,3,16,224,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,222,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,207,3,16,226,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,207,3,16,227,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,225,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,207,3,16,229,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,207,3,16,230,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,228,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,207,3,16,232,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,207,3,16,233,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,231,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,207,3,16,236,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,207,3,16,235,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,234,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,207,3,16,239,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,207,3,16,238,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,237,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,207,3,16,241,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,207,3,16,242,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,240,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,207,3,16,244,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,207,3,16,245,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,243,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,21,157,64,26,20,8,207,3,16,247,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,207,3,16,248,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,246,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,207,3,16,250,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,207,3,16,251,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,249,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,207,3,16,254,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,157,64,26,20,8,207,3,16,253,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,252,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,207,3,16,128,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,35,151,64,26,20,8,207,3,16,129,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,255,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,207,3,16,131,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,207,3,16,132,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,130,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,35,151,64,26,20,8,207,3,16,135,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,207,3,16,134,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,133,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,207,3,16,138,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,207,3,16,137,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,136,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,207,3,16,140,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,207,3,16,141,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,139,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,157,64,26,20,8,207,3,16,143,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,207,3,16,144,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,142,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,207,3,16,147,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,207,3,16,146,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,145,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,207,3,16,149,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,207,3,16,150,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,148,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,207,3,16,152,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,15,151,64,26,20,8,207,3,16,153,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,151,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,207,3,16,155,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,207,3,16,156,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,154,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,207,3,16,158,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,35,151,64,26,20,8,207,3,16,159,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,157,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,14,157,64,26,20,8,207,3,16,161,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,207,3,16,162,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,160,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,157,64,26,20,8,207,3,16,164,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,207,3,16,165,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,163,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,207,3,16,168,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,207,3,16,167,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,166,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,157,64,26,20,8,207,3,16,170,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,207,3,16,171,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,169,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,157,64,26,20,8,207,3,16,173,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,207,3,16,174,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,172,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,237,156,64,26,20,8,207,3,16,176,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,207,3,16,177,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,175,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,207,3,16,179,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,207,3,16,180,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,178,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,207,3,16,182,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,207,3,16,183,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,181,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,64,26,20,8,207,3,16,185,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,207,3,16,186,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,184,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,21,157,64,26,20,8,207,3,16,188,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,207,3,16,189,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,187,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,207,3,16,191,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,207,3,16,192,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,190,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,207,3,16,194,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,207,3,16,195,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,193,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,207,3,16,197,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,207,3,16,198,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,196,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,207,3,16,201,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,207,3,16,200,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,199,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,207,3,16,203,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,207,3,16,204,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,202,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,14,157,64,26,20,8,207,3,16,206,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,207,3,16,207,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,205,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,207,3,16,209,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,207,3,16,210,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,208,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,207,3,16,212,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,207,3,16,213,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,211,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,207,3,16,215,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,15,151,64,26,20,8,207,3,16,216,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,214,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,41,157,64,26,20,8,207,3,16,218,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,207,3,16,219,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,217,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,207,3,16,221,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,207,3,16,222,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,220,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,250,156,64,26,20,8,207,3,16,224,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,207,3,16,225,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,223,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,207,3,16,227,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,207,3,16,228,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,226,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,207,3,16,231,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,207,3,16,230,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,229,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,207,3,16,233,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,207,3,16,234,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,232,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,207,3,16,236,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,207,3,16,237,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,235,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,207,3,16,240,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,207,3,16,239,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,238,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,207,3,16,242,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,207,3,16,243,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,241,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,207,3,16,245,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,207,3,16,246,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,244,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,207,3,16,248,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,207,3,16,249,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,247,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,207,3,16,251,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,207,3,16,252,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,250,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,207,3,16,254,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,207,3,16,255,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,253,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,207,3,16,129,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,207,3,16,130,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,128,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,207,3,16,132,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,207,3,16,133,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,131,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,207,3,16,135,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,207,3,16,136,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,134,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,207,3,16,138,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,207,3,16,139,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,137,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,207,3,16,141,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,207,3,16,142,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,140,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,207,3,16,144,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,35,151,64,26,20,8,207,3,16,145,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,143,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,207,3,16,147,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,207,3,16,148,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,146,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,207,3,16,150,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,207,3,16,151,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,149,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,207,3,16,153,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,207,3,16,154,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,152,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,207,3,16,156,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,207,3,16,157,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,155,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,207,3,16,159,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,207,3,16,160,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,158,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,207,3,16,162,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,207,3,16,163,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,161,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,157,64,26,20,8,207,3,16,165,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,207,3,16,166,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,164,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,207,3,16,168,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,207,3,16,169,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,167,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,207,3,16,171,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,207,3,16,172,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,170,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,41,157,64,26,20,8,207,3,16,174,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,207,3,16,175,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,173,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,207,3,16,177,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,207,3,16,178,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,176,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,207,3,16,181,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,207,3,16,180,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,179,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,207,3,16,183,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,207,3,16,184,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,182,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,207,3,16,187,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,207,3,16,186,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,185,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,207,3,16,189,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,190,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,188,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,207,3,16,192,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,193,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,191,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,196,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,157,64,26,20,8,207,3,16,195,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,194,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,207,3,16,198,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,199,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,197,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,207,3,16,201,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,202,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,200,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,205,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,207,3,16,204,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,203,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,207,3,16,207,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,207,3,16,208,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,206,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,207,3,16,210,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,207,3,16,211,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,209,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,207,3,16,213,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,214,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,212,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,207,3,16,216,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,217,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,215,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,157,64,26,20,8,207,3,16,219,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,220,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,218,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,157,64,26,20,8,207,3,16,222,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,223,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,221,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,207,3,16,225,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,226,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,224,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,207,3,16,228,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,229,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,227,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,41,157,64,26,20,8,207,3,16,231,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,232,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,230,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,207,3,16,234,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,235,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,233,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,207,3,16,237,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,238,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,236,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,207,3,16,240,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,241,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,239,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,3,16,243,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,244,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,242,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,3,16,246,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,247,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,245,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,250,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,254,157,64,26,20,8,207,3,16,249,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,248,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,207,3,16,252,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,207,3,16,253,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,251,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,207,3,16,255,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,207,3,16,128,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,254,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,207,3,16,130,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,207,3,16,131,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,129,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,207,3,16,133,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,207,3,16,134,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,132,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,207,3,16,136,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,207,3,16,137,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,135,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,207,3,16,139,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,207,3,16,140,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,138,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,207,3,16,142,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,143,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,141,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,207,3,16,145,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,146,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,144,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,207,3,16,148,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,207,3,16,149,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,147,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,207,3,16,152,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,207,3,16,151,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,150,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,207,3,16,154,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,207,3,16,155,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,153,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,207,3,16,157,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,207,3,16,158,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,156,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,207,3,16,160,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,207,3,16,161,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,159,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,3,16,163,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,207,3,16,164,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,162,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,207,3,16,166,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,207,3,16,167,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,165,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,254,157,64,26,20,8,207,3,16,169,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,207,3,16,170,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,168,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,207,3,16,172,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,207,3,16,173,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,171,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,207,3,16,175,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,207,3,16,176,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,174,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,207,3,16,178,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,207,3,16,179,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,177,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,207,3,16,181,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,207,3,16,182,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,180,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,190,156,64,26,20,8,207,3,16,184,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,207,3,16,185,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,183,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,207,3,16,187,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,207,3,16,188,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,186,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,191,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,207,3,16,190,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,189,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,207,3,16,193,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,207,3,16,194,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,192,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,237,156,64,26,20,8,207,3,16,196,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,207,3,16,197,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,195,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,207,3,16,200,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,237,156,64,26,20,8,207,3,16,199,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,198,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,203,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,156,64,26,20,8,207,3,16,202,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,201,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,206,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,177,156,64,26,20,8,207,3,16,205,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,204,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,207,3,16,208,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,209,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,207,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,207,3,16,212,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,207,3,16,211,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,210,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,207,3,16,214,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,207,3,16,215,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,213,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,207,3,16,217,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,207,3,16,218,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,216,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,156,64,26,20,8,207,3,16,220,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,207,3,16,221,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,219,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,207,3,16,223,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,207,3,16,224,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,222,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,207,3,16,226,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,207,3,16,227,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,225,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,207,3,16,229,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,207,3,16,230,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,228,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,156,64,26,20,8,207,3,16,232,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,207,3,16,233,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,231,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,207,3,16,235,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,207,3,16,236,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,234,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,207,3,16,238,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,207,3,16,239,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,237,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,156,64,26,20,8,207,3,16,241,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,207,3,16,242,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,240,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,207,3,16,244,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,207,3,16,245,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,243,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,207,3,16,248,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,156,64,26,20,8,207,3,16,247,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,246,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,177,156,64,26,20,8,207,3,16,250,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,15,151,64,26,20,8,207,3,16,251,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,249,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,207,3,16,253,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,207,3,16,254,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,252,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,207,3,16,128,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,207,3,16,129,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,255,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,207,3,16,132,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,177,156,64,26,20,8,207,3,16,131,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,130,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,156,64,26,20,8,207,3,16,134,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,207,3,16,135,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,133,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,207,3,16,137,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,207,3,16,138,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,136,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,207,3,16,140,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,207,3,16,141,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,139,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,156,64,26,20,8,207,3,16,143,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,207,3,16,144,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,142,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,207,3,16,146,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,147,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,145,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,207,3,16,149,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,207,3,16,150,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,148,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,156,64,26,20,8,207,3,16,152,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,207,3,16,153,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,151,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,207,3,16,156,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,207,3,16,155,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,154,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,207,3,16,158,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,159,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,157,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,90,156,64,26,20,8,207,3,16,161,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,207,3,16,162,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,160,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,207,3,16,164,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,207,3,16,165,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,163,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,207,3,16,167,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,168,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,166,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,156,64,26,20,8,207,3,16,170,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,207,3,16,171,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,169,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,207,3,16,174,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,156,64,26,20,8,207,3,16,173,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,172,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,117,156,64,26,20,8,207,3,16,176,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,177,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,175,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,156,64,26,20,8,207,3,16,179,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,207,3,16,180,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,178,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,207,3,16,183,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,156,64,26,20,8,207,3,16,182,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,181,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,207,3,16,185,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,207,3,16,186,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,184,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,207,3,16,188,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,189,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,187,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,156,64,26,20,8,207,3,16,191,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,192,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,190,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,207,3,16,194,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,207,3,16,195,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,193,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,207,3,16,197,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,207,3,16,198,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,196,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,207,3,16,201,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,250,156,64,26,20,8,207,3,16,200,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,199,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,207,3,16,203,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,204,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,202,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,207,3,16,206,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,207,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,205,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,64,26,20,8,207,3,16,209,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,210,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,208,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,207,3,16,212,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,213,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,211,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,207,3,16,215,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,216,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,214,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,207,3,16,218,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,219,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,217,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,177,156,64,26,20,8,207,3,16,221,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,207,3,16,222,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,220,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,177,156,64,26,20,8,207,3,16,224,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,225,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,223,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,207,3,16,227,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,228,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,226,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,207,3,16,230,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,231,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,229,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,207,3,16,233,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,207,3,16,234,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,232,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,156,64,26,20,8,207,3,16,236,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,207,3,16,237,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,235,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,156,64,26,20,8,207,3,16,239,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,240,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,238,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,207,3,16,242,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,207,3,16,243,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,241,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,207,3,16,245,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,207,3,16,246,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,244,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,207,3,16,248,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,249,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,247,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,207,3,16,251,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,252,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,250,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,207,3,16,254,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,255,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,253,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,207,3,16,129,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,207,3,16,130,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,128,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,156,64,26,20,8,207,3,16,132,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,207,3,16,133,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,131,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,207,3,16,135,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,136,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,134,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,139,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,207,3,16,138,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,137,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,207,3,16,141,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,207,3,16,142,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,140,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,207,3,16,144,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,207,3,16,145,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,143,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,156,64,26,20,8,207,3,16,147,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,148,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,146,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,207,3,16,150,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,151,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,149,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,207,3,16,153,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,154,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,152,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,156,64,26,20,8,207,3,16,156,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,207,3,16,157,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,155,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,207,3,16,159,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,207,3,16,160,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,158,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,207,3,16,162,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,163,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,161,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,207,3,16,165,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,166,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,164,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,156,64,26,20,8,207,3,16,168,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,169,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,167,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,177,156,64,26,20,8,207,3,16,171,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,172,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,170,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,156,64,26,20,8,207,3,16,174,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,175,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,173,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,207,3,16,177,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,178,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,176,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,190,156,64,26,20,8,207,3,16,180,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,181,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,179,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,190,156,64,26,20,8,207,3,16,183,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,184,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,182,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,156,64,26,20,8,207,3,16,186,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,207,3,16,187,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,185,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,207,3,16,189,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,190,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,188,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,207,3,16,192,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,193,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,191,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,156,64,26,20,8,207,3,16,195,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,202,151,64,26,20,8,207,3,16,196,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,194,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,207,3,16,198,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,215,151,64,26,20,8,207,3,16,199,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,197,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,207,3,16,201,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,202,151,64,26,20,8,207,3,16,202,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,200,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,207,3,16,204,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,215,151,64,26,20,8,207,3,16,205,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,203,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,207,3,16,207,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,215,151,64,26,20,8,207,3,16,208,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,206,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,207,3,16,210,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,207,3,16,211,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,209,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,207,3,16,213,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,207,3,16,214,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,212,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,70,156,64,26,20,8,207,3,16,216,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,207,3,16,217,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,215,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,207,3,16,219,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,202,151,64,26,20,8,207,3,16,220,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,218,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,207,3,16,222,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,207,3,16,223,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,221,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,207,3,16,225,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,207,3,16,226,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,224,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,207,3,16,228,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,207,3,16,229,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,227,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,190,156,64,26,20,8,207,3,16,231,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,207,3,16,232,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,230,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,156,64,26,20,8,207,3,16,234,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,235,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,233,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,207,3,16,237,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,238,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,236,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,41,157,64,26,20,8,207,3,16,240,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,241,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,239,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,250,156,64,26,20,8,207,3,16,243,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,244,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,242,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,207,3,16,246,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,247,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,245,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,64,26,20,8,207,3,16,249,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,250,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,248,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,207,3,16,252,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,253,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,251,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,207,3,16,255,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,128,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,254,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,117,156,64,26,20,8,207,3,16,130,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,131,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,129,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,207,3,16,133,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,134,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,132,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,207,3,16,136,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,207,3,16,137,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,135,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,207,3,16,139,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,140,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,138,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,207,3,16,142,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,143,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,141,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,207,3,16,145,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,146,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,144,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,149,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,207,3,16,148,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,147,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,152,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,21,157,64,26,20,8,207,3,16,151,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,150,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,207,3,16,154,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,155,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,153,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,207,3,16,157,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,158,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,156,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,64,26,20,8,207,3,16,160,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,207,3,16,161,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,159,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,207,3,16,164,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,177,156,64,26,20,8,207,3,16,163,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,162,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,207,3,16,166,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,207,3,16,167,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,165,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,156,64,26,20,8,207,3,16,169,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,207,3,16,170,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,168,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,207,3,16,172,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,207,3,16,173,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,171,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,207,3,16,175,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,176,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,174,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,156,64,26,20,8,207,3,16,178,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,179,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,177,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,207,3,16,181,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,182,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,180,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,207,3,16,184,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,185,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,183,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,207,3,16,187,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,188,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,186,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,207,3,16,190,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,191,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,189,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,207,3,16,193,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,194,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,192,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,207,3,16,196,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,197,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,195,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,207,3,16,199,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,200,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,198,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,70,156,64,26,20,8,207,3,16,202,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,203,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,201,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,207,3,16,206,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,207,3,16,205,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,204,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,117,156,64,26,20,8,207,3,16,208,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,207,3,16,209,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,207,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,207,3,16,211,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,207,3,16,212,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,210,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,207,3,16,215,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,177,156,64,26,20,8,207,3,16,214,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,213,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,207,3,16,218,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,207,3,16,217,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,216,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,207,3,16,221,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,207,3,16,220,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,219,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,156,64,26,20,8,207,3,16,223,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,229,151,64,26,20,8,207,3,16,224,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,222,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,207,3,16,226,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,207,3,16,227,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,225,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,207,3,16,229,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,207,3,16,230,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,228,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,233,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,207,3,16,232,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,231,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,207,3,16,235,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,207,3,16,236,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,234,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,117,156,64,26,20,8,207,3,16,238,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,207,3,16,239,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,237,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,207,3,16,241,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,207,3,16,242,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,240,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,207,3,16,244,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,207,3,16,245,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,243,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,207,3,16,248,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,207,3,16,247,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,246,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,207,3,16,250,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,207,3,16,251,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,249,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,14,157,64,26,20,8,207,3,16,253,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,207,3,16,254,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,252,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,207,3,16,128,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,207,3,16,129,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,255,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,207,3,16,131,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,207,3,16,132,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,130,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,207,3,16,135,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,207,3,16,134,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,133,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,207,3,16,137,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,207,3,16,138,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,136,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,21,157,64,26,20,8,207,3,16,140,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,207,3,16,141,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,139,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,207,3,16,143,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,207,3,16,144,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,142,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,207,3,16,147,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,207,3,16,146,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,145,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,207,3,16,149,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,145,150,64,26,20,8,207,3,16,150,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,148,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,207,3,16,152,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,131,150,64,26,20,8,207,3,16,153,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,151,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,207,3,16,155,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,131,150,64,26,20,8,207,3,16,156,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,154,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,207,3,16,158,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,207,3,16,159,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,157,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,157,64,26,20,8,207,3,16,161,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,207,3,16,162,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,160,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,157,64,26,20,8,207,3,16,164,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,207,3,16,165,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,163,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,207,3,16,167,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,207,3,16,168,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,166,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,207,3,16,170,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,207,3,16,171,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,169,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,3,16,173,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,207,3,16,174,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,172,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,207,3,16,176,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,207,3,16,177,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,175,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,3,16,179,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,207,3,16,180,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,178,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,207,3,16,182,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,207,3,16,183,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,181,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,207,3,16,185,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,207,3,16,186,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,184,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,207,3,16,188,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,207,3,16,189,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,187,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,207,3,16,191,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,207,3,16,192,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,190,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,41,157,64,26,20,8,207,3,16,194,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,207,3,16,195,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,193,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,207,3,16,197,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,207,3,16,198,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,196,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,181,157,64,26,20,8,207,3,16,200,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,207,3,16,201,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,199,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,207,3,16,204,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,207,3,16,203,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,202,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,207,3,16,206,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,207,3,16,207,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,205,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,28,157,64,26,20,8,207,3,16,209,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,207,3,16,210,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,208,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,177,156,64,26,20,8,207,3,16,212,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,207,3,16,213,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,211,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,207,3,16,215,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,207,3,16,216,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,214,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,207,3,16,218,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,207,3,16,219,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,217,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,207,3,16,221,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,207,3,16,222,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,220,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,207,3,16,224,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,207,3,16,225,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,223,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,207,3,16,227,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,207,3,16,228,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,226,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,207,3,16,230,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,207,3,16,231,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,229,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,145,150,64,26,20,8,207,3,16,234,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,207,3,16,233,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,232,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,207,3,16,236,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,145,150,64,26,20,8,207,3,16,237,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,235,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,3,16,239,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,207,3,16,240,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,238,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,207,3,16,242,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,207,3,16,243,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,241,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,207,3,16,245,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,207,3,16,246,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,244,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,207,3,16,248,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,207,3,16,249,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,247,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,207,3,16,251,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,207,3,16,252,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,250,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,207,3,16,254,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,207,3,16,255,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,253,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,207,3,16,129,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,207,3,16,130,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,128,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,207,3,16,133,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,207,3,16,132,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,131,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,207,3,16,135,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,207,3,16,136,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,134,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,190,156,64,26,20,8,207,3,16,138,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,207,3,16,139,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,137,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,237,156,64,26,20,8,207,3,16,141,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,207,3,16,142,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,140,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,207,3,16,144,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,207,3,16,145,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,143,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,207,3,16,147,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,207,3,16,148,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,146,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,207,3,16,150,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,207,3,16,151,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,149,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,207,3,16,153,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,207,3,16,154,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,152,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,207,3,16,156,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,207,3,16,157,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,155,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,254,157,64,26,20,8,207,3,16,159,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,207,3,16,160,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,158,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,3,16,162,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,207,3,16,163,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,161,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,207,3,16,166,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,3,16,165,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,164,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,207,3,16,168,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,207,3,16,169,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,167,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,207,3,16,172,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,207,3,16,171,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,170,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,207,3,16,174,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,207,3,16,175,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,173,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,207,3,16,177,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,207,3,16,178,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,176,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,207,3,16,180,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,207,3,16,181,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,179,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,207,3,16,183,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,207,3,16,184,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,182,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,207,3,16,186,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,207,3,16,187,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,185,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,3,16,189,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,207,3,16,190,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,188,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,3,16,192,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,207,3,16,193,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,191,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,207,3,16,195,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,207,3,16,196,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,194,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,3,16,198,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,207,3,16,199,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,197,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,207,3,16,201,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,207,3,16,202,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,200,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,3,16,204,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,207,3,16,205,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,203,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,208,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,207,3,16,207,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,206,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,207,3,16,211,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,207,3,16,210,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,209,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,207,3,16,214,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,3,16,213,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,212,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,3,16,216,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,207,3,16,217,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,215,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,207,3,16,219,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,220,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,218,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,207,3,16,222,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,223,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,221,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,226,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,207,3,16,225,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,224,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,3,16,228,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,207,3,16,229,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,227,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,207,3,16,231,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,207,3,16,232,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,230,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,207,3,16,234,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,207,3,16,235,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,233,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,207,3,16,237,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,207,3,16,238,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,236,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,207,3,16,240,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,207,3,16,241,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,239,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,207,3,16,243,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,244,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,242,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,207,3,16,246,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,247,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,245,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,3,16,249,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,250,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,248,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,207,3,16,252,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,207,3,16,253,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,251,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,3,16,255,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,128,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,254,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,207,3,16,130,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,131,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,129,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,207,3,16,133,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,134,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,132,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,207,3,16,136,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,207,3,16,137,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,135,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,207,3,16,139,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,207,3,16,140,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,207,3,16,138,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,207,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,207,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,207,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,207,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,175,92,18,172,92,10,169,92,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,208,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,208,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,208,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,135,91,10,6,112,111,105,110,116,115,18,252,90,18,249,90,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,114,157,64,26,19,8,208,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,208,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,134,157,64,26,19,8,208,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,208,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,157,64,26,19,8,208,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,231,150,64,26,19,8,208,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,121,157,64,26,19,8,208,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,2,151,64,26,19,8,208,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,81,157,64,26,19,8,208,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,15,151,64,26,19,8,208,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,81,157,64,26,19,8,208,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,2,151,64,26,19,8,208,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,157,64,26,19,8,208,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,218,150,64,26,19,8,208,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,214,157,64,26,19,8,208,3,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,208,3,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,208,3,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,254,157,64,26,19,8,208,3,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,5,158,64,26,19,8,208,3,16,34,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,218,150,64,26,19,8,208,3,16,35,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,33,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,157,64,26,19,8,208,3,16,37,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,251,150,64,26,19,8,208,3,16,38,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,36,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,157,64,26,19,8,208,3,16,40,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,15,151,64,26,19,8,208,3,16,41,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,39,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,157,64,26,19,8,208,3,16,43,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,15,151,64,26,19,8,208,3,16,44,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,42,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,157,64,26,19,8,208,3,16,46,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,9,151,64,26,19,8,208,3,16,47,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,45,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,201,157,64,26,19,8,208,3,16,49,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,225,150,64,26,19,8,208,3,16,50,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,48,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,248,157,64,26,19,8,208,3,16,52,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,208,3,16,53,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,51,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,158,64,26,19,8,208,3,16,55,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,208,3,16,56,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,54,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,158,64,26,19,8,208,3,16,58,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,218,150,64,26,19,8,208,3,16,59,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,57,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,241,157,64,26,19,8,208,3,16,61,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,15,151,64,26,19,8,208,3,16,62,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,60,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,201,157,64,26,19,8,208,3,16,64,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,35,151,64,26,19,8,208,3,16,65,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,63,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,141,157,64,26,19,8,208,3,16,67,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,49,151,64,26,19,8,208,3,16,68,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,66,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,29,151,64,26,19,8,208,3,16,71,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,134,157,64,26,19,8,208,3,16,70,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,69,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,157,64,26,19,8,208,3,16,73,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,238,150,64,26,19,8,208,3,16,74,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,72,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,5,158,64,26,19,8,208,3,16,76,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,231,150,64,26,19,8,208,3,16,77,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,75,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,18,158,64,26,19,8,208,3,16,79,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,208,3,16,80,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,78,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,234,157,64,26,19,8,208,3,16,82,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,35,151,64,26,19,8,208,3,16,83,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,81,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,161,157,64,26,19,8,208,3,16,85,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,62,151,64,26,19,8,208,3,16,86,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,84,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,157,64,26,19,8,208,3,16,88,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,55,151,64,26,19,8,208,3,16,89,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,87,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,81,157,64,26,19,8,208,3,16,91,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,49,151,64,26,19,8,208,3,16,92,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,90,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,157,64,26,19,8,208,3,16,94,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,15,151,64,26,19,8,208,3,16,95,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,93,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,218,150,64,26,19,8,208,3,16,98,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,154,157,64,26,19,8,208,3,16,97,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,96,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,208,3,16,101,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,241,157,64,26,19,8,208,3,16,100,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,99,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,254,157,64,26,19,8,208,3,16,103,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,225,150,64,26,19,8,208,3,16,104,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,102,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,254,157,64,26,19,8,208,3,16,106,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,208,3,16,107,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,105,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,214,157,64,26,19,8,208,3,16,109,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,29,151,64,26,19,8,208,3,16,110,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,108,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,62,151,64,26,19,8,208,3,16,113,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,74,157,64,26,19,8,208,3,16,112,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,111,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,34,157,64,26,19,8,208,3,16,115,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,62,151,64,26,19,8,208,3,16,116,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,114,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,42,151,64,26,19,8,208,3,16,119,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,1,157,64,26,19,8,208,3,16,118,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,117,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,157,64,26,19,8,208,3,16,121,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,9,151,64,26,19,8,208,3,16,122,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,120,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,41,157,64,26,19,8,208,3,16,124,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,231,150,64,26,19,8,208,3,16,125,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,123,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,94,157,64,26,19,8,208,3,16,127,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,208,3,16,128,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,126,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,208,3,16,130,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,208,3,16,131,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,129,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,208,3,16,134,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,208,3,16,133,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,132,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,208,3,16,136,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,15,151,64,26,20,8,208,3,16,137,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,135,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,208,3,16,139,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,208,3,16,140,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,138,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,208,3,16,142,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,208,3,16,143,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,141,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,250,156,64,26,20,8,208,3,16,145,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,208,3,16,146,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,144,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,190,156,64,26,20,8,208,3,16,148,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,208,3,16,149,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,147,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,208,3,16,151,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,208,3,16,152,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,150,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,208,3,16,154,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,208,3,16,155,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,153,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,208,3,16,158,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,41,157,64,26,20,8,208,3,16,157,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,156,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,208,3,16,160,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,208,3,16,161,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,159,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,208,3,16,163,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,208,3,16,164,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,162,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,208,3,16,166,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,208,3,16,167,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,165,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,208,3,16,169,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,208,3,16,170,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,168,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,208,3,16,172,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,208,3,16,173,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,171,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,208,3,16,176,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,208,3,16,175,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,174,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,21,157,64,26,20,8,208,3,16,178,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,208,3,16,179,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,177,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,208,3,16,182,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,208,3,16,181,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,180,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,208,3,16,184,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,208,3,16,185,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,183,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,21,157,64,26,20,8,208,3,16,187,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,208,3,16,188,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,186,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,208,3,16,191,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,208,3,16,190,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,189,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,208,3,16,193,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,208,3,16,194,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,192,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,201,157,64,26,20,8,208,3,16,196,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,208,3,16,197,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,195,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,208,3,16,199,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,208,3,16,200,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,198,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,208,3,16,202,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,208,3,16,203,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,201,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,157,64,26,20,8,208,3,16,205,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,208,3,16,206,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,204,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,64,26,20,8,208,3,16,208,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,208,3,16,209,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,207,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,208,3,16,211,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,208,3,16,212,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,210,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,208,3,16,214,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,208,3,16,215,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,213,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,208,3,16,217,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,208,3,16,218,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,216,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,208,3,16,220,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,208,3,16,221,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,219,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,181,157,64,26,20,8,208,3,16,223,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,208,3,16,224,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,222,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,208,3,16,226,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,208,3,16,227,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,225,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,208,3,16,230,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,208,3,16,229,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,228,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,21,157,64,26,20,8,208,3,16,232,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,208,3,16,233,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,231,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,208,3,16,235,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,208,3,16,236,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,234,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,208,3,16,238,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,208,3,16,239,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,237,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,14,157,64,26,20,8,208,3,16,241,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,208,3,16,242,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,240,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,208,3,16,244,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,208,3,16,245,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,243,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,208,3,16,247,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,208,3,16,248,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,246,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,208,3,16,250,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,208,3,16,251,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,249,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,208,3,16,253,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,208,3,16,254,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,252,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,208,3,16,128,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,208,3,16,129,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,255,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,208,3,16,132,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,208,3,16,131,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,130,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,208,3,16,134,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,208,3,16,135,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,133,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,208,3,16,137,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,208,3,16,138,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,136,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,208,3,16,140,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,202,151,64,26,20,8,208,3,16,141,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,139,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,208,3,16,143,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,208,3,16,144,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,142,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,117,156,64,26,20,8,208,3,16,146,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,208,3,16,147,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,145,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,208,3,16,149,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,208,3,16,150,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,148,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,156,64,26,20,8,208,3,16,152,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,208,3,16,153,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,151,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,156,64,26,20,8,208,3,16,155,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,208,3,16,156,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,154,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,156,64,26,20,8,208,3,16,158,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,208,3,16,159,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,157,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,70,156,64,26,20,8,208,3,16,161,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,208,3,16,162,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,160,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,208,3,16,164,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,208,3,16,165,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,163,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,208,3,16,167,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,208,3,16,168,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,166,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,156,64,26,20,8,208,3,16,170,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,208,3,16,171,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,169,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,70,156,64,26,20,8,208,3,16,173,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,208,3,16,174,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,172,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,57,156,64,26,20,8,208,3,16,176,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,208,3,16,177,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,175,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,57,156,64,26,20,8,208,3,16,179,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,208,3,16,180,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,178,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,156,64,26,20,8,208,3,16,182,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,208,3,16,183,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,181,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,156,64,26,20,8,208,3,16,185,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,208,3,16,186,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,208,3,16,184,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,208,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,234,166,3,18,230,166,3,10,226,166,3,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,209,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,191,165,3,10,6,112,111,105,110,116,115,18,179,165,3,18,175,165,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,77,156,64,26,19,8,209,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,162,151,64,26,19,8,209,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,156,64,26,19,8,209,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,169,151,64,26,19,8,209,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,237,156,64,26,19,8,209,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,162,151,64,26,19,8,209,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,61,157,64,26,19,8,209,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,155,151,64,26,19,8,209,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,157,64,26,19,8,209,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,142,151,64,26,19,8,209,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,157,64,26,19,8,209,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,142,151,64,26,19,8,209,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,74,157,64,26,19,8,209,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,155,151,64,26,19,8,209,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,156,64,26,19,8,209,3,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,155,151,64,26,19,8,209,3,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,210,156,64,26,19,8,209,3,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,162,151,64,26,19,8,209,3,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,221,157,64,26,19,8,209,3,16,34,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,155,151,64,26,19,8,209,3,16,35,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,33,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,214,157,64,26,19,8,209,3,16,37,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,162,151,64,26,19,8,209,3,16,38,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,36,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,169,151,64,26,19,8,209,3,16,41,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,121,157,64,26,19,8,209,3,16,40,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,39,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,148,157,64,26,19,8,209,3,16,43,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,142,151,64,26,19,8,209,3,16,44,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,42,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,201,157,64,26,19,8,209,3,16,46,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,122,151,64,26,19,8,209,3,16,47,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,45,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,157,64,26,19,8,209,3,16,49,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,35,151,64,26,19,8,209,3,16,50,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,48,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,157,64,26,19,8,209,3,16,52,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,238,150,64,26,19,8,209,3,16,53,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,51,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,181,157,64,26,19,8,209,3,16,55,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,209,3,16,56,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,54,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,157,64,26,19,8,209,3,16,58,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,209,3,16,59,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,57,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,188,157,64,26,19,8,209,3,16,61,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,209,3,16,62,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,60,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,214,157,64,26,19,8,209,3,16,64,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,251,150,64,26,19,8,209,3,16,65,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,63,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,254,157,64,26,19,8,209,3,16,67,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,225,150,64,26,19,8,209,3,16,68,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,66,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,18,158,64,26,19,8,209,3,16,70,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,205,150,64,26,19,8,209,3,16,71,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,69,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,191,150,64,26,19,8,209,3,16,74,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,18,158,64,26,19,8,209,3,16,73,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,72,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,161,157,64,26,19,8,209,3,16,76,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,178,150,64,26,19,8,209,3,16,77,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,75,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,154,157,64,26,19,8,209,3,16,79,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,165,150,64,26,19,8,209,3,16,80,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,78,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,145,150,64,26,19,8,209,3,16,83,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,214,157,64,26,19,8,209,3,16,82,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,81,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,65,158,64,26,19,8,209,3,16,85,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,145,150,64,26,19,8,209,3,16,86,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,84,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,138,150,64,26,19,8,209,3,16,89,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,74,157,64,26,19,8,209,3,16,88,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,87,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,157,64,26,19,8,209,3,16,91,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,131,150,64,26,19,8,209,3,16,92,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,90,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,157,64,26,19,8,209,3,16,94,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,131,150,64,26,19,8,209,3,16,95,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,93,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,161,157,64,26,19,8,209,3,16,97,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,145,150,64,26,19,8,209,3,16,98,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,96,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,157,64,26,19,8,209,3,16,100,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,158,150,64,26,19,8,209,3,16,101,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,99,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,114,157,64,26,19,8,209,3,16,103,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,138,150,64,26,19,8,209,3,16,104,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,102,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,221,157,64,26,19,8,209,3,16,106,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,131,150,64,26,19,8,209,3,16,107,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,105,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,74,157,64,26,19,8,209,3,16,109,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,145,150,64,26,19,8,209,3,16,110,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,108,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,170,156,64,26,19,8,209,3,16,112,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,138,150,64,26,19,8,209,3,16,113,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,111,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,217,156,64,26,19,8,209,3,16,115,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,125,150,64,26,19,8,209,3,16,116,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,114,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,114,157,64,26,19,8,209,3,16,118,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,111,150,64,26,19,8,209,3,16,119,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,117,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,241,157,64,26,19,8,209,3,16,121,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,111,150,64,26,19,8,209,3,16,122,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,120,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,221,157,64,26,19,8,209,3,16,124,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,118,150,64,26,19,8,209,3,16,125,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,123,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,110,18,108,10,106,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,128,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,41,157,64,26,19,8,209,3,16,127,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,126,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,209,3,16,130,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,131,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,129,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,209,3,16,133,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,134,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,132,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,209,3,16,136,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,137,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,135,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,209,3,16,139,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,140,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,138,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,143,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,209,3,16,142,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,141,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,209,3,16,145,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,146,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,144,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,149,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,250,156,64,26,20,8,209,3,16,148,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,147,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,250,156,64,26,20,8,209,3,16,151,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,152,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,150,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,209,3,16,154,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,155,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,153,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,209,3,16,157,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,158,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,156,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,209,3,16,160,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,161,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,159,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,164,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,204,156,64,26,20,8,209,3,16,163,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,162,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,91,150,64,26,20,8,209,3,16,167,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,209,3,16,166,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,165,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,91,150,64,26,20,8,209,3,16,170,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,209,3,16,169,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,168,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,181,157,64,26,20,8,209,3,16,172,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,173,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,171,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,209,3,16,175,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,176,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,174,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,209,3,16,178,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,179,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,177,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,209,3,16,181,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,182,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,180,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,209,3,16,184,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,185,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,183,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,181,157,64,26,20,8,209,3,16,187,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,188,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,186,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,209,3,16,190,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,131,150,64,26,20,8,209,3,16,191,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,189,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,209,3,16,193,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,131,150,64,26,20,8,209,3,16,194,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,192,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,209,3,16,196,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,197,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,195,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,209,3,16,199,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,200,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,198,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,209,3,16,202,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,203,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,201,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,181,157,64,26,20,8,209,3,16,205,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,209,3,16,206,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,204,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,14,157,64,26,20,8,209,3,16,208,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,209,3,16,209,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,207,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,157,64,26,20,8,209,3,16,211,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,145,150,64,26,20,8,209,3,16,212,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,210,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,41,157,64,26,20,8,209,3,16,214,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,215,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,213,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,209,3,16,217,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,209,3,16,218,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,216,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,209,3,16,220,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,209,3,16,221,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,219,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,209,3,16,223,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,224,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,222,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,230,156,64,26,20,8,209,3,16,226,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,227,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,225,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,209,3,16,229,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,209,3,16,230,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,228,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,209,3,16,232,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,209,3,16,233,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,231,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,209,3,16,236,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,209,3,16,235,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,234,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,209,3,16,238,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,209,3,16,239,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,237,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,209,3,16,241,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,209,3,16,242,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,240,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,209,3,16,244,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,245,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,243,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,209,3,16,247,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,209,3,16,248,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,246,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,209,3,16,250,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,209,3,16,251,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,249,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,156,64,26,20,8,209,3,16,253,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,254,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,252,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,156,64,26,20,8,209,3,16,128,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,209,3,16,129,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,255,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,209,3,16,131,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,132,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,130,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,209,3,16,134,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,209,3,16,135,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,133,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,209,3,16,137,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,131,150,64,26,20,8,209,3,16,138,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,136,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,209,3,16,140,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,141,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,139,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,209,3,16,143,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,144,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,142,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,209,3,16,146,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,147,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,145,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,209,3,16,149,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,209,3,16,150,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,148,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,209,3,16,152,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,153,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,151,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,14,157,64,26,20,8,209,3,16,155,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,156,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,154,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,159,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,209,3,16,158,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,157,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,209,3,16,161,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,162,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,160,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,209,3,16,164,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,209,3,16,165,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,163,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,48,157,64,26,20,8,209,3,16,167,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,131,150,64,26,20,8,209,3,16,168,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,166,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,209,3,16,170,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,171,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,169,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,209,3,16,173,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,174,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,172,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,209,3,16,176,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,177,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,175,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,209,3,16,179,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,180,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,178,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,209,3,16,182,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,183,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,181,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,209,3,16,185,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,186,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,184,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,209,3,16,188,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,189,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,187,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,192,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,209,3,16,191,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,190,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,209,3,16,194,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,195,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,193,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,201,157,64,26,20,8,209,3,16,197,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,198,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,196,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,209,3,16,200,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,201,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,199,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,209,3,16,203,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,204,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,202,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,209,3,16,206,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,209,3,16,207,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,205,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,209,3,16,209,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,210,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,208,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,209,3,16,212,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,213,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,211,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,209,3,16,215,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,216,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,214,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,209,3,16,218,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,209,3,16,219,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,217,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,209,3,16,221,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,222,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,220,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,209,3,16,224,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,225,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,223,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,209,3,16,227,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,209,3,16,228,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,226,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,209,3,16,230,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,209,3,16,231,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,229,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,209,3,16,233,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,234,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,232,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,209,3,16,236,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,209,3,16,237,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,235,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,209,3,16,239,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,240,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,238,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,209,3,16,242,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,243,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,241,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,246,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,154,157,64,26,20,8,209,3,16,245,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,244,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,209,3,16,248,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,91,150,64,26,20,8,209,3,16,249,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,247,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,251,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,91,150,64,26,20,8,209,3,16,252,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,250,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,209,3,16,254,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,255,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,253,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,209,3,16,129,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,130,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,128,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,209,3,16,132,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,133,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,131,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,209,3,16,135,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,85,150,64,26,20,8,209,3,16,136,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,134,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,209,3,16,138,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,85,150,64,26,20,8,209,3,16,139,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,137,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,209,3,16,141,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,142,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,140,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,209,3,16,144,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,145,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,143,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,209,3,16,147,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,148,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,146,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,209,3,16,150,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,151,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,149,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,209,3,16,153,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,154,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,152,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,209,3,16,156,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,157,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,155,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,209,3,16,159,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,160,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,158,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,163,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,209,3,16,162,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,161,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,94,157,64,26,20,8,209,3,16,165,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,166,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,164,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,209,3,16,168,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,209,3,16,169,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,167,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,209,3,16,171,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,145,150,64,26,20,8,209,3,16,172,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,170,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,157,64,26,20,8,209,3,16,174,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,175,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,173,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,209,3,16,177,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,178,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,176,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,209,3,16,180,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,181,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,179,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,209,3,16,183,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,184,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,182,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,181,157,64,26,20,8,209,3,16,186,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,187,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,185,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,209,3,16,189,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,190,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,188,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,174,157,64,26,20,8,209,3,16,192,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,193,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,191,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,209,3,16,195,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,196,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,194,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,209,3,16,198,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,199,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,197,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,108,157,64,26,20,8,209,3,16,201,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,202,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,200,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,181,157,64,26,20,8,209,3,16,204,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,205,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,203,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,209,3,16,207,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,208,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,206,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,34,157,64,26,20,8,209,3,16,210,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,209,3,16,211,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,209,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,209,3,16,214,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,64,26,20,8,209,3,16,213,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,212,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,237,156,64,26,20,8,209,3,16,216,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,209,3,16,217,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,215,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,209,3,16,219,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,220,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,218,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,209,3,16,222,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,223,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,221,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,209,3,16,225,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,209,3,16,226,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,224,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,209,3,16,228,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,209,3,16,229,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,227,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,156,64,26,20,8,209,3,16,231,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,209,3,16,232,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,230,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,156,64,26,20,8,209,3,16,234,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,235,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,233,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,209,3,16,237,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,238,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,236,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,156,64,26,20,8,209,3,16,240,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,209,3,16,241,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,239,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,156,64,26,20,8,209,3,16,243,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,209,3,16,244,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,242,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,209,3,16,246,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,209,3,16,247,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,245,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,209,3,16,249,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,209,3,16,250,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,248,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,209,3,16,252,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,209,3,16,253,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,251,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,209,3,16,255,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,42,151,64,26,20,8,209,3,16,128,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,254,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,156,64,26,20,8,209,3,16,130,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,209,3,16,131,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,129,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,209,3,16,133,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,209,3,16,134,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,132,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,209,3,16,136,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,209,3,16,137,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,135,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,156,64,26,20,8,209,3,16,139,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,209,3,16,140,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,138,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,209,3,16,143,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,156,64,26,20,8,209,3,16,142,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,141,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,90,156,64,26,20,8,209,3,16,145,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,209,3,16,146,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,144,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,156,64,26,20,8,209,3,16,148,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,209,3,16,149,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,147,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,209,3,16,151,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,209,3,16,152,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,150,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,156,64,26,20,8,209,3,16,154,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,209,3,16,155,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,153,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,50,156,64,26,20,8,209,3,16,157,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,209,3,16,158,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,156,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,90,156,64,26,20,8,209,3,16,160,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,209,3,16,161,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,159,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,90,156,64,26,20,8,209,3,16,163,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,209,3,16,164,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,162,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,209,3,16,167,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,209,3,16,166,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,165,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,209,3,16,169,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,209,3,16,170,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,168,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,30,156,64,26,20,8,209,3,16,172,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,209,3,16,173,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,171,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,156,64,26,20,8,209,3,16,175,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,15,151,64,26,20,8,209,3,16,176,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,174,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,156,64,26,20,8,209,3,16,178,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,209,3,16,179,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,177,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,209,3,16,181,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,209,3,16,182,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,180,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,209,3,16,184,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,209,3,16,185,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,183,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,156,64,26,20,8,209,3,16,187,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,209,3,16,188,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,186,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,50,156,64,26,20,8,209,3,16,190,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,209,3,16,191,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,189,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,209,3,16,193,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,209,3,16,194,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,192,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,209,3,16,197,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,209,3,16,196,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,195,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,156,64,26,20,8,209,3,16,199,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,200,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,198,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,209,3,16,202,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,209,3,16,203,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,201,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,117,156,64,26,20,8,209,3,16,205,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,209,3,16,206,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,204,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,209,3,16,209,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,209,3,16,208,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,207,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,209,3,16,211,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,2,151,64,26,20,8,209,3,16,212,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,210,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,156,64,26,20,8,209,3,16,214,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,209,3,16,215,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,213,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,209,3,16,217,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,209,3,16,218,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,216,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,209,3,16,220,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,209,3,16,221,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,219,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,57,156,64,26,20,8,209,3,16,223,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,209,3,16,224,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,222,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,209,3,16,226,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,209,3,16,227,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,225,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,209,3,16,229,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,209,3,16,230,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,228,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,209,3,16,232,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,209,3,16,233,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,231,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,57,156,64,26,20,8,209,3,16,235,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,209,3,16,236,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,234,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,156,64,26,20,8,209,3,16,238,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,209,3,16,239,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,237,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,37,156,64,26,20,8,209,3,16,241,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,209,3,16,242,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,240,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,70,156,64,26,20,8,209,3,16,244,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,209,3,16,245,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,243,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,156,64,26,20,8,209,3,16,247,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,209,3,16,248,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,246,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,209,3,16,250,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,35,151,64,26,20,8,209,3,16,251,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,249,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,209,3,16,253,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,209,3,16,254,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,252,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,209,3,16,128,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,129,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,255,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,209,3,16,131,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,132,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,130,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,57,156,64,26,20,8,209,3,16,134,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,209,3,16,135,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,133,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,50,156,64,26,20,8,209,3,16,137,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,209,3,16,138,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,136,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,57,156,64,26,20,8,209,3,16,140,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,209,3,16,141,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,139,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,209,3,16,144,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,90,156,64,26,20,8,209,3,16,143,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,142,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,209,3,16,146,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,209,3,16,147,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,145,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,209,3,16,149,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,209,3,16,150,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,148,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,209,3,16,153,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,57,156,64,26,20,8,209,3,16,152,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,151,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,57,156,64,26,20,8,209,3,16,155,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,209,3,16,156,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,154,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,209,3,16,159,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,156,64,26,20,8,209,3,16,158,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,157,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,209,3,16,161,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,209,3,16,162,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,160,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,209,3,16,164,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,209,3,16,165,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,163,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,209,3,16,168,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,57,156,64,26,20,8,209,3,16,167,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,166,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,130,156,64,26,20,8,209,3,16,170,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,135,151,64,26,20,8,209,3,16,171,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,169,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,209,3,16,173,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,209,3,16,174,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,172,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,57,156,64,26,20,8,209,3,16,176,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,209,3,16,177,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,175,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,209,3,16,179,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,209,3,16,180,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,178,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,156,64,26,20,8,209,3,16,182,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,209,3,16,183,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,181,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,164,156,64,26,20,8,209,3,16,185,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,209,3,16,186,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,184,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,156,64,26,20,8,209,3,16,188,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,209,3,16,189,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,187,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,156,64,26,20,8,209,3,16,191,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,209,3,16,192,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,190,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,156,64,26,20,8,209,3,16,194,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,209,3,16,195,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,193,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,209,3,16,197,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,209,3,16,198,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,196,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,117,156,64,26,20,8,209,3,16,200,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,209,3,16,201,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,199,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,209,3,16,204,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,50,156,64,26,20,8,209,3,16,203,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,202,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,209,3,16,206,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,209,3,16,207,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,205,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,209,3,16,209,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,209,3,16,210,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,208,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,30,156,64,26,20,8,209,3,16,212,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,209,3,16,213,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,211,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,57,156,64,26,20,8,209,3,16,215,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,209,3,16,216,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,214,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,209,3,16,218,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,209,3,16,219,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,217,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,44,156,64,26,20,8,209,3,16,221,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,209,3,16,222,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,220,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,70,156,64,26,20,8,209,3,16,224,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,209,3,16,225,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,223,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,209,3,16,227,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,209,3,16,228,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,226,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,117,156,64,26,20,8,209,3,16,230,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,209,3,16,231,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,229,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,209,3,16,233,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,209,3,16,234,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,232,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,50,156,64,26,20,8,209,3,16,236,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,209,3,16,237,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,235,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,57,156,64,26,20,8,209,3,16,239,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,209,3,16,240,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,238,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,209,3,16,242,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,209,3,16,243,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,241,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,209,3,16,246,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,90,156,64,26,20,8,209,3,16,245,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,244,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,24,156,64,26,20,8,209,3,16,248,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,209,3,16,249,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,247,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,209,3,16,252,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,104,156,64,26,20,8,209,3,16,251,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,250,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,97,156,64,26,20,8,209,3,16,254,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,209,3,16,255,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,253,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,209,3,16,130,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,37,156,64,26,20,8,209,3,16,129,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,128,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,209,3,16,132,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,209,3,16,133,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,131,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,209,3,16,136,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,156,64,26,20,8,209,3,16,135,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,134,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,30,156,64,26,20,8,209,3,16,138,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,209,3,16,139,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,137,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,156,64,26,20,8,209,3,16,141,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,169,151,64,26,20,8,209,3,16,142,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,140,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,117,156,64,26,20,8,209,3,16,144,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,175,151,64,26,20,8,209,3,16,145,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,143,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,209,3,16,148,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,70,156,64,26,20,8,209,3,16,147,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,146,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,209,3,16,151,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,70,156,64,26,20,8,209,3,16,150,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,149,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,124,156,64,26,20,8,209,3,16,153,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,62,151,64,26,20,8,209,3,16,154,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,152,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,110,156,64,26,20,8,209,3,16,156,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,209,3,16,157,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,155,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,209,3,16,159,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,209,3,16,160,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,158,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,150,156,64,26,20,8,209,3,16,162,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,209,3,16,163,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,161,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,117,156,64,26,20,8,209,3,16,165,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,209,3,16,166,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,164,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,144,156,64,26,20,8,209,3,16,168,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,209,3,16,169,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,167,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,90,156,64,26,20,8,209,3,16,171,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,22,151,64,26,20,8,209,3,16,172,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,170,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,209,3,16,174,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,209,3,16,175,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,173,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,209,3,16,177,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,209,3,16,178,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,176,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,209,3,16,180,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,209,3,16,181,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,179,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,157,64,26,20,8,209,3,16,183,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,209,3,16,184,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,182,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,209,3,16,187,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,161,157,64,26,20,8,209,3,16,186,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,185,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,209,3,16,189,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,209,3,16,190,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,188,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,134,157,64,26,20,8,209,3,16,192,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,209,3,16,193,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,191,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,209,3,16,195,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,209,3,16,196,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,194,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,209,3,16,198,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,209,3,16,199,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,197,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,209,3,16,201,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,202,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,200,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,209,3,16,204,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,209,3,16,205,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,203,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,209,3,16,207,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,208,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,206,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,209,3,16,210,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,211,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,209,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,209,3,16,213,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,214,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,212,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,209,3,16,216,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,217,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,215,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,209,3,16,219,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,220,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,218,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,209,3,16,222,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,223,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,221,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,225,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,226,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,224,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,209,3,16,228,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,229,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,227,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,209,3,16,231,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,232,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,230,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,209,3,16,234,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,235,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,233,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,209,3,16,237,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,238,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,236,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,240,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,241,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,239,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,209,3,16,243,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,244,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,242,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,209,3,16,246,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,247,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,245,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,250,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,209,3,16,249,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,248,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,252,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,253,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,251,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,209,3,16,255,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,128,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,254,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,209,3,16,130,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,131,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,129,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,134,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,209,3,16,133,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,132,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,131,150,64,26,20,8,209,3,16,137,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,209,3,16,136,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,135,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,209,3,16,139,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,140,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,138,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,209,3,16,142,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,143,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,141,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,209,3,16,145,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,146,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,144,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,209,3,16,148,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,149,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,147,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,152,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,151,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,150,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,209,3,16,154,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,209,3,16,155,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,153,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,209,3,16,157,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,158,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,156,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,160,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,161,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,159,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,209,3,16,163,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,209,3,16,164,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,162,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,209,3,16,166,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,209,3,16,167,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,165,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,209,3,16,169,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,209,3,16,170,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,168,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,209,3,16,172,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,209,3,16,173,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,171,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,176,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,175,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,174,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,209,3,16,178,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,209,3,16,179,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,177,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,209,3,16,181,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,209,3,16,182,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,180,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,209,3,16,184,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,209,3,16,185,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,183,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,209,3,16,187,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,131,150,64,26,20,8,209,3,16,188,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,186,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,190,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,209,3,16,191,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,189,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,209,3,16,193,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,209,3,16,194,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,192,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,209,3,16,196,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,197,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,195,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,209,3,16,199,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,145,150,64,26,20,8,209,3,16,200,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,198,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,209,3,16,202,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,209,3,16,203,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,201,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,209,3,16,205,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,206,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,204,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,209,3,16,208,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,209,3,16,209,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,207,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,209,3,16,211,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,209,3,16,212,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,210,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,209,3,16,214,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,215,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,213,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,209,3,16,217,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,209,3,16,218,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,216,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,209,3,16,221,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,209,3,16,220,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,219,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,209,3,16,223,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,209,3,16,224,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,222,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,209,3,16,226,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,227,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,225,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,209,3,16,229,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,55,151,64,26,20,8,209,3,16,230,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,228,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,232,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,209,3,16,233,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,231,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,209,3,16,235,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,236,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,234,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,209,3,16,238,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,209,3,16,239,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,237,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,209,3,16,241,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,109,151,64,26,20,8,209,3,16,242,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,240,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,244,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,209,3,16,245,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,243,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,209,3,16,247,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,209,3,16,248,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,246,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,209,3,16,250,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,9,151,64,26,20,8,209,3,16,251,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,249,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,209,3,16,253,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,209,3,16,254,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,252,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,209,3,16,128,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,209,3,16,129,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,255,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,131,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,209,3,16,132,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,130,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,209,3,16,134,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,209,3,16,135,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,133,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,209,3,16,137,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,209,3,16,138,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,136,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,209,3,16,140,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,141,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,139,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,209,3,16,144,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,209,3,16,143,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,142,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,209,3,16,146,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,69,151,64,26,20,8,209,3,16,147,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,145,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,209,3,16,150,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,209,3,16,149,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,148,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,65,158,64,26,20,8,209,3,16,152,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,129,151,64,26,20,8,209,3,16,153,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,151,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,165,158,64,26,20,8,209,3,16,155,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,209,3,16,156,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,154,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,209,3,16,158,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,209,3,16,159,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,157,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,209,3,16,161,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,209,3,16,162,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,160,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,209,3,16,164,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,209,3,16,165,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,163,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,209,3,16,167,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,168,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,166,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,185,158,64,26,20,8,209,3,16,170,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,171,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,169,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,209,3,16,173,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,215,151,64,26,20,8,209,3,16,174,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,172,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,209,3,16,176,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,209,3,16,177,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,175,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,209,3,16,180,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,209,3,16,179,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,178,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,209,3,16,182,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,209,3,16,183,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,181,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,209,3,16,186,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,185,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,184,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,209,3,16,188,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,209,3,16,189,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,187,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,209,3,16,191,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,209,3,16,192,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,190,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,194,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,209,3,16,195,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,193,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,209,3,16,197,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,75,151,64,26,20,8,209,3,16,198,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,196,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,209,3,16,200,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,209,3,16,201,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,199,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,209,3,16,203,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,49,151,64,26,20,8,209,3,16,204,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,202,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,218,150,64,26,20,8,209,3,16,207,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,209,3,16,206,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,205,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,209,3,16,209,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,209,3,16,210,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,208,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,209,3,16,212,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,213,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,211,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,158,64,26,20,8,209,3,16,215,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,216,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,214,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,212,158,64,26,20,8,209,3,16,218,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,131,150,64,26,20,8,209,3,16,219,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,217,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,209,3,16,221,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,245,150,64,26,20,8,209,3,16,222,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,220,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,209,3,16,224,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,209,3,16,225,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,223,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,209,3,16,227,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,15,151,64,26,20,8,209,3,16,228,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,226,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,209,3,16,230,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,209,3,16,231,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,229,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,209,3,16,233,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,131,150,64,26,20,8,209,3,16,234,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,232,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,198,158,64,26,20,8,209,3,16,236,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,131,150,64,26,20,8,209,3,16,237,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,235,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,209,3,16,239,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,240,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,238,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,209,3,16,242,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,209,3,16,243,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,241,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,209,3,16,245,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,246,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,244,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,209,3,16,248,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,249,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,247,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,251,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,252,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,250,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,209,3,16,254,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,255,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,253,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,130,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,209,3,16,129,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,128,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,132,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,133,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,131,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,91,150,64,26,20,8,209,3,16,136,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,209,3,16,135,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,134,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,91,150,64,26,20,8,209,3,16,139,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,209,3,16,138,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,137,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,209,3,16,141,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,142,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,140,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,209,3,16,144,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,145,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,143,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,209,3,16,147,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,98,150,64,26,20,8,209,3,16,148,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,146,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,209,3,16,150,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,151,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,149,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,154,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,209,3,16,153,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,152,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,209,3,16,156,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,157,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,155,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,209,3,16,159,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,131,150,64,26,20,8,209,3,16,160,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,158,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,209,3,16,162,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,163,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,161,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,209,3,16,165,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,166,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,164,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,209,3,16,168,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,169,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,167,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,209,3,16,171,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,172,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,170,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,209,3,16,174,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,175,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,173,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,209,3,16,177,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,178,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,176,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,209,3,16,180,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,181,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,179,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,209,3,16,183,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,209,3,16,184,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,182,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,185,158,64,26,20,8,209,3,16,186,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,145,150,64,26,20,8,209,3,16,187,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,185,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,209,3,16,189,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,209,3,16,190,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,188,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,209,3,16,192,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,193,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,191,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,209,3,16,195,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,145,150,64,26,20,8,209,3,16,196,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,194,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,209,3,16,198,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,199,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,197,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,209,3,16,201,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,145,150,64,26,20,8,209,3,16,202,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,200,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,209,3,16,204,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,205,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,203,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,209,3,16,207,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,208,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,206,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,209,3,16,210,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,211,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,209,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,214,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,209,3,16,213,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,212,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,209,3,16,216,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,217,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,215,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,209,3,16,219,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,220,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,218,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,209,3,16,222,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,223,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,221,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,209,3,16,225,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,226,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,224,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,209,3,16,228,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,229,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,227,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,209,3,16,231,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,232,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,230,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,209,3,16,234,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,235,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,233,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,209,3,16,237,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,105,150,64,26,20,8,209,3,16,238,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,236,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,209,3,16,240,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,118,150,64,26,20,8,209,3,16,241,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,239,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,244,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,209,3,16,243,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,242,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,209,3,16,246,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,111,150,64,26,20,8,209,3,16,247,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,245,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,209,3,16,249,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,131,150,64,26,20,8,209,3,16,250,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,248,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,209,3,16,252,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,253,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,251,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,255,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,128,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,254,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,131,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,209,3,16,130,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,129,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,209,3,16,133,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,125,150,64,26,20,8,209,3,16,134,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,132,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,209,3,16,136,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,131,150,64,26,20,8,209,3,16,137,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,135,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,139,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,145,150,64,26,20,8,209,3,16,140,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,138,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,209,3,16,142,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,138,150,64,26,20,8,209,3,16,143,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,141,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,209,3,16,145,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,209,3,16,146,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,144,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,209,3,16,148,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,149,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,147,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,209,3,16,151,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,209,3,16,152,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,150,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,152,158,64,26,20,8,209,3,16,154,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,209,3,16,155,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,153,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,209,3,16,158,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,209,3,16,157,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,156,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,209,3,16,160,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,209,3,16,161,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,159,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,209,3,16,163,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,164,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,162,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,166,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,209,3,16,167,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,165,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,209,3,16,169,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,209,3,16,170,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,168,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,209,3,16,172,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,191,150,64,26,20,8,209,3,16,173,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,171,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,209,3,16,175,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,176,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,174,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,209,3,16,178,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,151,150,64,26,20,8,209,3,16,179,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,177,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,209,3,16,181,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,145,150,64,26,20,8,209,3,16,182,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,180,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,178,158,64,26,20,8,209,3,16,184,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,209,3,16,185,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,183,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,187,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,209,3,16,188,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,186,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,190,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,209,3,16,191,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,189,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,209,3,16,194,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,209,3,16,193,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,192,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,209,3,16,196,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,209,3,16,197,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,195,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,209,3,16,199,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,225,150,64,26,20,8,209,3,16,200,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,198,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,209,3,16,203,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,209,3,16,202,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,201,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,209,3,16,205,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,209,3,16,206,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,204,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,209,3,16,208,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,209,3,16,209,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,207,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,209,3,16,211,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,209,3,16,212,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,210,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,209,3,16,214,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,209,3,16,215,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,213,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,209,3,16,217,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,158,150,64,26,20,8,209,3,16,218,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,216,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,209,3,16,220,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,145,150,64,26,20,8,209,3,16,221,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,219,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,209,3,16,223,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,209,3,16,224,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,222,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,209,3,16,226,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,227,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,225,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,209,3,16,229,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,209,3,16,230,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,228,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,209,3,16,232,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,209,3,16,233,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,231,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,209,3,16,235,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,178,150,64,26,20,8,209,3,16,236,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,234,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,209,3,16,238,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,239,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,237,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,158,158,64,26,20,8,209,3,16,241,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,165,150,64,26,20,8,209,3,16,242,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,240,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,209,3,16,244,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,209,3,16,245,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,243,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,192,158,64,26,20,8,209,3,16,247,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,171,150,64,26,20,8,209,3,16,248,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,246,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,172,158,64,26,20,8,209,3,16,250,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,209,3,16,251,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,249,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,209,3,16,253,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,211,150,64,26,20,8,209,3,16,254,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,252,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,198,150,64,26,20,8,209,3,16,129,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,209,3,16,128,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,255,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,145,158,64,26,20,8,209,3,16,131,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,185,150,64,26,20,8,209,3,16,132,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,130,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,138,158,64,26,20,8,209,3,16,134,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,205,150,64,26,20,8,209,3,16,135,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,133,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,209,3,16,137,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,238,150,64,26,20,8,209,3,16,138,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,136,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,209,3,16,140,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,231,150,64,26,20,8,209,3,16,141,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,139,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,251,150,64,26,20,8,209,3,16,144,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,209,3,16,143,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,142,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,209,3,16,146,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,29,151,64,26,20,8,209,3,16,147,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,209,3,16,145,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,209,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,209,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,209,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,238,12,18,235,12,10,232,12,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,210,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,198,11,10,6,112,111,105,110,116,115,18,187,11,18,184,11,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,158,64,26,19,8,210,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,210,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,138,158,64,26,19,8,210,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,15,151,64,26,19,8,210,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,158,64,26,19,8,210,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,55,151,64,26,19,8,210,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,75,151,64,26,19,8,210,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,158,64,26,19,8,210,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,35,151,64,26,19,8,210,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,72,158,64,26,19,8,210,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,98,158,64,26,19,8,210,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,9,151,64,26,19,8,210,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,125,158,64,26,19,8,210,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,211,150,64,26,19,8,210,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,158,64,26,19,8,210,3,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,178,150,64,26,19,8,210,3,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,138,158,64,26,19,8,210,3,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,178,150,64,26,19,8,210,3,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,105,158,64,26,19,8,210,3,16,34,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,2,151,64,26,19,8,210,3,16,35,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,33,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,218,150,64,26,19,8,210,3,16,38,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,145,158,64,26,19,8,210,3,16,37,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,36,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,145,158,64,26,19,8,210,3,16,40,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,251,150,64,26,19,8,210,3,16,41,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,39,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,158,64,26,19,8,210,3,16,43,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,95,151,64,26,19,8,210,3,16,44,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,42,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,210,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,210,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,210,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,178,141,1,18,174,141,1,10,170,141,1,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,211,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,211,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,211,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,135,140,1,10,6,112,111,105,110,116,115,18,251,139,1,18,247,139,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,85,158,64,26,19,8,211,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,149,151,64,26,19,8,211,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,215,151,64,26,19,8,211,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,98,158,64,26,19,8,211,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,125,158,64,26,19,8,211,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,19,152,64,26,19,8,211,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,125,158,64,26,19,8,211,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,39,152,64,26,19,8,211,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,158,64,26,19,8,211,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,39,152,64,26,19,8,211,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,158,64,26,19,8,211,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,66,152,64,26,19,8,211,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,158,64,26,19,8,211,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,215,151,64,26,19,8,211,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,218,158,64,26,19,8,211,3,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,135,151,64,26,19,8,211,3,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,225,158,64,26,19,8,211,3,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,109,151,64,26,19,8,211,3,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,158,64,26,19,8,211,3,16,34,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,109,151,64,26,19,8,211,3,16,35,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,33,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,158,64,26,19,8,211,3,16,37,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,89,151,64,26,19,8,211,3,16,38,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,36,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,158,64,26,19,8,211,3,16,40,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,49,151,64,26,19,8,211,3,16,41,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,39,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,218,150,64,26,19,8,211,3,16,44,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,158,64,26,19,8,211,3,16,43,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,42,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,158,64,26,19,8,211,3,16,46,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,158,150,64,26,19,8,211,3,16,47,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,45,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,185,158,64,26,19,8,211,3,16,49,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,138,150,64,26,19,8,211,3,16,50,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,48,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,198,158,64,26,19,8,211,3,16,52,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,191,150,64,26,19,8,211,3,16,53,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,51,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,225,158,64,26,19,8,211,3,16,55,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,245,150,64,26,19,8,211,3,16,56,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,54,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,225,158,64,26,19,8,211,3,16,58,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,49,151,64,26,19,8,211,3,16,59,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,57,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,158,64,26,19,8,211,3,16,61,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,129,151,64,26,19,8,211,3,16,62,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,60,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,158,64,26,19,8,211,3,16,64,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,209,151,64,26,19,8,211,3,16,65,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,63,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,209,151,64,26,19,8,211,3,16,68,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,85,158,64,26,19,8,211,3,16,67,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,66,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,102,151,64,26,19,8,211,3,16,71,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,78,158,64,26,19,8,211,3,16,70,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,69,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,98,158,64,26,19,8,211,3,16,73,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,209,151,64,26,19,8,211,3,16,74,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,72,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,158,64,26,19,8,211,3,16,76,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,229,151,64,26,19,8,211,3,16,77,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,75,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,158,64,26,19,8,211,3,16,79,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,249,151,64,26,19,8,211,3,16,80,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,78,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,118,158,64,26,19,8,211,3,16,82,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,249,151,64,26,19,8,211,3,16,83,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,81,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,165,158,64,26,19,8,211,3,16,85,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,189,151,64,26,19,8,211,3,16,86,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,84,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,158,64,26,19,8,211,3,16,88,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,82,151,64,26,19,8,211,3,16,89,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,87,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,158,64,26,19,8,211,3,16,91,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,2,151,64,26,19,8,211,3,16,92,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,90,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,238,158,64,26,19,8,211,3,16,94,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,2,151,64,26,19,8,211,3,16,95,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,93,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,238,158,64,26,19,8,211,3,16,97,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,225,150,64,26,19,8,211,3,16,98,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,96,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,185,158,64,26,19,8,211,3,16,100,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,171,150,64,26,19,8,211,3,16,101,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,99,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,171,150,64,26,19,8,211,3,16,104,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,178,158,64,26,19,8,211,3,16,103,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,102,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,158,64,26,19,8,211,3,16,106,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,2,151,64,26,19,8,211,3,16,107,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,105,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,132,158,64,26,19,8,211,3,16,109,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,109,151,64,26,19,8,211,3,16,110,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,108,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,105,158,64,26,19,8,211,3,16,112,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,142,151,64,26,19,8,211,3,16,113,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,111,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,128,20,169,151,64,26,19,8,211,3,16,116,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,98,158,64,26,19,8,211,3,16,115,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,114,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,78,158,64,26,19,8,211,3,16,118,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,213,105,182,151,64,26,19,8,211,3,16,119,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,117,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,254,157,64,26,19,8,211,3,16,121,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,195,151,64,26,19,8,211,3,16,122,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,120,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,141,157,64,26,19,8,211,3,16,124,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,42,191,195,151,64,26,19,8,211,3,16,125,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,123,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,156,64,26,19,8,211,3,16,127,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,242,151,64,26,20,8,211,3,16,128,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,126,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,184,156,64,26,20,8,211,3,16,130,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,242,151,64,26,20,8,211,3,16,131,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,129,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,90,156,64,26,20,8,211,3,16,133,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,202,151,64,26,20,8,211,3,16,134,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,132,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,202,151,64,26,20,8,211,3,16,137,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,70,156,64,26,20,8,211,3,16,136,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,135,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,211,3,16,140,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,64,156,64,26,20,8,211,3,16,139,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,138,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,70,156,64,26,20,8,211,3,16,142,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,211,3,16,143,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,141,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,70,156,64,26,20,8,211,3,16,145,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,26,152,64,26,20,8,211,3,16,146,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,144,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,84,156,64,26,20,8,211,3,16,148,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,33,152,64,26,20,8,211,3,16,149,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,147,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,211,3,16,151,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,46,152,64,26,20,8,211,3,16,152,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,150,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,46,152,64,26,20,8,211,3,16,155,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,211,3,16,154,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,153,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,211,3,16,157,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,39,152,64,26,20,8,211,3,16,158,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,156,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,39,152,64,26,20,8,211,3,16,161,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,211,3,16,160,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,159,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,211,3,16,163,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,13,152,64,26,20,8,211,3,16,164,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,162,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,211,3,16,166,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,13,152,64,26,20,8,211,3,16,167,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,165,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,211,3,16,169,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,6,152,64,26,20,8,211,3,16,170,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,168,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,25,158,64,26,20,8,211,3,16,172,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,26,152,64,26,20,8,211,3,16,173,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,171,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,168,157,64,26,20,8,211,3,16,175,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,46,152,64,26,20,8,211,3,16,176,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,174,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,237,156,64,26,20,8,211,3,16,178,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,46,152,64,26,20,8,211,3,16,179,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,177,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,248,157,64,26,20,8,211,3,16,181,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,53,152,64,26,20,8,211,3,16,182,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,180,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,12,158,64,26,20,8,211,3,16,184,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,33,152,64,26,20,8,211,3,16,185,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,183,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,211,3,16,187,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,6,152,64,26,20,8,211,3,16,188,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,186,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,255,151,64,26,20,8,211,3,16,191,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,211,3,16,190,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,189,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,211,3,16,193,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,255,151,64,26,20,8,211,3,16,194,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,192,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,211,3,16,196,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,13,152,64,26,20,8,211,3,16,197,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,195,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,211,3,16,199,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,39,152,64,26,20,8,211,3,16,200,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,198,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,211,3,16,202,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,53,152,64,26,20,8,211,3,16,203,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,201,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,211,3,16,205,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,33,152,64,26,20,8,211,3,16,206,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,204,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,211,3,16,208,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,13,152,64,26,20,8,211,3,16,209,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,207,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,211,3,16,211,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,26,152,64,26,20,8,211,3,16,212,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,210,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,5,158,64,26,20,8,211,3,16,214,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,53,152,64,26,20,8,211,3,16,215,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,213,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,241,157,64,26,20,8,211,3,16,217,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,53,152,64,26,20,8,211,3,16,218,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,216,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,19,152,64,26,20,8,211,3,16,221,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,211,3,16,220,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,219,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,13,152,64,26,20,8,211,3,16,224,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,85,158,64,26,20,8,211,3,16,223,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,222,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,211,3,16,226,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,33,152,64,26,20,8,211,3,16,227,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,225,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,211,3,16,229,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,39,152,64,26,20,8,211,3,16,230,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,228,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,208,157,64,26,20,8,211,3,16,232,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,46,152,64,26,20,8,211,3,16,233,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,231,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,157,64,26,20,8,211,3,16,235,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,46,152,64,26,20,8,211,3,16,236,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,234,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,53,152,64,26,20,8,211,3,16,239,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,211,3,16,238,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,237,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,211,3,16,241,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,53,152,64,26,20,8,211,3,16,242,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,240,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,211,3,16,244,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,59,152,64,26,20,8,211,3,16,245,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,243,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,211,3,16,247,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,59,152,64,26,20,8,211,3,16,248,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,246,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,211,3,16,250,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,6,152,64,26,20,8,211,3,16,251,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,249,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,70,156,64,26,20,8,211,3,16,253,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,255,151,64,26,20,8,211,3,16,254,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,252,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,77,156,64,26,20,8,211,3,16,128,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,162,151,64,26,20,8,211,3,16,129,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,255,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,90,156,64,26,20,8,211,3,16,131,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,26,152,64,26,20,8,211,3,16,132,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,130,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,117,156,64,26,20,8,211,3,16,134,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,59,152,64,26,20,8,211,3,16,135,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,133,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,190,156,64,26,20,8,211,3,16,137,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,73,152,64,26,20,8,211,3,16,138,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,136,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,211,3,16,140,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,53,152,64,26,20,8,211,3,16,141,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,139,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,53,152,64,26,20,8,211,3,16,144,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,211,3,16,143,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,142,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,211,3,16,146,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,33,152,64,26,20,8,211,3,16,147,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,145,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,38,158,64,26,20,8,211,3,16,149,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,26,152,64,26,20,8,211,3,16,150,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,148,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,158,64,26,20,8,211,3,16,152,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,13,152,64,26,20,8,211,3,16,153,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,151,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,141,157,64,26,20,8,211,3,16,155,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,46,152,64,26,20,8,211,3,16,156,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,154,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,8,157,64,26,20,8,211,3,16,158,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,46,152,64,26,20,8,211,3,16,159,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,157,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,211,3,16,161,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,249,151,64,26,20,8,211,3,16,162,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,160,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,211,3,16,164,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,242,151,64,26,20,8,211,3,16,165,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,163,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,254,157,64,26,20,8,211,3,16,167,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,202,151,64,26,20,8,211,3,16,168,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,166,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,211,3,16,170,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,215,151,64,26,20,8,211,3,16,171,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,169,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,128,157,64,26,20,8,211,3,16,173,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,235,151,64,26,20,8,211,3,16,174,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,172,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,157,156,64,26,20,8,211,3,16,176,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,249,151,64,26,20,8,211,3,16,177,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,175,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,86,85,85,85,85,213,155,64,26,20,8,211,3,16,179,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,249,151,64,26,20,8,211,3,16,180,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,178,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,217,156,64,26,20,8,211,3,16,182,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,249,151,64,26,20,8,211,3,16,183,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,181,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,211,3,16,185,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,229,151,64,26,20,8,211,3,16,186,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,184,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,101,157,64,26,20,8,211,3,16,188,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,6,152,64,26,20,8,211,3,16,189,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,187,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,211,3,16,191,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,6,152,64,26,20,8,211,3,16,192,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,190,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,114,157,64,26,20,8,211,3,16,194,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,242,151,64,26,20,8,211,3,16,195,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,193,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,222,151,64,26,20,8,211,3,16,198,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,211,3,16,197,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,196,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,181,157,64,26,20,8,211,3,16,200,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,249,151,64,26,20,8,211,3,16,201,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,199,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,81,157,64,26,20,8,211,3,16,203,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,6,152,64,26,20,8,211,3,16,204,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,202,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,244,156,64,26,20,8,211,3,16,206,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,6,152,64,26,20,8,211,3,16,207,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,205,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,211,3,16,209,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,249,151,64,26,20,8,211,3,16,210,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,208,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,170,156,64,26,20,8,211,3,16,212,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,242,151,64,26,20,8,211,3,16,213,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,211,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,210,156,64,26,20,8,211,3,16,215,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,235,151,64,26,20,8,211,3,16,216,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,214,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,211,3,16,218,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,235,151,64,26,20,8,211,3,16,219,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,217,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,205,158,64,26,20,8,211,3,16,221,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,6,152,64,26,20,8,211,3,16,222,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,220,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,185,158,64,26,20,8,211,3,16,224,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,19,152,64,26,20,8,211,3,16,225,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,223,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,26,152,64,26,20,8,211,3,16,228,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,18,158,64,26,20,8,211,3,16,227,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,226,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,74,157,64,26,20,8,211,3,16,230,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,6,152,64,26,20,8,211,3,16,231,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,229,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,224,156,64,26,20,8,211,3,16,233,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,235,151,64,26,20,8,211,3,16,234,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,232,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,61,157,64,26,20,8,211,3,16,236,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,211,3,16,237,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,235,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,88,157,64,26,20,8,211,3,16,239,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,211,3,16,240,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,238,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,211,3,16,242,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,229,151,64,26,20,8,211,3,16,243,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,241,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,1,157,64,26,20,8,211,3,16,245,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,242,151,64,26,20,8,211,3,16,246,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,244,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,68,157,64,26,20,8,211,3,16,248,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,229,151,64,26,20,8,211,3,16,249,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,247,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,194,157,64,26,20,8,211,3,16,251,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,229,151,64,26,20,8,211,3,16,252,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,250,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,214,157,64,26,20,8,211,3,16,254,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,235,151,64,26,20,8,211,3,16,255,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,253,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,181,157,64,26,20,8,211,3,16,129,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,255,151,64,26,20,8,211,3,16,130,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,128,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,121,157,64,26,20,8,211,3,16,132,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,6,152,64,26,20,8,211,3,16,133,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,131,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,14,157,64,26,20,8,211,3,16,135,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,6,152,64,26,20,8,211,3,16,136,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,134,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,137,156,64,26,20,8,211,3,16,138,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,235,151,64,26,20,8,211,3,16,139,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,137,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,197,156,64,26,20,8,211,3,16,141,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,215,151,64,26,20,8,211,3,16,142,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,140,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,54,157,64,26,20,8,211,3,16,144,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,211,3,16,145,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,143,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,211,3,16,147,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,211,3,16,148,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,146,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,211,3,16,150,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,222,151,64,26,20,8,211,3,16,151,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,149,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,188,157,64,26,20,8,211,3,16,153,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,242,151,64,26,20,8,211,3,16,154,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,152,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,148,157,64,26,20,8,211,3,16,156,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,242,151,64,26,20,8,211,3,16,157,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,155,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,228,157,64,26,20,8,211,3,16,159,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,182,151,64,26,20,8,211,3,16,160,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,158,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,234,157,64,26,20,8,211,3,16,162,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,211,3,16,163,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,161,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,211,3,16,166,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,221,157,64,26,20,8,211,3,16,165,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,164,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,211,3,16,168,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,211,3,16,169,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,167,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,32,158,64,26,20,8,211,3,16,171,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,211,3,16,172,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,170,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,89,151,64,26,20,8,211,3,16,175,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,211,3,16,174,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,173,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,98,158,64,26,20,8,211,3,16,177,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,211,3,16,178,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,176,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,211,3,16,180,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,211,3,16,181,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,179,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,45,158,64,26,20,8,211,3,16,183,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,209,151,64,26,20,8,211,3,16,184,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,182,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,211,3,16,186,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,211,3,16,187,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,185,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,211,3,16,189,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,95,151,64,26,20,8,211,3,16,190,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,188,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,211,3,16,193,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,118,158,64,26,20,8,211,3,16,192,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,191,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,78,158,64,26,20,8,211,3,16,195,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,189,151,64,26,20,8,211,3,16,196,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,194,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,170,170,170,170,58,158,64,26,20,8,211,3,16,198,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,195,151,64,26,20,8,211,3,16,199,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,197,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,211,3,16,201,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,102,151,64,26,20,8,211,3,16,202,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,200,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,132,158,64,26,20,8,211,3,16,204,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,82,151,64,26,20,8,211,3,16,205,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,203,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,125,158,64,26,20,8,211,3,16,207,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,122,151,64,26,20,8,211,3,16,208,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,206,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,211,3,16,210,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,211,3,16,211,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,209,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,92,158,64,26,20,8,211,3,16,213,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,86,85,85,213,105,142,151,64,26,20,8,211,3,16,214,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,212,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,112,158,64,26,20,8,211,3,16,216,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,115,151,64,26,20,8,211,3,16,217,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,215,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,85,85,85,85,85,105,158,64,26,20,8,211,3,16,219,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,1,0,0,128,20,149,151,64,26,20,8,211,3,16,220,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,218,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,52,158,64,26,20,8,211,3,16,222,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,41,10,1,121,18,36,26,34,8,4,18,8,171,170,170,42,191,155,151,64,26,20,8,211,3,16,223,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,20,8,211,3,16,221,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,211,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,195,8,18,192,8,10,189,8,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,207,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,207,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,131,206,62,169,127,30,172,64,26,19,8,207,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,224,149,8,69,177,39,155,64,26,19,8,207,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,207,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,10,19,137,60,161,99,155,64,26,19,8,207,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,131,206,62,169,127,30,172,64,26,19,8,207,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,207,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,75,191,160,111,90,172,64,26,19,8,207,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,190,12,195,240,210,232,155,64,26,19,8,207,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,207,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,53,11,170,244,108,100,172,64,26,19,8,207,3,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,53,144,9,52,145,159,155,64,26,19,8,207,3,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,207,3,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,188,202,148,72,106,110,172,64,26,19,8,207,3,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,115,23,250,215,100,6,155,64,26,19,8,207,3,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,207,3,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,188,202,148,72,106,110,172,64,26,19,8,207,3,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,177,158,234,123,56,109,154,64,26,19,8,207,3,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,207,3,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,164,70,135,202,253,196,172,64,26,19,8,207,3,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,43,139,209,93,31,10,156,64,26,19,8,207,3,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,207,3,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,112,196,206,252,155,243,172,64,26,19,8,207,3,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,48,5,111,47,168,136,156,64,26,19,8,207,3,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,207,3,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,207,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,207,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,207,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,149,64,26,19,8,208,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,232,142,115,64,26,19,8,208,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,208,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,149,64,26,19,8,208,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,232,142,115,64,26,19,8,208,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,208,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,208,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,208,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,208,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,208,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,208,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,209,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,209,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,209,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,253,104,64,26,19,8,209,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,120,64,26,19,8,209,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,209,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,48,120,64,26,19,8,209,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,253,104,64,26,19,8,209,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,209,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,209,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,209,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,209,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,209,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,210,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,121,64,26,19,8,210,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,128,108,64,26,19,8,210,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,128,106,64,26,19,8,210,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,61,103,64,26,19,8,210,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,210,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,121,64,26,19,8,210,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,61,103,64,26,19,8,210,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,210,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,210,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,210,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,210,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,210,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,211,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,211,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,211,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,61,103,64,26,19,8,211,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,121,64,26,19,8,211,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,128,108,64,26,19,8,211,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,128,106,64,26,19,8,211,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,211,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,121,64,26,19,8,211,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,61,103,64,26,19,8,211,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,211,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,211,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,211,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,212,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,212,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,212,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,24,145,116,192,26,19,8,212,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,156,64,26,19,8,212,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,212,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,212,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,156,64,26,19,8,212,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,24,145,116,192,26,19,8,212,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,212,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,212,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,212,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,212,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,213,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,24,145,116,192,26,19,8,213,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,156,64,26,19,8,213,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,213,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,213,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,213,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,20,156,64,26,19,8,213,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,24,145,116,192,26,19,8,213,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,213,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,213,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,213,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,213,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,213,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,214,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,214,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,214,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,24,161,117,192,26,19,8,214,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,147,64,26,19,8,214,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,214,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,63,26,19,8,214,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,214,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,147,64,26,19,8,214,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,24,161,117,192,26,19,8,214,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,214,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,214,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,214,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,142,4,18,139,4,10,136,4,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,63,26,19,8,215,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,24,161,117,192,26,19,8,215,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,147,64,26,19,8,215,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,215,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,215,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,147,64,26,19,8,215,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,24,161,117,192,26,19,8,215,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,215,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,215,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,215,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,215,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,215,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,215,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,216,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,97,100,102,102,101,50,26,19,8,216,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,216,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,24,161,117,192,26,19,8,216,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,147,64,26,19,8,216,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,216,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,240,63,26,19,8,216,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,216,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,147,64,26,19,8,216,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,24,161,117,192,26,19,8,216,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,216,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,216,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,216,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,217,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,99,48,49,48,53,26,19,8,217,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,217,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,155,64,26,19,8,217,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,217,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,64,26,19,8,217,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,61,104,64,26,19,8,217,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,155,64,26,19,8,217,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,125,104,64,26,19,8,217,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,217,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,218,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,99,48,49,48,53,26,19,8,218,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,218,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,232,78,113,64,26,19,8,218,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,156,64,26,19,8,218,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,218,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,218,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,218,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,156,64,26,19,8,218,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,232,78,113,64,26,19,8,218,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,218,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,218,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,218,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,219,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,99,48,49,48,53,26,19,8,219,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,219,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,61,100,64,26,19,8,219,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,156,64,26,19,8,219,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,128,89,64,26,19,8,219,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,192,92,64,26,19,8,219,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,219,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,156,64,26,19,8,219,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,232,78,113,64,26,19,8,219,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,219,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,219,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,219,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,142,4,18,139,4,10,136,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,99,48,49,48,53,26,19,8,220,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,220,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,128,89,64,26,19,8,220,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,192,92,64,26,19,8,220,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,61,100,64,26,19,8,220,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,156,64,26,19,8,220,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,220,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,156,64,26,19,8,220,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,232,78,113,64,26,19,8,220,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,220,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,220,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,220,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,220,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,221,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,99,48,49,48,53,26,19,8,221,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,221,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,61,100,64,26,19,8,221,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,156,64,26,19,8,221,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,128,89,64,26,19,8,221,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,192,92,64,26,19,8,221,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,221,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,156,64,26,19,8,221,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,232,78,113,64,26,19,8,221,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,221,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,221,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,221,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,169,3,18,166,3,10,163,3,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,79,59,137,168,189,180,173,64,26,19,8,208,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,48,5,111,47,168,136,156,64,26,19,8,208,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,208,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,159,187,236,197,20,174,173,64,26,19,8,208,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,186,163,34,82,170,2,154,64,26,19,8,208,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,208,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,208,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,208,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,208,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,208,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,208,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,249,46,18,246,46,10,243,46,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,223,3,16,2,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,100,99,48,49,48,53,26,19,8,223,3,16,3,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,223,3,16,4,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,209,45,10,6,112,111,105,110,116,115,18,198,45,18,195,45,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,156,64,26,19,8,223,3,16,7,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,232,78,112,64,26,19,8,223,3,16,8,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,6,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,157,107,64,26,19,8,223,3,16,11,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,8,157,64,26,19,8,223,3,16,10,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,9,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,157,64,26,19,8,223,3,16,13,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,125,102,64,26,19,8,223,3,16,14,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,12,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,158,64,26,19,8,223,3,16,16,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,93,98,64,26,19,8,223,3,16,17,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,15,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,28,158,64,26,19,8,223,3,16,19,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,125,97,64,26,19,8,223,3,16,20,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,18,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,158,64,26,19,8,223,3,16,22,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,160,123,93,64,26,19,8,223,3,16,23,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,21,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,140,158,64,26,19,8,223,3,16,25,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,160,123,93,64,26,19,8,223,3,16,26,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,24,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,158,64,26,19,8,223,3,16,28,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,189,96,64,26,19,8,223,3,16,29,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,27,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,159,64,26,19,8,223,3,16,31,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,125,101,64,26,19,8,223,3,16,32,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,30,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,156,159,64,26,19,8,223,3,16,34,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,189,103,64,26,19,8,223,3,16,35,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,33,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,159,64,26,19,8,223,3,16,37,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,93,100,64,26,19,8,223,3,16,38,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,36,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,208,61,96,64,26,19,8,223,3,16,41,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,30,160,64,26,19,8,223,3,16,40,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,39,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,56,160,64,26,19,8,223,3,16,43,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,160,123,87,64,26,19,8,223,3,16,44,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,42,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,66,160,64,26,19,8,223,3,16,46,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,64,247,74,64,26,19,8,223,3,16,47,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,45,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,160,64,26,19,8,223,3,16,49,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,160,123,86,64,26,19,8,223,3,16,50,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,48,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,108,160,64,26,19,8,223,3,16,52,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,160,187,91,64,26,19,8,223,3,16,53,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,51,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,160,64,26,19,8,223,3,16,55,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,160,187,95,64,26,19,8,223,3,16,56,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,54,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,160,251,87,64,26,19,8,223,3,16,59,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,194,160,64,26,19,8,223,3,16,58,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,57,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,236,160,64,26,19,8,223,3,16,61,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,160,123,80,64,26,19,8,223,3,16,62,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,60,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,161,64,26,19,8,223,3,16,64,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,64,247,69,64,26,19,8,223,3,16,65,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,63,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,186,27,64,26,19,8,223,3,16,68,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,64,161,64,26,19,8,223,3,16,67,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,66,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,94,161,64,26,19,8,223,3,16,70,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,128,17,54,192,26,19,8,223,3,16,71,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,69,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,118,161,64,26,19,8,223,3,16,73,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,192,136,76,192,26,19,8,223,3,16,74,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,72,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,134,161,64,26,19,8,223,3,16,76,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,82,192,26,19,8,223,3,16,77,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,75,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,138,161,64,26,19,8,223,3,16,79,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,196,84,192,26,19,8,223,3,16,80,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,78,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,161,64,26,19,8,223,3,16,82,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,196,91,192,26,19,8,223,3,16,83,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,81,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,244,161,64,26,19,8,223,3,16,85,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,194,98,192,26,19,8,223,3,16,86,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,84,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,2,98,192,26,19,8,223,3,16,89,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,161,64,26,19,8,223,3,16,88,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,87,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,138,161,64,26,19,8,223,3,16,91,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,68,91,192,26,19,8,223,3,16,92,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,90,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,88,161,64,26,19,8,223,3,16,94,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,132,87,192,26,19,8,223,3,16,95,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,93,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,196,161,64,26,19,8,223,3,16,97,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,2,98,192,26,19,8,223,3,16,98,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,96,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,48,2,98,192,26,19,8,223,3,16,101,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,218,161,64,26,19,8,223,3,16,100,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,99,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,234,161,64,26,19,8,223,3,16,103,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,132,92,192,26,19,8,223,3,16,104,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,102,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,234,161,64,26,19,8,223,3,16,106,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,196,84,192,26,19,8,223,3,16,107,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,105,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,161,64,26,19,8,223,3,16,109,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,80,192,26,19,8,223,3,16,110,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,108,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,161,64,26,19,8,223,3,16,112,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,132,81,192,26,19,8,223,3,16,113,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,111,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,2,161,64,26,19,8,223,3,16,115,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,68,87,192,26,19,8,223,3,16,116,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,114,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,6,161,64,26,19,8,223,3,16,118,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,88,192,26,19,8,223,3,16,119,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,117,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,132,92,192,26,19,8,223,3,16,122,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,92,161,64,26,19,8,223,3,16,121,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,120,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,112,161,64,26,19,8,223,3,16,124,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,96,4,93,192,26,19,8,223,3,16,125,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,123,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,158,161,64,26,19,8,223,3,16,127,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,48,34,96,192,26,20,8,223,3,16,128,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,126,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,222,161,64,26,20,8,223,3,16,130,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,48,194,97,192,26,20,8,223,3,16,131,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,20,8,223,3,16,129,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,220,161,64,26,20,8,223,3,16,133,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,96,68,87,192,26,20,8,223,3,16,134,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,20,8,223,3,16,132,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,186,161,64,26,20,8,223,3,16,136,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,96,132,85,192,26,20,8,223,3,16,137,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,20,8,223,3,16,135,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,122,161,64,26,20,8,223,3,16,139,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,96,68,84,192,26,20,8,223,3,16,140,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,20,8,223,3,16,138,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,114,161,64,26,20,8,223,3,16,142,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,96,68,84,192,26,20,8,223,3,16,143,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,20,8,223,3,16,141,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,86,161,64,26,20,8,223,3,16,145,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,96,132,86,192,26,20,8,223,3,16,146,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,20,8,223,3,16,144,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,72,161,64,26,20,8,223,3,16,148,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,96,196,86,192,26,20,8,223,3,16,149,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,20,8,223,3,16,147,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,96,161,64,26,20,8,223,3,16,151,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,96,68,85,192,26,20,8,223,3,16,152,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,20,8,223,3,16,150,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,134,161,64,26,20,8,223,3,16,154,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,96,132,84,192,26,20,8,223,3,16,155,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,20,8,223,3,16,153,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,170,161,64,26,20,8,223,3,16,157,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,96,196,82,192,26,20,8,223,3,16,158,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,20,8,223,3,16,156,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,0,0,0,0,0,220,161,64,26,20,8,223,3,16,160,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,41,10,1,121,18,36,26,34,8,4,18,8,0,0,0,0,96,68,82,192,26,20,8,223,3,16,161,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,20,8,223,3,16,159,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,5,26,12,99,70,121,251,152,207,109,6,237,70,187,65,18,19,8,223,3,16,1,26,12,99,70,121,251,152,207,109,6,237,70,187,65,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,209,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,209,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,209,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,192,93,97,216,80,173,64,26,19,8,209,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,40,51,46,242,86,188,152,64,26,19,8,209,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,209,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,8,192,93,97,216,80,173,64,26,19,8,209,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,120,179,145,15,174,181,152,64,26,19,8,209,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,209,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,240,59,80,227,107,167,173,64,26,19,8,209,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,120,179,145,15,174,181,152,64,26,19,8,209,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,209,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,15,247,201,155,165,14,174,64,26,19,8,209,3,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,149,177,60,95,163,221,152,64,26,19,8,209,3,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,209,3,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,209,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,209,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,135,5,18,132,5,10,129,5,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,210,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,210,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,207,178,10,143,141,104,174,64,26,19,8,210,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,206,190,143,49,238,197,151,64,26,19,8,210,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,210,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,166,242,88,0,226,107,174,64,26,19,8,210,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,206,190,143,49,238,197,151,64,26,19,8,210,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,210,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,166,242,88,0,226,107,174,64,26,19,8,210,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,252,147,179,148,166,79,155,64,26,19,8,210,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,210,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,45,178,67,84,223,117,174,64,26,19,8,210,3,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,138,138,10,35,113,23,156,64,26,19,8,210,3,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,210,3,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,210,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,210,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,210,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,211,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,211,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,106,161,33,96,18,175,64,26,19,8,211,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,116,57,244,61,37,55,152,64,26,19,8,211,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,211,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,106,161,33,96,18,175,64,26,19,8,211,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,62,115,71,164,66,4,158,64,26,19,8,211,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,211,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,211,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,211,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,211,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,145,24,18,142,24,10,139,24,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,212,3,16,2,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,49,51,102,97,102,26,19,8,212,3,16,3,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,52,64,26,19,8,212,3,16,4,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,233,22,10,6,112,111,105,110,116,115,18,222,22,18,219,22,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,32,227,3,40,228,175,64,26,19,8,212,3,16,7,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,190,12,195,240,210,232,155,64,26,19,8,212,3,16,8,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,6,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,32,227,3,40,228,175,64,26,19,8,212,3,16,10,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,76,3,26,127,157,176,156,64,26,19,8,212,3,16,11,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,9,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,140,160,127,230,208,234,175,64,26,19,8,212,3,16,13,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,171,2,83,68,239,189,156,64,26,19,8,212,3,16,14,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,12,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,133,255,111,30,136,0,157,64,26,19,8,212,3,16,17,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,234,159,184,171,34,248,175,64,26,19,8,212,3,16,16,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,15,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,47,110,226,184,7,176,64,26,19,8,212,3,16,19,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,81,125,183,80,38,47,157,64,26,19,8,212,3,16,20,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,18,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,98,206,234,194,93,29,176,64,26,19,8,212,3,16,22,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,0,253,83,51,207,53,157,64,26,19,8,212,3,16,23,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,21,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,109,46,222,176,37,176,64,26,19,8,212,3,16,25,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,52,127,12,1,49,7,157,64,26,19,8,212,3,16,26,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,24,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,45,25,50,174,47,176,64,26,19,8,212,3,16,28,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,237,3,225,185,75,163,156,64,26,19,8,212,3,16,29,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,27,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,15,141,38,14,42,226,155,64,26,19,8,212,3,16,32,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,32,205,92,77,1,56,176,64,26,19,8,212,3,16,31,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,30,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,32,205,92,77,1,56,176,64,26,19,8,212,3,16,34,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,133,16,109,81,232,152,155,64,26,19,8,212,3,16,35,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,33,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,147,172,238,217,168,67,176,64,26,19,8,212,3,16,37,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,181,7,139,26,97,83,156,64,26,19,8,212,3,16,38,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,36,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,175,170,153,41,158,107,176,64,26,19,8,212,3,16,40,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,236,225,230,83,139,114,159,64,26,19,8,212,3,16,41,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,39,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,195,138,242,240,243,105,176,64,26,19,8,212,3,16,43,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,104,223,202,104,210,167,159,64,26,19,8,212,3,16,44,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,42,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,80,171,96,100,76,94,176,64,26,19,8,212,3,16,46,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,227,220,174,125,25,221,159,64,26,19,8,212,3,16,47,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,45,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,173,237,202,192,89,44,176,64,26,19,8,212,3,16,49,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,251,234,144,123,206,55,160,64,26,19,8,212,3,16,50,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,48,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,58,14,57,52,178,32,176,64,26,19,8,212,3,16,52,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,130,170,123,207,203,65,160,64,26,19,8,212,3,16,53,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,51,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,46,167,167,10,21,176,64,26,19,8,212,3,16,55,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,90,234,201,64,32,69,160,64,26,19,8,212,3,16,56,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,54,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,175,10,197,97,14,176,64,26,19,8,212,3,16,58,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,130,170,123,207,203,65,160,64,26,19,8,212,3,16,59,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,57,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,59,32,28,201,121,241,175,64,26,19,8,212,3,16,61,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,23,95,103,75,123,174,159,64,26,19,8,212,3,16,62,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,60,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,59,32,28,201,121,241,175,64,26,19,8,212,3,16,64,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,180,229,144,180,160,34,159,64,26,19,8,212,3,16,65,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,63,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,42,105,215,247,94,217,158,64,26,19,8,212,3,16,68,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,234,159,184,171,34,248,175,64,26,19,8,212,3,16,67,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,66,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,236,86,0,111,157,158,64,26,19,8,212,3,16,71,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,124,15,199,169,14,6,176,64,26,19,8,212,3,16,70,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,69,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,90,113,242,243,55,44,158,64,26,19,8,212,3,16,74,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,120,18,35,26,33,8,4,18,8,193,205,35,136,175,42,176,64,26,19,8,212,3,16,73,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,72,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,20,11,86,14,75,99,176,64,26,19,8,212,3,16,76,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,180,246,141,231,0,187,157,64,26,19,8,212,3,16,77,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,75,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,117,199,93,60,225,175,176,64,26,19,8,212,3,16,79,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,176,124,240,21,120,60,157,64,26,19,8,212,3,16,80,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,78,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,3,2,77,32,3,177,64,26,19,8,212,3,16,82,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,40,10,1,121,18,35,26,33,8,4,18,8,10,2,140,9,65,203,156,64,26,19,8,212,3,16,83,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,81,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,5,26,12,99,70,121,143,152,207,109,6,237,70,58,0,18,19,8,212,3,16,1,26,12,99,70,121,143,152,207,109,6,237,70,58,0,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,233,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,233,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,233,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,209,159,64,26,19,8,233,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,21,58,186,151,64,26,19,8,233,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,233,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,116,159,64,26,19,8,233,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,192,228,212,151,64,26,19,8,233,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,233,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,252,158,64,26,19,8,233,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,21,58,226,151,64,26,19,8,233,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,233,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,21,58,226,151,64,26,19,8,233,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,158,64,26,19,8,233,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,233,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,194,157,64,26,19,8,233,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,192,228,212,151,64,26,19,8,233,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,233,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,201,157,64,26,19,8,233,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,21,58,186,151,64,26,19,8,233,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,233,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,241,157,64,26,19,8,233,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,192,228,152,151,64,26,19,8,233,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,233,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,233,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,233,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,178,9,18,175,9,10,172,9,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,234,3,16,2,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,55,100,97,52,102,50,26,19,8,234,3,16,3,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,234,3,16,4,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,145,158,64,26,19,8,234,3,16,7,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,21,58,106,151,64,26,19,8,234,3,16,8,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,234,3,16,6,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,158,64,26,19,8,234,3,16,10,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,106,143,159,151,64,26,19,8,234,3,16,11,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,234,3,16,9,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,138,158,64,26,19,8,234,3,16,13,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,106,143,139,151,64,26,19,8,234,3,16,14,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,234,3,16,12,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,225,158,64,26,19,8,234,3,16,16,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,106,143,139,151,64,26,19,8,234,3,16,17,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,234,3,16,15,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,238,158,64,26,19,8,234,3,16,19,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,192,228,152,151,64,26,19,8,234,3,16,20,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,234,3,16,18,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,192,158,64,26,19,8,234,3,16,22,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,171,170,170,106,143,199,151,64,26,19,8,234,3,16,23,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,234,3,16,21,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,158,64,26,19,8,234,3,16,25,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,21,58,206,151,64,26,19,8,234,3,16,26,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,234,3,16,24,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,85,85,85,85,85,65,158,64,26,19,8,234,3,16,28,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,1,0,0,192,228,232,151,64,26,19,8,234,3,16,29,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,234,3,16,27,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,171,170,170,170,170,18,158,64,26,19,8,234,3,16,31,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,40,10,1,121,18,35,26,33,8,4,18,8,86,85,85,21,58,226,151,64,26,19,8,234,3,16,32,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,234,3,16,30,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,234,3,16,5,26,12,99,70,121,209,152,207,109,6,237,70,116,252,18,19,8,234,3,16,1,26,12,99,70,121,209,152,207,109,6,237,70,116,252,10,142,4,18,139,4,10,136,4,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,235,3,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,121,18,35,26,33,8,4,18,8,166,133,242,88,189,66,152,64,26,19,8,235,3,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,120,18,35,26,33,8,4,18,8,170,106,151,16,67,89,164,64,26,19,8,235,3,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,128,253,90,204,196,169,80,64,26,19,8,235,3,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,16,220,19,204,223,19,91,64,26,19,8,235,3,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,235,3,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,106,151,16,67,89,164,64,26,19,8,235,3,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,103,195,179,85,251,243,153,64,26,19,8,235,3,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,235,3,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,235,3,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,235,3,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,56,101,98,56,26,19,8,235,3,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,235,3,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,142,4,18,139,4,10,136,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,114,101,99,116,26,19,8,236,3,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,102,102,56,101,98,56,26,19,8,236,3,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,36,64,26,19,8,236,3,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,209,1,10,3,98,111,120,18,201,1,10,198,1,10,40,10,1,120,18,35,26,33,8,4,18,8,170,106,151,16,67,89,164,64,26,19,8,236,3,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,128,253,90,204,196,169,80,64,26,19,8,236,3,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,16,220,19,204,223,19,91,64,26,19,8,236,3,16,9,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,166,133,242,88,189,66,152,64,26,19,8,236,3,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,236,3,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,146,1,10,6,112,111,105,110,116,115,18,135,1,18,132,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,170,106,151,16,67,89,164,64,26,19,8,236,3,16,12,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,40,10,1,121,18,35,26,33,8,4,18,8,103,195,179,85,251,243,153,64,26,19,8,236,3,16,13,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,236,3,16,11,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,236,3,16,10,26,12,99,70,121,204,152,207,109,6,237,70,109,90,18,19,8,236,3,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,90,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,237,3,16,2,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,101,51,49,97,52,26,19,8,237,3,16,3,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,237,3,16,4,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,84,145,64,26,19,8,237,3,16,7,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,112,122,64,26,19,8,237,3,16,8,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,237,3,16,6,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,146,64,26,19,8,237,3,16,10,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,117,64,26,19,8,237,3,16,11,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,237,3,16,9,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,172,146,64,26,19,8,237,3,16,13,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,16,118,64,26,19,8,237,3,16,14,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,237,3,16,12,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,128,146,64,26,19,8,237,3,16,16,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,176,120,64,26,19,8,237,3,16,17,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,237,3,16,15,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,146,64,26,19,8,237,3,16,19,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,125,64,26,19,8,237,3,16,20,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,237,3,16,18,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,133,64,26,19,8,237,3,16,23,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,220,144,64,26,19,8,237,3,16,22,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,237,3,16,21,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,237,3,16,5,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,237,3,16,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,229,6,18,226,6,10,223,6,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,238,3,16,2,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,101,51,49,97,52,26,19,8,238,3,16,3,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,238,3,16,4,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,189,5,10,6,112,111,105,110,116,115,18,178,5,18,175,5,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,100,146,64,26,19,8,238,3,16,7,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,116,64,26,19,8,238,3,16,8,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,238,3,16,6,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,168,146,64,26,19,8,238,3,16,10,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,116,64,26,19,8,238,3,16,11,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,238,3,16,9,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,160,148,64,26,19,8,238,3,16,13,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,144,113,64,26,19,8,238,3,16,14,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,238,3,16,12,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,52,149,64,26,19,8,238,3,16,16,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,112,64,26,19,8,238,3,16,17,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,238,3,16,15,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,0,111,64,26,19,8,238,3,16,20,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,136,150,64,26,19,8,238,3,16,19,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,238,3,16,18,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,224,107,64,26,19,8,238,3,16,23,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,152,152,64,26,19,8,238,3,16,22,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,238,3,16,21,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,238,3,16,5,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,238,3,16,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,135,5,18,132,5,10,129,5,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,101,102,98,49,97,99,26,19,8,239,3,16,3,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,239,3,16,4,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,69,95,39,165,228,207,34,192,26,19,8,239,3,16,8,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,52,24,92,92,108,126,158,64,26,19,8,239,3,16,7,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,239,3,16,6,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,69,95,39,165,228,207,34,192,26,19,8,239,3,16,11,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,199,248,183,8,14,252,156,64,26,19,8,239,3,16,10,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,239,3,16,9,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,161,181,181,35,136,194,226,63,26,19,8,239,3,16,14,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,120,18,35,26,33,8,4,18,8,172,69,164,172,41,112,156,64,26,19,8,239,3,16,13,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,239,3,16,12,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,198,216,246,155,221,155,64,26,19,8,239,3,16,16,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,40,10,1,121,18,35,26,33,8,4,18,8,135,158,154,140,116,61,49,64,26,19,8,239,3,16,17,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,239,3,16,15,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,239,3,16,5,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,239,3,16,2,26,12,99,70,121,164,152,207,109,6,237,70,61,248,18,19,8,239,3,16,1,26,12,99,70,121,164,152,207,109,6,237,70,61,248,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,240,3,16,2,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,101,51,49,97,52,26,19,8,240,3,16,3,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,240,3,16,4,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,96,134,64,26,19,8,240,3,16,8,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,240,125,64,26,19,8,240,3,16,7,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,240,3,16,6,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,134,64,26,19,8,240,3,16,11,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,208,126,64,26,19,8,240,3,16,10,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,240,3,16,9,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,216,138,64,26,19,8,240,3,16,13,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,80,134,64,26,19,8,240,3,16,14,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,240,3,16,12,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,240,3,16,5,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,240,3,16,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,212,7,18,209,7,10,206,7,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,241,3,16,2,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,101,51,49,97,52,26,19,8,241,3,16,3,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,241,3,16,4,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,172,6,10,6,112,111,105,110,116,115,18,161,6,18,158,6,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,100,145,64,26,19,8,241,3,16,8,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,232,141,64,26,19,8,241,3,16,7,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,241,3,16,6,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,96,141,64,26,19,8,241,3,16,10,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,32,145,64,26,19,8,241,3,16,11,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,241,3,16,9,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,200,140,64,26,19,8,241,3,16,13,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,240,144,64,26,19,8,241,3,16,14,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,241,3,16,12,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,139,64,26,19,8,241,3,16,16,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,148,144,64,26,19,8,241,3,16,17,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,241,3,16,15,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,80,138,64,26,19,8,241,3,16,19,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,108,144,64,26,19,8,241,3,16,20,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,241,3,16,18,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,144,136,64,26,19,8,241,3,16,22,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,84,144,64,26,19,8,241,3,16,23,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,241,3,16,21,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,64,144,64,26,19,8,241,3,16,26,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,16,136,64,26,19,8,241,3,16,25,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,241,3,16,24,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,241,3,16,5,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,241,3,16,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,135,5,18,132,5,10,129,5,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,242,3,16,4,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,204,148,192,26,19,8,242,3,16,7,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,184,129,192,26,19,8,242,3,16,8,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,242,3,16,6,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,148,192,26,19,8,242,3,16,10,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,216,129,192,26,19,8,242,3,16,11,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,242,3,16,9,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,212,144,192,26,19,8,242,3,16,13,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,208,130,192,26,19,8,242,3,16,14,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,242,3,16,12,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,32,142,192,26,19,8,242,3,16,16,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,0,0,0,40,131,192,26,19,8,242,3,16,17,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,242,3,16,15,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,242,3,16,5,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,242,3,16,2,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,101,51,49,97,52,26,19,8,242,3,16,3,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,242,3,16,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,135,46,18,132,46,10,129,46,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,243,3,16,2,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,99,101,51,49,97,52,26,19,8,243,3,16,3,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,243,3,16,4,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,223,44,10,6,112,111,105,110,116,115,18,212,44,18,209,44,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,101,234,195,254,202,173,64,26,19,8,243,3,16,7,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,215,146,118,165,152,181,131,64,26,19,8,243,3,16,8,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,6,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,92,136,169,117,25,83,174,64,26,19,8,243,3,16,10,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,109,161,244,159,178,251,130,64,26,19,8,243,3,16,11,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,9,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,88,7,164,130,144,212,174,64,26,19,8,243,3,16,13,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,180,215,214,189,246,25,130,64,26,19,8,243,3,16,14,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,12,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,221,64,175,209,189,155,175,64,26,19,8,243,3,16,16,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,145,28,55,214,84,126,128,64,26,19,8,243,3,16,17,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,15,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,149,171,47,13,242,175,64,26,19,8,243,3,16,19,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,25,198,87,14,79,110,127,64,26,19,8,243,3,16,20,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,18,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,20,82,199,87,213,52,175,64,26,19,8,243,3,16,22,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,241,218,255,238,223,194,131,64,26,19,8,243,3,16,23,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,21,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,43,201,243,193,83,189,174,64,26,19,8,243,3,16,25,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,130,88,126,187,48,157,134,64,26,19,8,243,3,16,26,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,24,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,231,195,191,170,88,23,174,64,26,19,8,243,3,16,28,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,207,112,119,73,6,222,138,64,26,19,8,243,3,16,29,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,27,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,178,24,127,85,40,173,64,26,19,8,243,3,16,31,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,212,26,73,226,49,186,144,64,26,19,8,243,3,16,32,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,30,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,80,68,54,248,245,63,172,64,26,19,8,243,3,16,34,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,92,197,95,233,167,18,148,64,26,19,8,243,3,16,35,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,33,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,118,48,132,230,224,83,172,64,26,19,8,243,3,16,37,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,88,244,2,10,223,141,147,64,26,19,8,243,3,16,38,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,36,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,66,43,18,228,66,173,64,26,19,8,243,3,16,40,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,157,241,30,71,64,97,143,64,26,19,8,243,3,16,41,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,39,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,101,234,195,254,202,173,64,26,19,8,243,3,16,43,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,155,224,100,182,119,195,138,64,26,19,8,243,3,16,44,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,42,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,21,2,112,107,149,46,174,64,26,19,8,243,3,16,46,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,110,178,174,48,123,153,135,64,26,19,8,243,3,16,47,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,45,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,98,218,11,72,107,86,174,64,26,19,8,243,3,16,49,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,153,207,170,37,175,37,134,64,26,19,8,243,3,16,50,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,48,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,1,12,73,244,159,36,174,64,26,19,8,243,3,16,52,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,231,167,70,2,133,77,134,64,26,19,8,243,3,16,53,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,51,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,242,98,203,143,146,173,64,26,19,8,243,3,16,55,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,59,34,156,157,236,126,135,64,26,19,8,243,3,16,56,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,54,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,154,155,204,225,66,233,172,64,26,19,8,243,3,16,58,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,146,109,78,24,29,53,137,64,26,19,8,243,3,16,59,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,57,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,174,65,156,108,248,236,171,64,26,19,8,243,3,16,61,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,213,18,49,8,152,231,139,64,26,19,8,243,3,16,62,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,60,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,222,0,82,32,190,130,171,64,26,19,8,243,3,16,64,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,219,180,234,198,41,241,140,64,26,19,8,243,3,16,65,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,63,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,148,169,187,54,113,217,170,64,26,19,8,243,3,16,67,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,254,111,138,174,203,140,142,64,26,19,8,243,3,16,68,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,66,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,132,52,154,178,4,78,170,64,26,19,8,243,3,16,70,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,82,234,223,73,51,190,143,64,26,19,8,243,3,16,71,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,69,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,220,223,157,84,181,247,169,64,26,19,8,243,3,16,73,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,184,1,99,185,33,40,144,64,26,19,8,243,3,16,74,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,72,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,233,131,98,249,88,254,169,64,26,19,8,243,3,16,76,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,105,97,12,180,177,70,143,64,26,19,8,243,3,16,77,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,75,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,74,82,37,77,36,48,170,64,26,19,8,243,3,16,79,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,144,173,171,201,28,78,141,64,26,19,8,243,3,16,80,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,78,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,199,70,209,144,187,170,64,26,19,8,243,3,16,82,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,65,196,85,92,126,136,136,64,26,19,8,243,3,16,83,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,81,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,245,119,126,138,60,11,171,64,26,19,8,243,3,16,85,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,153,207,170,37,175,37,134,64,26,19,8,243,3,16,86,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,84,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,112,142,202,39,79,74,171,64,26,19,8,243,3,16,88,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,40,60,111,97,55,98,132,64,26,19,8,243,3,16,89,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,87,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,180,147,254,62,74,240,171,64,26,19,8,243,3,16,91,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,41,252,17,176,55,73,128,64,26,19,8,243,3,16,92,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,90,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,159,191,5,172,124,28,124,64,26,19,8,243,3,16,95,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,120,18,35,26,33,8,4,18,8,112,222,33,20,143,80,172,64,26,19,8,243,3,16,94,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,93,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,30,23,250,138,24,193,119,64,26,19,8,243,3,16,98,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,120,18,35,26,33,8,4,18,8,57,205,9,142,119,183,172,64,26,19,8,243,3,16,97,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,96,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,235,164,22,197,97,137,171,64,26,19,8,243,3,16,100,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,16,83,65,112,244,223,125,64,26,19,8,243,3,16,101,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,99,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,74,230,79,23,141,170,64,26,19,8,243,3,16,103,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,255,222,21,187,3,189,129,64,26,19,8,243,3,16,104,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,102,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,243,6,115,210,243,121,168,64,26,19,8,243,3,16,106,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,62,243,248,124,181,3,136,64,26,19,8,243,3,16,107,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,105,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,36,254,108,19,92,168,64,26,19,8,243,3,16,109,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,13,52,67,201,239,109,136,64,26,19,8,243,3,16,110,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,108,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,142,183,170,139,159,201,168,64,26,19,8,243,3,16,112,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,205,95,189,184,61,64,134,64,26,19,8,243,3,16,113,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,111,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,168,44,145,133,131,169,64,26,19,8,243,3,16,115,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,135,233,125,233,249,8,131,64,26,19,8,243,3,16,116,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,114,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,77,86,106,161,221,136,127,64,26,19,8,243,3,16,119,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,120,18,35,26,33,8,4,18,8,151,42,193,41,250,87,170,64,26,19,8,243,3,16,118,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,117,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,98,188,220,122,147,115,122,64,26,19,8,243,3,16,122,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,120,18,35,26,33,8,4,18,8,2,28,67,47,224,17,171,64,26,19,8,243,3,16,121,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,120,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,102,102,4,37,114,171,64,26,19,8,243,3,16,124,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,40,10,1,121,18,35,26,33,8,4,18,8,186,199,49,68,196,16,120,64,26,19,8,243,3,16,125,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,123,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,44,217,237,252,147,170,171,64,26,19,8,243,3,16,127,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,41,10,1,121,18,36,26,34,8,4,18,8,76,5,83,95,21,210,118,64,26,20,8,243,3,16,128,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,126,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,154,75,117,245,2,227,171,64,26,20,8,243,3,16,130,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,41,10,1,121,18,36,26,34,8,4,18,8,70,99,153,160,131,200,117,64,26,20,8,243,3,16,131,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,20,8,243,3,16,129,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,161,157,215,199,84,230,171,64,26,20,8,243,3,16,133,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,41,10,1,121,18,36,26,34,8,4,18,8,122,243,171,51,18,227,117,64,26,20,8,243,3,16,134,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,20,8,243,3,16,132,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,57,125,178,161,55,177,171,64,26,20,8,243,3,16,136,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,41,10,1,121,18,36,26,34,8,4,18,8,247,202,90,117,173,185,121,64,26,20,8,243,3,16,137,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,20,8,243,3,16,135,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,220,116,141,21,42,216,136,64,26,20,8,243,3,16,140,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,41,10,1,120,18,36,26,34,8,4,18,8,245,39,39,158,252,4,170,64,26,20,8,243,3,16,139,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,20,8,243,3,16,138,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,61,94,9,188,64,35,169,64,26,20,8,243,3,16,142,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,41,10,1,121,18,36,26,34,8,4,18,8,157,241,30,71,64,97,143,64,26,20,8,243,3,16,143,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,20,8,243,3,16,141,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,128,57,200,111,85,168,64,26,20,8,243,3,16,145,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,41,10,1,121,18,36,26,34,8,4,18,8,251,166,69,169,156,218,146,64,26,20,8,243,3,16,146,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,20,8,243,3,16,144,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,65,143,183,194,137,155,167,64,26,20,8,243,3,16,148,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,41,10,1,121,18,36,26,34,8,4,18,8,204,88,155,173,31,214,149,64,26,20,8,243,3,16,149,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,20,8,243,3,16,147,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,91,101,14,194,39,31,150,64,26,20,8,243,3,16,152,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,41,10,1,120,18,36,26,34,8,4,18,8,39,71,46,121,66,142,167,64,26,20,8,243,3,16,151,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,20,8,243,3,16,150,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,45,57,63,36,20,158,169,64,26,20,8,243,3,16,154,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,41,10,1,121,18,36,26,34,8,4,18,8,196,165,39,94,197,46,144,64,26,20,8,243,3,16,155,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,20,8,243,3,16,153,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,161,253,40,239,212,217,169,64,26,20,8,243,3,16,157,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,41,10,1,121,18,36,26,34,8,4,18,8,179,104,75,177,190,233,142,64,26,20,8,243,3,16,158,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,20,8,243,3,16,156,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,5,26,12,99,70,123,24,152,207,109,6,237,71,16,154,18,19,8,243,3,16,1,26,12,99,70,123,24,152,207,109,6,237,71,16,154,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,244,3,16,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,57,55,53,98,99,26,19,8,244,3,16,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,244,3,16,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,47,205,144,61,140,128,64,26,19,8,244,3,16,7,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,37,120,136,18,75,11,145,192,26,19,8,244,3,16,8,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,244,3,16,6,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,31,47,205,144,61,140,128,64,26,19,8,244,3,16,10,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,37,120,136,18,75,11,145,192,26,19,8,244,3,16,11,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,244,3,16,9,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,244,3,16,5,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,244,3,16,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,152,4,18,149,4,10,146,4,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,57,55,53,98,99,26,19,8,245,3,16,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,245,3,16,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,231,178,214,172,223,187,125,64,26,19,8,245,3,16,7,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,70,40,163,189,3,9,143,192,26,19,8,245,3,16,8,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,245,3,16,6,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,152,0,42,13,199,130,64,26,19,8,245,3,16,10,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,244,40,4,228,195,72,145,192,26,19,8,245,3,16,11,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,245,3,16,9,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,57,23,162,191,245,242,130,64,26,19,8,245,3,16,13,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,70,40,163,189,3,17,144,192,26,19,8,245,3,16,14,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,245,3,16,12,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,245,3,16,5,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,245,3,16,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,245,3,16,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,169,3,18,166,3,10,163,3,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,246,3,16,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,57,55,53,98,99,26,19,8,246,3,16,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,246,3,16,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,231,180,153,204,103,21,144,192,26,19,8,246,3,16,8,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,120,18,35,26,33,8,4,18,8,8,58,141,32,28,43,135,64,26,19,8,246,3,16,7,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,246,3,16,6,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,241,68,77,176,250,201,141,64,26,19,8,246,3,16,10,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,110,203,42,60,193,173,145,192,26,19,8,246,3,16,11,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,246,3,16,9,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,246,3,16,5,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,246,3,16,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,196,156,1,18,192,156,1,10,188,156,1,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,247,3,16,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,52,57,55,53,98,99,26,19,8,247,3,16,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,247,3,16,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,153,155,1,10,6,112,111,105,110,116,115,18,141,155,1,18,137,155,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,46,137,79,110,238,35,147,64,26,19,8,247,3,16,7,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,24,179,112,205,230,213,151,192,26,19,8,247,3,16,8,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,6,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,222,70,247,188,186,67,144,64,26,19,8,247,3,16,10,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,24,179,112,205,230,213,151,192,26,19,8,247,3,16,11,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,9,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,224,32,43,153,170,143,64,26,19,8,247,3,16,13,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,197,209,90,101,173,229,151,192,26,19,8,247,3,16,14,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,12,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,224,32,43,153,170,143,64,26,19,8,247,3,16,16,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,41,107,237,92,142,52,152,192,26,19,8,247,3,16,17,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,15,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,7,1,155,233,128,173,152,192,26,19,8,247,3,16,20,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,120,18,35,26,33,8,4,18,8,214,155,130,37,47,223,143,64,26,19,8,247,3,16,19,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,18,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,131,9,35,141,45,36,144,64,26,19,8,247,3,16,22,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,33,21,214,64,124,59,153,192,26,19,8,247,3,16,23,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,21,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,20,14,12,107,159,143,153,192,26,19,8,247,3,16,26,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,120,18,35,26,33,8,4,18,8,140,101,225,84,129,83,144,64,26,19,8,247,3,16,25,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,24,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,29,94,228,40,178,144,64,26,19,8,247,3,16,28,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,16,99,0,93,22,19,154,192,26,19,8,247,3,16,29,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,27,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,71,145,60,110,102,69,145,64,26,19,8,247,3,16,31,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,12,184,244,78,141,150,154,192,26,19,8,247,3,16,32,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,30,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,192,124,242,57,13,146,64,26,19,8,247,3,16,34,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,173,207,20,17,119,250,154,192,26,19,8,247,3,16,35,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,33,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,89,79,96,169,79,218,146,64,26,19,8,247,3,16,37,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,69,139,118,11,13,47,155,192,26,19,8,247,3,16,38,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,36,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,2,195,62,51,141,109,147,64,26,19,8,247,3,16,40,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,243,169,96,163,211,62,155,192,26,19,8,247,3,16,41,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,39,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,112,12,130,105,74,148,64,26,19,8,247,3,16,43,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,243,169,96,163,211,62,155,192,26,19,8,247,3,16,44,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,42,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,13,132,228,56,111,148,64,26,19,8,247,3,16,46,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,212,234,25,62,79,52,155,192,26,19,8,247,3,16,47,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,45,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,74,88,20,198,142,148,64,26,19,8,247,3,16,49,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,39,204,47,166,136,36,155,192,26,19,8,247,3,16,50,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,48,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,12,37,164,166,34,211,148,64,26,19,8,247,3,16,52,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,255,176,42,121,176,234,154,192,26,19,8,247,3,16,53,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,51,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,194,159,76,6,61,18,149,64,26,19,8,247,3,16,55,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,64,218,195,81,66,124,154,192,26,19,8,247,3,16,56,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,54,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,203,251,10,206,144,65,149,64,26,19,8,247,3,16,58,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,212,228,114,146,13,254,153,192,26,19,8,247,3,16,59,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,57,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,42,113,148,8,208,106,153,192,26,19,8,247,3,16,62,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,120,18,35,26,33,8,4,18,8,181,152,130,48,96,102,149,64,26,19,8,247,3,16,61,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,60,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,242,22,16,251,104,123,149,64,26,19,8,247,3,16,64,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,59,35,106,236,53,147,152,192,26,19,8,247,3,16,65,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,63,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,99,183,108,200,38,118,149,64,26,19,8,247,3,16,67,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,33,15,47,149,58,5,152,192,26,19,8,247,3,16,68,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,66,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,181,152,130,48,96,102,149,64,26,19,8,247,3,16,70,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,189,117,156,157,89,182,151,192,26,19,8,247,3,16,71,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,69,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,1,74,65,132,116,196,150,192,26,19,8,247,3,16,74,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,120,18,35,26,33,8,4,18,8,81,255,239,56,127,23,149,64,26,19,8,247,3,16,73,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,72,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,229,9,159,121,74,153,148,64,26,19,8,247,3,16,76,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,183,190,66,56,77,205,149,192,26,19,8,247,3,16,77,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,75,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,68,242,126,183,96,53,148,64,26,19,8,247,3,16,79,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,126,235,192,123,205,52,149,192,26,19,8,247,3,16,80,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,78,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,191,20,90,84,95,198,148,192,26,19,8,247,3,16,83,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,120,18,35,26,33,8,4,18,8,81,249,72,141,61,225,147,64,26,19,8,247,3,16,82,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,81,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,102,128,107,57,62,147,64,26,19,8,247,3,16,85,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,22,161,123,202,33,51,148,192,26,19,8,247,3,16,86,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,84,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,67,236,215,11,31,255,146,64,26,19,8,247,3,16,88,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,156,164,96,53,16,9,148,192,26,19,8,247,3,16,89,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,87,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,17,140,121,194,186,146,64,26,19,8,247,3,16,91,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,65,103,140,5,131,233,147,192,26,19,8,247,3,16,92,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,90,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,93,250,107,183,216,86,146,64,26,19,8,247,3,16,94,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,230,41,184,213,245,201,147,192,26,19,8,247,3,16,95,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,93,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,240,4,27,248,163,216,145,64,26,19,8,247,3,16,97,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,56,11,206,61,47,186,147,192,26,19,8,247,3,16,98,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,96,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,162,206,16,158,243,100,145,64,26,19,8,247,3,16,100,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,199,106,113,112,113,191,147,192,26,19,8,247,3,16,101,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,99,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,196,56,99,17,1,236,144,64,26,19,8,247,3,16,103,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,117,137,91,8,56,207,147,192,26,19,8,247,3,16,104,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,102,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,231,162,181,132,14,115,144,64,26,19,8,247,3,16,106,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,126,229,25,208,139,254,147,192,26,19,8,247,3,16,107,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,105,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,62,224,32,43,153,170,143,64,26,19,8,247,3,16,109,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,0,62,243,44,241,87,148,192,26,19,8,247,3,16,110,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,108,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,217,64,231,135,118,37,142,64,26,19,8,247,3,16,112,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,139,242,138,81,170,224,148,192,26,19,8,247,3,16,113,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,111,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,238,157,200,121,101,202,140,64,26,19,8,247,3,16,115,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,83,37,176,64,108,126,149,192,26,19,8,247,3,16,116,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,114,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,193,203,105,231,128,167,138,64,26,19,8,247,3,16,118,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,236,230,184,230,67,233,150,192,26,19,8,247,3,16,119,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,117,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,128,156,41,99,173,223,137,64,26,19,8,247,3,16,121,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,67,121,129,8,72,140,151,192,26,19,8,247,3,16,122,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,120,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,184,105,4,116,235,65,137,64,26,19,8,247,3,16,124,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,40,10,1,121,18,35,26,33,8,4,18,8,124,76,3,197,199,36,152,192,26,19,8,247,3,16,125,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,123,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,88,123,125,138,147,111,136,64,26,19,8,247,3,16,127,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,85,55,165,67,49,33,153,192,26,20,8,247,3,16,128,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,126,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,222,126,98,245,129,69,136,64,26,20,8,247,3,16,130,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,164,109,175,157,225,148,153,192,26,20,8,247,3,16,131,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,129,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,58,188,54,37,15,101,136,64,26,20,8,247,3,16,133,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,224,235,60,104,234,169,153,192,26,20,8,247,3,16,134,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,132,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,75,116,179,180,182,195,136,64,26,20,8,247,3,16,136,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,255,170,131,205,110,180,153,192,26,20,8,247,3,16,137,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,135,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,232,224,199,104,23,171,137,64,26,20,8,247,3,16,139,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,112,75,224,154,44,175,153,192,26,20,8,247,3,16,140,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,138,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,237,145,122,34,226,93,138,64,26,20,8,247,3,16,142,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,194,44,246,2,102,159,153,192,26,20,8,247,3,16,143,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,141,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,107,63,72,113,190,58,139,64,26,20,8,247,3,16,145,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,42,113,148,8,208,106,153,192,26,20,8,247,3,16,146,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,144,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,86,226,102,127,207,149,140,64,26,20,8,247,3,16,148,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,250,249,208,19,164,1,153,192,26,20,8,247,3,16,149,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,147,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,26,112,39,12,74,237,142,64,26,20,8,247,3,16,151,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,41,107,237,92,142,52,152,192,26,20,8,247,3,16,152,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,150,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,214,155,130,37,47,223,143,64,26,20,8,247,3,16,154,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,167,18,20,0,41,219,151,192,26,20,8,247,3,16,155,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,153,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,227,110,31,138,104,144,64,26,20,8,247,3,16,157,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,119,155,80,11,253,113,151,192,26,20,8,247,3,16,158,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,156,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,196,56,99,17,1,236,144,64,26,20,8,247,3,16,160,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,93,135,21,180,1,228,150,192,26,20,8,247,3,16,161,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,159,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,205,148,33,217,84,27,145,64,26,20,8,247,3,16,163,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,127,241,103,39,15,107,150,192,26,20,8,247,3,16,164,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,162,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,92,244,196,11,151,32,145,64,26,20,8,247,3,16,166,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,222,217,71,101,37,7,150,192,26,20,8,247,3,16,167,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,165,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,31,118,55,65,142,11,145,64,26,20,8,247,3,16,169,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,235,224,17,59,2,179,149,192,26,20,8,247,3,16,170,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,168,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,114,87,77,169,199,251,144,64,26,20,8,247,3,16,172,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,31,3,225,61,183,152,149,192,26,20,8,247,3,16,173,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,171,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,105,251,142,225,115,204,144,64,26,20,8,247,3,16,175,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,218,40,149,171,90,84,149,192,26,20,8,247,3,16,176,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,174,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,36,33,67,79,23,136,144,64,26,20,8,247,3,16,178,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,148,78,73,25,254,15,149,192,26,20,8,247,3,16,179,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,177,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,48,40,13,37,244,51,144,64,26,20,8,247,3,16,181,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,252,146,231,30,104,219,148,192,26,20,8,247,3,16,182,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,180,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,196,227,5,150,135,128,143,64,26,20,8,247,3,16,184,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,243,54,41,87,20,172,148,192,26,20,8,247,3,16,185,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,183,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,65,133,133,141,224,240,141,64,26,20,8,247,3,16,187,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,152,249,84,39,135,140,148,192,26,20,8,247,3,16,188,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,186,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,142,175,65,144,13,248,139,64,26,20,8,247,3,16,190,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,235,218,106,143,192,124,148,192,26,20,8,247,3,16,191,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,189,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,227,47,21,175,76,248,136,64,26,20,8,247,3,16,193,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,109,51,68,236,37,214,148,192,26,20,8,247,3,16,194,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,192,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,160,244,134,211,245,195,133,64,26,20,8,247,3,16,196,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,226,132,83,115,174,131,149,192,26,20,8,247,3,16,197,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,195,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,42,157,208,160,43,224,131,64,26,20,8,247,3,16,199,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,88,214,98,250,54,49,150,192,26,20,8,247,3,16,200,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,198,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,62,200,206,78,125,217,150,192,26,20,8,247,3,16,203,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,106,192,194,205,123,59,130,64,26,20,8,247,3,16,202,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,201,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,23,217,5,186,0,21,129,64,26,20,8,247,3,16,205,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,58,29,195,64,244,92,151,192,26,20,8,247,3,16,206,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,204,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,122,108,241,5,160,45,128,64,26,20,8,247,3,16,208,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,24,179,112,205,230,213,151,192,26,20,8,247,3,16,209,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,207,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,174,248,239,205,161,224,126,64,26,20,8,247,3,16,211,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,11,172,166,247,9,42,152,192,26,20,8,247,3,16,212,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,210,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,213,13,78,79,56,228,125,64,26,20,8,247,3,16,214,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,224,229,149,188,168,115,152,192,26,20,8,247,3,16,215,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,213,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,5,133,17,68,100,77,126,64,26,20,8,247,3,16,217,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,141,4,128,84,111,131,152,192,26,20,8,247,3,16,218,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,216,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,244,104,12,155,177,87,128,64,26,20,8,247,3,16,220,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,150,96,62,28,195,178,152,192,26,20,8,247,3,16,221,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,219,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,76,219,230,123,221,241,152,192,26,20,8,247,3,16,224,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,159,232,56,124,114,87,131,64,26,20,8,247,3,16,223,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,222,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,216,193,97,228,51,38,133,64,26,20,8,247,3,16,226,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,220,58,138,174,31,247,152,192,26,20,8,247,3,16,227,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,225,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,253,61,169,90,6,80,136,64,26,20,8,247,3,16,229,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,46,28,160,22,89,231,152,192,26,20,8,247,3,16,230,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,228,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,41,16,8,237,234,114,138,64,26,20,8,247,3,16,232,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,37,192,225,78,5,184,152,192,26,20,8,247,3,16,233,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,231,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,78,140,79,99,189,156,141,64,26,20,8,247,3,16,235,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,215,137,215,244,84,68,152,192,26,20,8,247,3,16,236,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,234,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,167,18,20,0,41,219,151,192,26,20,8,247,3,16,239,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,226,162,76,251,11,139,143,64,26,20,8,247,3,16,238,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,237,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,131,9,35,141,45,36,144,64,26,20,8,247,3,16,241,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,15,87,178,5,147,166,151,192,26,20,8,247,3,16,242,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,240,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,96,159,208,25,32,157,144,64,26,20,8,247,3,16,244,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,28,94,124,219,111,82,151,192,26,20,8,247,3,16,245,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,243,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,205,148,33,217,84,27,145,64,26,20,8,247,3,16,247,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,123,70,92,25,134,238,150,192,26,20,8,247,3,16,248,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,246,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,49,46,180,208,53,106,145,64,26,20,8,247,3,16,250,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,23,173,201,33,165,159,150,192,26,20,8,247,3,16,251,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,249,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,118,149,169,95,187,59,150,192,26,20,8,247,3,16,254,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,119,8,0,99,146,174,145,64,26,20,8,247,3,16,253,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,252,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,127,195,87,190,23,146,64,26,20,8,247,3,16,128,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,74,201,241,120,24,79,149,192,26,20,8,247,3,16,129,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,255,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,158,173,239,132,39,146,64,26,20,8,247,3,16,131,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,135,65,216,151,223,45,148,192,26,20,8,247,3,16,132,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,130,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,188,226,75,245,238,242,145,64,26,20,8,247,3,16,134,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,130,144,37,222,20,123,147,192,26,20,8,247,3,16,135,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,133,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,183,49,153,59,36,64,145,64,26,20,8,247,3,16,137,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,168,165,131,95,171,126,146,192,26,20,8,247,3,16,138,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,136,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,196,56,99,17,1,236,144,64,26,20,8,247,3,16,140,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,129,138,126,50,211,68,146,192,26,20,8,247,3,16,141,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,139,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,161,200,105,242,177,46,144,64,26,20,8,247,3,16,143,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,81,19,187,61,167,219,145,192,26,20,8,247,3,16,144,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,142,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,235,248,99,23,30,132,142,64,26,20,8,247,3,16,146,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,124,217,203,120,8,146,145,192,26,20,8,247,3,16,147,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,145,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,3,251,169,107,84,111,139,64,26,20,8,247,3,16,149,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,146,60,84,22,57,109,145,192,26,20,8,247,3,16,150,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,148,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,235,133,44,203,94,241,135,64,26,20,8,247,3,16,152,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,12,57,111,171,74,151,145,192,26,20,8,247,3,16,153,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,151,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,229,200,43,186,16,210,132,64,26,20,8,247,3,16,155,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,212,107,148,154,12,53,146,192,26,20,8,247,3,16,156,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,154,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,149,134,211,8,221,241,129,64,26,20,8,247,3,16,158,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,195,185,190,182,166,12,147,192,26,20,8,247,3,16,159,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,157,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,147,72,162,109,188,217,147,192,26,20,8,247,3,16,162,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,222,111,179,194,205,73,127,64,26,20,8,247,3,16,161,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,160,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,168,59,239,188,83,193,123,64,26,20,8,247,3,16,164,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,152,249,84,39,135,140,148,192,26,20,8,247,3,16,165,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,163,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,226,132,83,115,174,131,149,192,26,20,8,247,3,16,168,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,214,154,22,3,121,81,119,64,26,20,8,247,3,16,167,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,166,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,182,207,129,70,113,218,116,64,26,20,8,247,3,16,170,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,27,88,213,47,46,28,150,192,26,20,8,247,3,16,171,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,169,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,97,50,33,194,138,96,150,192,26,20,8,247,3,16,174,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,25,99,109,146,16,243,115,64,26,20,8,247,3,16,173,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,172,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,75,207,152,36,90,133,150,192,26,20,8,247,3,16,177,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,99,232,196,50,246,179,115,64,26,20,8,247,3,16,176,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,175,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,86,225,250,92,25,8,116,64,26,20,8,247,3,16,179,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,166,12,109,84,231,164,150,192,26,20,8,247,3,16,180,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,178,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,79,151,49,152,138,123,119,64,26,20,8,247,3,16,182,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,62,200,206,78,125,217,150,192,26,20,8,247,3,16,183,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,181,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,226,20,24,37,21,144,125,64,26,20,8,247,3,16,185,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,236,230,184,230,67,233,150,192,26,20,8,247,3,16,186,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,184,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,18,40,83,0,54,98,128,64,26,20,8,247,3,16,188,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,62,200,206,78,125,217,150,192,26,20,8,247,3,16,189,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,187,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,11,43,169,194,178,129,64,26,20,8,247,3,16,191,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,114,234,157,81,50,191,150,192,26,20,8,247,3,16,192,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,190,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,239,2,82,79,3,131,64,26,20,8,247,3,16,194,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,106,142,223,137,222,143,150,192,26,20,8,247,3,16,195,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,193,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,168,74,158,239,7,189,132,64,26,20,8,247,3,16,197,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,149,84,240,196,63,70,150,192,26,20,8,247,3,16,198,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,196,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,87,111,47,51,16,3,134,64,26,20,8,247,3,16,200,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,79,122,164,50,227,1,150,192,26,20,8,247,3,16,201,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,199,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,18,155,138,76,245,244,134,64,26,20,8,247,3,16,203,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,40,95,159,5,11,200,149,192,26,20,8,247,3,16,204,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,202,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,88,123,125,138,147,111,136,64,26,20,8,247,3,16,206,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,105,136,56,222,156,89,149,192,26,20,8,247,3,16,207,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,205,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,123,235,118,169,226,44,137,64,26,20,8,247,3,16,209,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,118,143,2,180,121,5,149,192,26,20,8,247,3,16,210,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,208,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,184,105,4,116,235,65,137,64,26,20,8,247,3,16,212,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,170,177,209,182,46,235,148,192,26,20,8,247,3,16,213,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,211,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,214,40,75,217,111,76,137,64,26,20,8,247,3,16,215,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,70,24,63,191,77,156,148,192,26,20,8,247,3,16,216,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,214,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,93,44,48,68,94,34,137,64,26,20,8,247,3,16,218,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,165,0,31,253,99,56,148,192,26,20,8,247,3,16,219,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,217,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,179,184,81,186,32,143,136,64,26,20,8,247,3,16,221,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,199,106,113,112,113,191,147,192,26,20,8,247,3,16,222,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,220,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,40,4,186,149,103,6,136,64,26,20,8,247,3,16,224,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,160,79,108,67,153,133,147,192,26,20,8,247,3,16,225,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,223,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,200,21,51,172,15,52,135,64,26,20,8,247,3,16,227,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,99,209,222,120,144,112,147,192,26,20,8,247,3,16,228,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,226,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,99,118,249,8,237,174,133,64,26,20,8,247,3,16,230,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,251,140,64,115,38,165,147,192,26,20,8,247,3,16,231,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,229,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,181,81,104,197,228,104,132,64,26,20,8,247,3,16,233,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,83,31,9,149,42,72,148,192,26,20,8,247,3,16,234,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,232,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,176,160,181,11,26,182,131,64,26,20,8,247,3,16,236,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,191,20,90,84,95,198,148,192,26,20,8,247,3,16,237,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,235,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,239,139,29,73,139,47,149,192,26,20,8,247,3,16,240,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,98,106,171,177,105,66,131,64,26,20,8,247,3,16,239,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,238,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,141,48,188,236,202,248,130,64,26,20,8,247,3,16,242,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,114,228,246,165,240,136,149,192,26,20,8,247,3,16,243,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,241,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,111,113,117,135,70,238,130,64,26,20,8,247,3,16,245,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,183,190,66,56,77,205,149,192,26,20,8,247,3,16,246,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,244,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,172,239,2,82,79,3,131,64,26,20,8,247,3,16,248,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,36,180,147,247,129,75,150,192,26,20,8,247,3,16,249,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,247,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,189,167,127,225,246,97,131,64,26,20,8,247,3,16,251,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,106,142,223,137,222,143,150,192,26,20,8,247,3,16,252,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,250,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,103,27,94,107,52,245,131,64,26,20,8,247,3,16,254,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,205,39,114,129,191,222,150,192,26,20,8,247,3,16,255,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,253,2,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,49,193,4,121,160,45,151,192,26,20,8,247,3,16,130,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,95,197,70,79,34,252,132,64,26,20,8,247,3,16,129,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,128,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,89,220,9,166,120,103,151,192,26,20,8,247,3,16,133,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,195,100,128,242,68,129,134,64,26,20,8,247,3,16,132,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,131,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,253,61,169,90,6,80,136,64,26,20,8,247,3,16,135,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,37,186,58,163,195,129,151,192,26,20,8,247,3,16,136,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,134,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,67,121,129,8,72,140,151,192,26,20,8,247,3,16,139,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,133,77,220,28,120,146,138,64,26,20,8,247,3,16,138,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,137,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,225,150,254,163,136,30,141,64,26,20,8,247,3,16,141,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,67,121,129,8,72,140,151,192,26,20,8,247,3,16,142,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,140,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,92,159,103,144,29,181,143,64,26,20,8,247,3,16,144,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,6,251,243,61,63,119,151,192,26,20,8,247,3,16,145,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,143,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,175,213,218,115,208,16,145,64,26,20,8,247,3,16,147,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,223,223,238,16,103,61,151,192,26,20,8,247,3,16,148,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,146,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,132,162,26,225,217,29,151,192,26,20,8,247,3,16,151,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,253,11,229,205,128,132,145,64,26,20,8,247,3,16,150,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,149,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,54,223,102,138,0,29,146,64,26,20,8,247,3,16,153,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,123,70,92,25,134,238,150,192,26,20,8,247,3,16,154,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,152,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,245,181,205,177,110,139,146,64,26,20,8,247,3,16,156,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,114,234,157,81,50,191,150,192,26,20,8,247,3,16,157,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,155,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,210,75,123,62,97,4,147,64,26,20,8,247,3,16,159,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,188,111,245,241,23,128,150,192,26,20,8,247,3,16,160,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,158,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,198,68,177,104,132,88,147,64,26,20,8,247,3,16,162,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,118,149,169,95,187,59,150,192,26,20,8,247,3,16,163,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,161,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,31,253,250,224,156,147,64,26,20,8,247,3,16,165,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,131,156,115,53,152,231,149,192,26,20,8,247,3,16,166,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,164,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,194,153,165,90,251,219,147,64,26,20,8,247,3,16,168,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,126,235,192,123,205,52,149,192,26,20,8,247,3,16,169,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,167,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,224,88,236,191,127,230,147,64,26,20,8,247,3,16,171,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,78,116,253,134,161,203,148,192,26,20,8,247,3,16,172,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,170,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,224,88,236,191,127,230,147,64,26,20,8,247,3,16,174,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,226,126,172,199,108,77,148,192,26,20,8,247,3,16,175,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,173,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,163,218,94,245,118,209,147,64,26,20,8,247,3,16,177,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,117,137,91,8,56,207,147,192,26,20,8,247,3,16,178,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,176,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,215,252,45,248,43,183,147,64,26,20,8,247,3,16,180,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,243,48,130,171,210,117,147,192,26,20,8,247,3,16,181,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,179,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,94,0,19,99,26,141,147,64,26,20,8,247,3,16,183,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,173,86,54,25,118,49,147,192,26,20,8,247,3,16,184,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,182,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,189,232,242,160,48,41,147,64,26,20,8,247,3,16,186,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,125,223,114,36,74,200,146,192,26,20,8,247,3,16,187,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,185,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,150,205,237,115,88,239,146,64,26,20,8,247,3,16,189,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,34,162,158,244,188,168,146,192,26,20,8,247,3,16,190,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,188,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,163,212,183,73,53,155,146,64,26,20,8,247,3,16,192,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,86,196,109,247,113,142,146,192,26,20,8,247,3,16,193,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,191,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,2,189,151,135,75,55,146,64,26,20,8,247,3,16,195,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,116,131,180,92,246,152,146,192,26,20,8,247,3,16,196,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,194,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,73,189,163,33,149,226,146,192,26,20,8,247,3,16,199,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,240,4,27,248,163,216,145,64,26,20,8,247,3,16,198,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,197,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,171,42,207,101,71,148,145,64,26,20,8,247,3,16,201,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,234,212,195,227,126,70,147,192,26,20,8,247,3,16,202,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,200,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,131,15,202,56,111,90,145,64,26,20,8,247,3,16,204,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,199,106,113,112,113,191,147,192,26,20,8,247,3,16,205,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,203,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,143,157,150,95,51,93,148,192,26,20,8,247,3,16,208,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,92,244,196,11,151,32,145,64,26,20,8,247,3,16,207,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,206,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,53,217,191,222,190,230,144,64,26,20,8,247,3,16,210,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,105,136,56,222,156,89,149,192,26,20,8,247,3,16,211,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,209,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,23,173,201,33,165,159,150,192,26,20,8,247,3,16,214,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,136,186,213,70,248,214,144,64,26,20,8,247,3,16,213,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,212,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,62,53,126,166,18,22,145,64,26,20,8,247,3,16,216,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,58,29,195,64,244,92,151,192,26,20,8,247,3,16,217,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,215,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,214,240,223,160,168,74,145,64,26,20,8,247,3,16,219,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,219,52,227,2,222,192,151,192,26,20,8,247,3,16,220,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,218,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,149,199,70,200,22,185,145,64,26,20,8,247,3,16,222,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,215,137,215,244,84,68,152,192,26,20,8,247,3,16,223,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,221,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,188,226,75,245,238,242,145,64,26,20,8,247,3,16,225,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,81,134,242,137,102,110,152,192,26,20,8,247,3,16,226,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,224,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,102,86,42,127,44,134,146,64,26,20,8,247,3,16,228,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,180,31,133,129,71,189,152,192,26,20,8,247,3,16,229,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,227,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,128,253,181,126,146,215,152,192,26,20,8,247,3,16,232,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,232,174,3,220,145,223,146,64,26,20,8,247,3,16,231,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,230,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,180,140,52,217,220,249,146,64,26,20,8,247,3,16,234,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,128,253,181,126,146,215,152,192,26,20,8,247,3,16,235,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,233,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,189,232,242,160,48,41,147,64,26,20,8,247,3,16,237,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,176,110,210,199,124,10,152,192,26,20,8,247,3,16,238,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,236,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,133,106,3,0,78,147,64,26,20,8,247,3,16,240,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,197,203,179,185,107,175,150,192,26,20,8,247,3,16,241,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,239,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,54,229,13,54,66,83,147,64,26,20,8,247,3,16,243,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,187,105,78,70,214,73,149,192,26,20,8,247,3,16,244,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,242,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,137,198,35,158,123,67,147,64,26,20,8,247,3,16,246,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,78,116,253,134,161,203,148,192,26,20,8,247,3,16,247,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,245,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,206,160,111,48,216,135,147,64,26,20,8,247,3,16,249,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,105,136,56,222,156,89,149,192,26,20,8,247,3,16,250,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,248,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,97,50,33,194,138,96,150,192,26,20,8,247,3,16,253,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,129,112,12,130,105,74,148,64,26,20,8,247,3,16,252,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,251,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,29,221,32,54,202,49,149,64,26,20,8,247,3,16,255,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,58,29,195,64,244,92,151,192,26,20,8,247,3,16,128,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,254,3,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,151,217,59,203,219,91,149,64,26,20,8,247,3,16,130,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,119,155,80,11,253,113,151,192,26,20,8,247,3,16,131,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,129,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,57,223,253,29,97,149,64,26,20,8,247,3,16,133,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,89,220,9,166,120,103,151,192,26,20,8,247,3,16,134,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,132,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,23,173,201,33,165,159,150,192,26,20,8,247,3,16,137,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,120,18,36,26,34,8,4,18,8,8,122,152,152,153,86,149,64,26,20,8,247,3,16,136,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,135,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,216,2,213,163,109,237,148,64,26,20,8,247,3,16,139,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,35,174,236,75,64,21,149,192,26,20,8,247,3,16,140,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,138,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,116,105,66,172,140,158,148,64,26,20,8,247,3,16,142,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,251,140,64,115,38,165,147,192,26,20,8,247,3,16,143,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,141,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,250,108,39,23,123,116,148,64,26,20,8,247,3,16,145,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,41,10,1,121,18,36,26,34,8,4,18,8,203,21,125,126,250,59,147,192,26,20,8,247,3,16,146,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,20,8,247,3,16,144,4,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,5,26,12,99,71,250,83,152,207,109,6,237,71,175,106,18,19,8,247,3,16,1,26,12,99,71,250,83,152,207,109,6,237,71,175,106,10,201,82,18,198,82,10,195,82,10,161,81,10,6,112,111,105,110,116,115,18,150,81,18,147,81,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,100,95,26,193,180,100,64,26,19,8,248,3,16,7,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,10,246,86,235,252,153,93,192,26,19,8,248,3,16,8,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,6,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,235,31,36,152,220,98,192,26,19,8,248,3,16,10,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,10,246,86,235,252,153,93,192,26,19,8,248,3,16,11,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,9,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,178,244,103,191,214,70,56,192,26,19,8,248,3,16,13,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,40,26,79,164,45,151,99,192,26,19,8,248,3,16,14,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,12,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,127,243,166,84,70,65,81,64,26,19,8,248,3,16,16,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,54,155,98,82,253,118,101,192,26,19,8,248,3,16,17,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,15,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,73,132,22,247,191,94,107,64,26,19,8,248,3,16,19,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,53,226,124,91,173,65,101,192,26,19,8,248,3,16,20,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,18,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,83,240,118,234,190,238,115,64,26,19,8,248,3,16,22,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,34,54,184,200,237,193,98,192,26,19,8,248,3,16,23,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,21,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,236,92,69,84,102,94,119,64,26,19,8,248,3,16,25,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,17,67,217,44,126,119,96,192,26,19,8,248,3,16,26,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,24,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,241,135,246,56,86,254,119,64,26,19,8,248,3,16,28,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,26,48,80,144,28,175,95,192,26,19,8,248,3,16,29,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,27,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,242,64,220,47,166,51,120,64,26,19,8,248,3,16,31,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,17,218,237,198,60,111,94,192,26,19,8,248,3,16,32,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,30,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,113,100,105,52,254,24,120,64,26,19,8,248,3,16,34,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,245,215,198,106,157,175,90,192,26,19,8,248,3,16,35,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,33,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,214,99,212,32,94,133,86,192,26,19,8,248,3,16,38,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,236,92,69,84,102,94,119,64,26,19,8,248,3,16,37,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,36,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,27,40,207,174,142,116,64,26,19,8,248,3,16,40,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,7,187,190,24,0,141,70,192,26,19,8,248,3,16,41,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,39,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,74,245,160,190,4,114,50,192,26,19,8,248,3,16,44,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,72,225,46,42,143,121,114,64,26,19,8,248,3,16,43,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,42,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,106,177,238,55,79,190,111,64,26,19,8,248,3,16,46,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,38,55,46,69,236,21,39,64,26,19,8,248,3,16,47,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,45,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,49,244,186,136,192,9,104,64,26,19,8,248,3,16,49,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,74,66,172,20,184,67,71,64,26,19,8,248,3,16,50,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,48,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,239,108,208,129,138,96,64,26,19,8,248,3,16,52,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,89,179,216,212,122,182,82,64,26,19,8,248,3,16,53,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,51,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,205,198,150,204,141,216,75,64,26,19,8,248,3,16,55,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,135,97,196,195,217,245,88,64,26,19,8,248,3,16,56,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,54,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,210,136,170,232,176,143,44,192,26,19,8,248,3,16,58,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,157,127,84,68,57,224,91,64,26,19,8,248,3,16,59,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,57,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,164,91,216,233,18,80,86,192,26,19,8,248,3,16,61,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,172,185,77,233,88,245,93,64,26,19,8,248,3,16,62,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,60,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,18,136,156,246,39,231,99,192,26,19,8,248,3,16,64,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,172,185,77,233,88,245,93,64,26,19,8,248,3,16,65,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,63,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,18,136,156,246,39,231,99,192,26,19,8,248,3,16,67,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,163,99,235,31,121,181,92,64,26,19,8,248,3,16,68,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,66,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,255,34,242,108,24,50,97,192,26,19,8,248,3,16,70,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,123,153,150,12,90,75,87,64,26,19,8,248,3,16,71,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,69,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,105,237,209,121,154,203,84,64,26,19,8,248,3,16,74,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,229,181,136,107,49,15,95,192,26,19,8,248,3,16,73,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,72,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,164,91,216,233,18,80,86,192,26,19,8,248,3,16,76,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,71,7,20,66,187,54,80,64,26,19,8,248,3,16,77,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,75,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,127,3,79,196,147,80,81,192,26,19,8,248,3,16,79,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,117,126,204,21,119,24,77,64,26,19,8,248,3,16,80,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,78,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,150,226,152,243,233,119,68,192,26,19,8,248,3,16,82,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,99,210,7,131,183,152,74,64,26,19,8,248,3,16,83,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,81,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,154,100,12,81,215,241,52,192,26,19,8,248,3,16,85,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,99,210,7,131,183,152,74,64,26,19,8,248,3,16,86,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,84,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,24,6,87,176,228,47,192,26,19,8,248,3,16,88,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,77,235,170,29,251,11,81,64,26,19,8,248,3,16,89,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,87,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,24,6,87,176,228,47,192,26,19,8,248,3,16,91,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,138,211,143,177,121,96,89,64,26,19,8,248,3,16,92,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,90,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,154,100,12,81,215,241,52,192,26,19,8,248,3,16,94,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,169,71,130,251,184,138,93,64,26,19,8,248,3,16,95,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,93,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,203,132,195,45,214,155,59,192,26,19,8,248,3,16,97,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,226,164,212,43,44,165,96,64,26,19,8,248,3,16,98,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,96,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,252,237,21,145,123,47,100,64,26,19,8,248,3,16,101,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,181,86,139,61,41,162,72,192,26,19,8,248,3,16,100,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,99,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,231,229,159,211,37,82,192,26,19,8,248,3,16,103,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,12,40,15,54,155,68,102,64,26,19,8,248,3,16,104,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,102,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,93,255,69,178,15,90,192,26,19,8,248,3,16,106,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,19,197,139,8,43,79,103,64,26,19,8,248,3,16,107,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,105,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,225,67,189,125,145,164,94,192,26,19,8,248,3,16,109,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,16,83,192,26,139,228,102,64,26,19,8,248,3,16,110,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,108,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,3,78,163,81,8,210,97,192,26,19,8,248,3,16,112,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,2,210,172,108,187,4,101,64,26,19,8,248,3,16,113,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,111,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,15,22,209,8,136,124,99,192,26,19,8,248,3,16,115,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,245,80,153,190,235,36,99,64,26,19,8,248,3,16,116,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,114,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,29,151,228,182,87,92,101,192,26,19,8,248,3,16,118,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,178,157,228,196,152,202,94,64,26,19,8,248,3,16,119,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,117,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,108,95,157,103,58,54,85,64,26,19,8,248,3,16,122,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,37,52,97,137,231,102,102,192,26,19,8,248,3,16,121,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,120,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,86,65,13,231,218,75,82,64,26,19,8,248,3,16,125,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,35,123,123,146,151,49,102,192,26,19,8,248,3,16,124,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,123,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,31,80,202,173,167,145,101,192,26,19,8,248,3,16,127,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,135,42,145,168,54,152,79,64,26,20,8,248,3,16,128,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,126,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,18,136,156,246,39,231,99,192,26,20,8,248,3,16,130,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,99,210,7,131,183,152,74,64,26,20,8,248,3,16,131,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,129,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,2,149,189,90,184,156,97,192,26,20,8,248,3,16,133,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,68,94,21,57,120,110,70,64,26,20,8,248,3,16,134,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,132,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,37,234,34,239,56,68,66,64,26,20,8,248,3,16,137,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,176,35,6,161,146,250,87,192,26,20,8,248,3,16,136,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,135,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,43,206,185,202,120,25,67,64,26,20,8,248,3,16,140,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,118,173,236,250,179,16,80,192,26,20,8,248,3,16,139,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,138,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,68,94,21,57,120,110,70,64,26,20,8,248,3,16,143,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,203,132,195,45,214,155,59,192,26,20,8,248,3,16,142,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,141,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,178,128,216,136,159,212,230,63,26,20,8,248,3,16,145,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,111,154,53,58,55,67,76,64,26,20,8,248,3,16,146,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,144,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,207,8,106,107,69,21,44,64,26,20,8,248,3,16,148,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,77,235,170,29,251,11,81,64,26,20,8,248,3,16,149,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,147,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,111,209,104,85,218,160,85,64,26,20,8,248,3,16,152,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,226,212,126,221,159,179,62,64,26,20,8,248,3,16,151,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,150,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,211,170,45,168,205,173,76,64,26,20,8,248,3,16,154,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,181,15,176,178,56,53,95,64,26,20,8,248,3,16,155,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,153,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,114,91,95,77,88,78,64,26,20,8,248,3,16,157,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,226,164,212,43,44,165,96,64,26,20,8,248,3,16,158,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,156,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,223,114,91,95,77,88,78,64,26,20,8,248,3,16,160,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,245,80,153,190,235,36,99,64,26,20,8,248,3,16,161,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,159,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,217,142,196,131,13,131,77,64,26,20,8,248,3,16,163,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,251,52,48,154,43,250,99,64,26,20,8,248,3,16,164,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,162,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,199,226,255,240,77,3,75,64,26,20,8,248,3,16,166,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,254,166,251,135,203,100,100,64,26,20,8,248,3,16,167,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,165,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,156,166,223,239,142,46,69,64,26,20,8,248,3,16,169,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,254,166,251,135,203,100,100,64,26,20,8,248,3,16,170,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,168,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,226,212,126,221,159,179,62,64,26,20,8,248,3,16,172,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,249,123,74,163,219,196,99,64,26,20,8,248,3,16,173,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,171,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,183,120,14,253,69,192,40,64,26,20,8,248,3,16,175,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,237,179,28,236,91,26,98,64,26,20,8,248,3,16,176,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,174,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,143,61,72,105,179,101,83,192,26,20,8,248,3,16,178,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,135,42,145,168,54,152,79,64,26,20,8,248,3,16,179,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,177,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,117,126,204,21,119,24,77,64,26,20,8,248,3,16,182,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,146,175,19,87,83,208,83,192,26,20,8,248,3,16,181,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,180,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,121,31,184,232,83,123,80,192,26,20,8,248,3,16,184,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,117,126,204,21,119,24,77,64,26,20,8,248,3,16,185,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,183,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,166,44,58,8,87,156,54,192,26,20,8,248,3,16,187,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,31,6,140,19,249,110,65,64,26,20,8,248,3,16,188,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,186,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,118,157,68,139,102,1,80,64,26,20,8,248,3,16,190,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,159,211,202,20,28,120,20,192,26,20,8,248,3,16,191,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,189,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,1,141,233,162,17,149,97,64,26,20,8,248,3,16,193,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,160,109,225,192,130,27,62,192,26,20,8,248,3,16,194,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,192,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,38,229,114,200,144,148,102,64,26,20,8,248,3,16,196,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,245,14,250,133,64,13,68,192,26,20,8,248,3,16,197,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,195,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,84,147,94,183,239,211,108,64,26,20,8,248,3,16,199,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,7,187,190,24,0,141,70,192,26,20,8,248,3,16,200,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,198,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,188,245,115,110,183,233,112,64,26,20,8,248,3,16,202,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,7,187,190,24,0,141,70,192,26,20,8,248,3,16,203,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,201,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,195,217,10,74,247,190,113,64,26,20,8,248,3,16,205,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,251,242,144,97,128,226,68,192,26,20,8,248,3,16,206,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,204,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,199,4,188,46,231,94,114,64,26,20,8,248,3,16,208,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,147,165,179,9,3,113,60,192,26,20,8,248,3,16,209,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,207,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,159,211,202,20,28,120,20,192,26,20,8,248,3,16,212,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,74,154,20,33,223,174,114,64,26,20,8,248,3,16,211,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,210,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,202,118,135,28,135,201,114,64,26,20,8,248,3,16,214,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,240,37,232,217,251,132,98,64,26,20,8,248,3,16,215,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,213,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,199,4,188,46,231,94,114,64,26,20,8,248,3,16,217,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,44,85,231,118,42,164,106,64,26,20,8,248,3,16,218,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,216,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,64,68,178,87,255,110,113,64,26,20,8,248,3,16,220,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,184,144,49,115,244,230,113,64,26,20,8,248,3,16,221,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,219,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,55,238,79,142,31,47,112,64,26,20,8,248,3,16,223,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,210,217,114,216,67,113,117,64,26,20,8,248,3,16,224,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,222,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,86,76,68,174,63,9,109,64,26,20,8,248,3,16,226,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,107,70,65,66,235,224,120,64,26,20,8,248,3,16,227,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,225,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,63,117,206,54,144,233,105,64,26,20,8,248,3,16,229,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,254,206,120,208,82,123,123,64,26,20,8,248,3,16,230,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,228,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,26,29,69,17,17,234,100,64,26,20,8,248,3,16,232,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,20,237,8,81,178,101,126,64,26,20,8,248,3,16,233,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,231,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,250,239,108,208,129,138,96,64,26,20,8,248,3,16,235,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,158,31,222,21,58,192,127,64,26,20,8,248,3,16,236,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,234,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,21,133,141,228,170,91,64,26,20,8,248,3,16,238,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,30,252,80,17,226,218,127,64,26,20,8,248,3,16,239,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,237,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,179,133,41,31,229,85,88,64,26,20,8,248,3,16,241,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,20,237,8,81,178,101,126,64,26,20,8,248,3,16,242,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,240,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,164,75,48,122,197,64,86,64,26,20,8,248,3,16,244,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,133,143,130,167,58,107,124,64,26,20,8,248,3,16,245,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,243,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,158,103,153,158,133,107,85,64,26,20,8,248,3,16,247,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,121,199,84,240,186,192,122,64,26,20,8,248,3,16,248,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,246,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,152,131,2,195,69,150,84,64,26,20,8,248,3,16,250,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,233,176,232,79,243,144,120,64,26,20,8,248,3,16,251,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,249,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,155,245,205,176,229,0,85,64,26,20,8,248,3,16,253,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,55,180,190,119,76,204,113,64,26,20,8,248,3,16,254,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,252,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,170,47,199,85,5,22,87,64,26,20,8,248,3,16,128,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,170,15,30,197,36,7,112,64,26,20,8,248,3,16,129,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,255,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,188,219,139,232,196,149,89,64,26,20,8,248,3,16,131,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,65,115,119,247,137,142,109,64,26,20,8,248,3,16,132,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,130,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,222,193,73,32,164,42,94,64,26,20,8,248,3,16,134,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,45,14,205,109,122,217,106,64,26,20,8,248,3,16,135,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,133,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,32,141,185,191,170,249,104,64,26,20,8,248,3,16,138,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,0,212,3,172,193,95,97,64,26,20,8,248,3,16,137,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,136,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,227,75,108,241,212,98,64,26,20,8,248,3,16,140,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,33,70,159,182,250,46,105,64,26,20,8,248,3,16,141,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,139,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,14,253,80,225,116,99,64,26,20,8,248,3,16,143,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,46,94,92,174,108,140,112,64,26,20,8,248,3,16,144,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,142,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,15,14,253,80,225,116,99,64,26,20,8,248,3,16,146,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,216,189,9,180,131,70,118,64,26,20,8,248,3,16,147,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,145,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,228,133,55,107,3,241,119,64,26,20,8,248,3,16,150,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,12,156,49,99,65,10,99,64,26,20,8,248,3,16,149,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,148,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,5,255,180,144,177,255,97,64,26,20,8,248,3,16,152,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,115,227,189,20,123,235,121,64,26,20,8,248,3,16,153,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,248,3,16,151,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,5,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,248,3,16,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,51,101,100,57,99,26,19,8,248,3,16,3,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,248,3,16,4,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,248,3,16,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,161,10,18,158,10,10,155,10,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,249,3,16,4,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,249,8,10,6,112,111,105,110,116,115,18,238,8,18,235,8,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,221,123,52,142,208,145,151,64,26,19,8,249,3,16,7,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,221,144,2,185,236,191,129,64,26,19,8,249,3,16,8,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,249,3,16,6,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,56,189,51,175,142,208,150,64,26,19,8,249,3,16,10,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,156,34,73,187,152,178,129,64,26,19,8,249,3,16,11,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,249,3,16,9,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,198,164,190,22,33,114,148,64,26,19,8,249,3,16,13,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,86,208,248,225,4,208,128,64,26,19,8,249,3,16,14,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,249,3,16,12,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,83,94,45,244,100,101,128,64,26,19,8,249,3,16,17,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,160,9,75,60,55,150,147,64,26,19,8,249,3,16,16,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,249,3,16,15,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,110,166,169,170,205,15,145,64,26,19,8,249,3,16,19,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,144,158,202,103,106,224,125,64,26,19,8,249,3,16,20,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,249,3,16,18,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,145,70,2,172,42,142,64,26,19,8,249,3,16,22,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,251,92,173,226,178,16,123,64,26,19,8,249,3,16,23,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,249,3,16,21,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,78,2,33,85,155,135,64,26,19,8,249,3,16,25,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,211,146,88,207,147,166,117,64,26,19,8,249,3,16,26,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,249,3,16,24,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,123,197,202,146,237,0,133,64,26,19,8,249,3,16,28,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,70,238,183,28,108,225,115,64,26,19,8,249,3,16,29,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,249,3,16,27,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,232,87,151,69,230,132,64,26,19,8,249,3,16,31,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,69,53,210,37,28,172,115,64,26,19,8,249,3,16,32,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,249,3,16,30,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,250,232,87,151,69,230,132,64,26,19,8,249,3,16,34,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,197,17,69,33,196,198,115,64,26,19,8,249,3,16,35,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,249,3,16,33,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,249,3,16,5,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,249,3,16,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,51,101,100,57,99,26,19,8,249,3,16,3,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,249,3,16,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,219,97,18,216,97,10,213,97,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,51,101,100,57,99,26,19,8,250,3,16,3,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,250,3,16,4,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,179,96,10,6,112,111,105,110,116,115,18,168,96,18,165,96,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,231,23,172,233,131,106,95,64,26,19,8,250,3,16,7,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,106,5,104,212,20,117,117,192,26,19,8,250,3,16,8,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,6,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,137,119,215,35,213,95,64,26,19,8,250,3,16,10,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,238,83,166,189,92,250,117,192,26,19,8,250,3,16,11,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,9,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,97,56,190,33,245,96,64,26,19,8,250,3,16,13,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,117,20,176,148,68,234,118,192,26,19,8,250,3,16,14,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,12,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,27,214,42,8,97,31,101,64,26,19,8,250,3,16,16,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,132,78,169,57,100,255,120,192,26,19,8,250,3,16,17,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,15,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,86,76,68,174,63,9,109,64,26,19,8,250,3,16,19,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,20,101,21,218,43,47,123,192,26,19,8,250,3,16,20,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,18,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,139,204,96,175,57,113,64,26,19,8,250,3,16,22,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,26,73,172,181,107,4,124,192,26,19,8,250,3,16,23,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,21,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,210,19,4,239,22,212,115,64,26,19,8,250,3,16,25,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,157,222,4,168,99,84,124,192,26,19,8,250,3,16,26,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,24,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,228,191,200,129,214,83,118,64,26,19,8,250,3,16,28,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,157,222,4,168,99,84,124,192,26,19,8,250,3,16,29,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,27,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,85,33,116,206,163,118,64,26,19,8,250,3,16,31,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,155,37,31,177,19,31,124,192,26,19,8,250,3,16,32,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,30,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,233,234,121,102,198,243,118,64,26,19,8,250,3,16,34,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,144,22,215,240,227,169,122,192,26,19,8,250,3,16,35,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,33,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,233,234,121,102,198,243,118,64,26,19,8,250,3,16,37,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,126,106,18,94,36,42,120,192,26,19,8,250,3,16,38,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,36,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,244,55,61,153,156,207,118,192,26,19,8,250,3,16,41,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,101,156,59,125,126,110,118,64,26,19,8,250,3,16,40,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,39,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,103,147,156,230,116,10,117,192,26,19,8,250,3,16,44,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,219,105,102,184,246,19,117,64,26,19,8,250,3,16,43,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,42,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,215,62,181,211,6,116,116,64,26,19,8,250,3,16,46,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,227,68,94,253,44,133,116,192,26,19,8,250,3,16,47,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,45,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,195,217,10,74,247,190,113,64,26,19,8,250,3,16,49,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,88,89,163,65,85,245,114,192,26,19,8,250,3,16,50,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,48,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,85,231,215,83,181,138,114,192,26,19,8,250,3,16,53,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,57,167,53,133,111,100,112,64,26,19,8,250,3,16,52,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,51,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,63,117,206,54,144,233,105,64,26,19,8,250,3,16,55,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,80,188,38,111,197,234,113,192,26,19,8,250,3,16,56,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,54,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,137,119,215,35,213,95,64,26,19,8,250,3,16,58,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,204,109,232,133,125,101,113,192,26,19,8,250,3,16,59,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,57,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,173,161,146,67,165,128,87,64,26,19,8,250,3,16,61,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,75,145,117,138,213,74,113,192,26,19,8,250,3,16,62,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,60,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,142,156,222,153,87,71,51,192,26,19,8,250,3,16,64,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,204,109,232,133,125,101,113,192,26,19,8,250,3,16,65,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,63,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,193,30,185,244,168,76,74,192,26,19,8,250,3,16,67,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,206,38,206,124,205,154,113,192,26,19,8,250,3,16,68,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,66,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,189,235,51,88,18,165,89,192,26,19,8,250,3,16,70,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,210,81,127,97,189,58,114,192,26,19,8,250,3,16,71,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,69,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,2,149,189,90,184,156,97,192,26,19,8,250,3,16,73,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,216,53,22,61,253,15,115,192,26,19,8,250,3,16,74,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,72,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,209,221,91,119,113,103,192,26,19,8,250,3,16,76,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,98,104,235,1,133,106,116,192,26,19,8,250,3,16,77,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,75,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,32,9,176,164,247,198,101,192,26,19,8,250,3,16,79,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,224,210,146,15,141,26,116,192,26,19,8,250,3,16,80,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,78,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,221,96,199,33,237,175,115,192,26,19,8,250,3,16,83,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,25,108,51,210,103,188,100,192,26,19,8,250,3,16,82,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,81,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,247,133,117,154,136,39,96,192,26,19,8,250,3,16,85,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,86,160,189,74,5,192,114,192,26,19,8,250,3,16,86,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,84,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,176,35,6,161,146,250,87,192,26,19,8,250,3,16,88,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,210,81,127,97,189,58,114,192,26,19,8,250,3,16,89,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,87,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,143,61,72,105,179,101,83,192,26,19,8,250,3,16,91,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,209,152,153,106,109,5,114,192,26,19,8,250,3,16,92,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,90,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,215,76,241,228,85,70,61,192,26,19,8,250,3,16,94,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,207,223,179,115,29,208,113,192,26,19,8,250,3,16,95,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,93,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,216,151,157,178,144,34,192,26,19,8,250,3,16,97,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,207,223,179,115,29,208,113,192,26,19,8,250,3,16,98,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,96,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,120,14,253,69,192,40,64,26,19,8,250,3,16,100,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,209,152,153,106,109,5,114,192,26,19,8,250,3,16,101,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,99,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,222,177,56,15,132,67,64,26,19,8,250,3,16,103,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,85,231,215,83,181,138,114,192,26,19,8,250,3,16,104,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,102,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,215,61,48,134,22,82,64,26,19,8,250,3,16,106,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,219,167,225,42,157,122,115,192,26,19,8,250,3,16,107,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,105,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,219,79,126,50,4,192,93,64,26,19,8,250,3,16,109,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,232,111,15,226,28,37,117,192,26,19,8,250,3,16,110,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,108,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,23,215,224,199,203,153,123,192,26,19,8,250,3,16,113,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,101,134,61,83,95,30,111,64,26,19,8,250,3,16,112,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,111,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,67,182,125,69,159,217,113,64,26,19,8,250,3,16,115,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,34,230,40,136,251,14,125,192,26,19,8,250,3,16,116,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,114,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,78,197,197,5,207,78,115,64,26,19,8,250,3,16,118,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,39,17,218,108,235,174,125,192,26,19,8,250,3,16,119,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,117,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,218,176,128,193,166,222,116,64,26,19,8,250,3,16,121,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,40,202,191,99,59,228,125,192,26,19,8,250,3,16,122,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,120,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,231,49,148,111,118,190,118,64,26,19,8,250,3,16,124,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,40,202,191,99,59,228,125,192,26,19,8,250,3,16,125,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,123,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,110,18,108,10,106,10,40,10,1,120,18,35,26,33,8,4,18,8,106,199,236,97,110,14,119,64,26,19,8,250,3,16,127,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,39,17,218,108,235,174,125,192,26,20,8,250,3,16,128,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,126,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,164,123,129,122,243,94,125,192,26,20,8,250,3,16,131,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,234,163,95,93,22,41,119,64,26,20,8,250,3,16,130,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,129,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,107,128,210,88,190,67,119,64,26,20,8,250,3,16,133,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,155,37,31,177,19,31,124,192,26,20,8,250,3,16,134,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,132,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,230,120,174,120,38,137,118,64,26,20,8,250,3,16,136,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,143,93,241,249,147,116,122,192,26,20,8,250,3,16,137,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,135,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,89,212,13,198,254,195,116,64,26,20,8,250,3,16,139,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,126,106,18,94,36,42,120,192,26,20,8,250,3,16,140,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,138,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,47,109,19,215,254,114,64,26,20,8,250,3,16,142,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,242,126,87,162,76,154,118,192,26,20,8,250,3,16,143,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,141,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,177,238,55,79,190,111,64,26,20,8,250,3,16,145,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,227,68,94,253,44,133,116,192,26,20,8,250,3,16,146,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,144,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,49,244,186,136,192,9,104,64,26,20,8,250,3,16,148,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,85,231,215,83,181,138,114,192,26,20,8,250,3,16,149,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,147,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,251,168,82,199,209,191,96,64,26,20,8,250,3,16,151,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,75,145,117,138,213,74,113,192,26,20,8,250,3,16,152,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,150,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,188,219,139,232,196,149,89,64,26,20,8,250,3,16,154,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,201,251,28,152,221,250,112,192,26,20,8,250,3,16,155,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,153,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,144,247,99,143,130,29,64,26,20,8,250,3,16,157,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,197,208,107,179,237,90,112,192,26,20,8,250,3,16,158,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,156,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,224,146,171,62,232,118,78,192,26,20,8,250,3,16,160,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,197,208,107,179,237,90,112,192,26,20,8,250,3,16,161,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,159,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,167,205,163,215,178,186,86,192,26,20,8,250,3,16,163,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,200,66,55,161,141,197,112,192,26,20,8,250,3,16,164,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,162,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,176,35,6,161,146,250,87,192,26,20,8,250,3,16,166,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,201,251,28,152,221,250,112,192,26,20,8,250,3,16,167,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,165,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,179,149,209,142,50,101,88,192,26,20,8,250,3,16,169,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,68,244,248,183,69,64,112,192,26,20,8,250,3,16,170,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,168,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,198,65,150,33,242,228,90,192,26,20,8,250,3,16,172,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,131,189,64,139,155,224,111,192,26,20,8,250,3,16,173,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,171,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,229,181,136,107,49,15,95,192,26,20,8,250,3,16,175,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,131,189,64,139,155,224,111,192,26,20,8,250,3,16,176,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,174,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,250,247,64,136,40,146,96,192,26,20,8,250,3,16,178,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,68,244,248,183,69,64,112,192,26,20,8,250,3,16,179,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,177,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,78,3,65,120,117,181,113,192,26,20,8,250,3,16,182,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,11,235,31,36,152,220,98,192,26,20,8,250,3,16,181,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,180,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,94,61,58,29,149,202,115,192,26,20,8,250,3,16,185,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,25,108,51,210,103,188,100,192,26,20,8,250,3,16,184,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,183,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,31,80,202,173,167,145,101,192,26,20,8,250,3,16,187,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,109,119,51,194,180,223,117,192,26,20,8,250,3,16,188,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,186,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,32,9,176,164,247,198,101,192,26,20,8,250,3,16,190,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,131,149,195,66,20,202,120,192,26,20,8,250,3,16,191,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,189,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,23,179,77,219,23,135,100,192,26,20,8,250,3,16,193,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,16,58,100,245,59,143,122,192,26,20,8,250,3,16,194,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,192,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,248,62,91,145,216,92,96,192,26,20,8,250,3,16,196,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,29,187,119,163,11,111,124,192,26,20,8,250,3,16,197,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,195,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,163,194,155,131,163,41,125,192,26,20,8,250,3,16,200,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,198,65,150,33,242,228,90,192,26,20,8,250,3,16,199,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,198,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,152,147,170,50,147,165,84,192,26,20,8,250,3,16,202,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,166,52,103,113,67,148,125,192,26,20,8,250,3,16,203,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,201,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,136,216,151,157,178,144,34,192,26,20,8,250,3,16,205,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,172,24,254,76,131,105,126,192,26,20,8,250,3,16,206,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,204,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,139,187,212,11,198,235,82,64,26,20,8,250,3,16,208,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,172,24,254,76,131,105,126,192,26,20,8,250,3,16,209,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,207,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,222,193,73,32,164,42,94,64,26,20,8,250,3,16,211,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,170,95,24,86,51,52,126,192,26,20,8,250,3,16,212,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,210,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,41,87,62,182,48,255,102,64,26,20,8,250,3,16,214,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,36,159,14,127,75,68,125,192,26,20,8,250,3,16,215,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,213,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,106,177,238,55,79,190,111,64,26,20,8,250,3,16,217,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,154,108,57,186,195,233,123,192,26,20,8,250,3,16,218,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,216,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,17,243,73,236,139,196,122,192,26,20,8,250,3,16,221,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,75,83,250,23,47,228,114,64,26,20,8,250,3,16,220,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,219,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,213,133,207,220,182,62,116,64,26,20,8,250,3,16,223,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,11,15,179,16,76,239,121,192,26,20,8,250,3,16,224,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,222,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,218,176,128,193,166,222,116,64,26,20,8,250,3,16,226,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,5,43,28,53,12,26,121,192,26,20,8,250,3,16,227,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,225,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,225,77,253,147,54,233,117,64,26,20,8,250,3,16,229,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,229,253,67,244,124,186,116,192,26,20,8,250,3,16,230,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,228,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,219,105,102,184,246,19,117,64,26,20,8,250,3,16,232,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,223,25,173,24,61,229,115,192,26,20,8,250,3,16,233,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,231,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,218,238,251,51,77,69,115,192,26,20,8,250,3,16,236,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,211,204,233,229,102,9,116,64,26,20,8,250,3,16,235,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,234,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,66,253,151,78,79,164,113,64,26,20,8,250,3,16,238,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,85,231,215,83,181,138,114,192,26,20,8,250,3,16,239,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,237,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,83,46,242,92,101,85,114,192,26,20,8,250,3,16,242,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,103,63,35,74,175,83,111,64,26,20,8,250,3,16,241,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,240,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,67,160,127,27,128,137,106,64,26,20,8,250,3,16,244,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,212,10,101,88,13,112,114,192,26,20,8,250,3,16,245,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,243,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,49,244,186,136,192,9,104,64,26,20,8,250,3,16,247,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,213,195,74,79,93,165,114,192,26,20,8,250,3,16,248,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,246,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,12,156,49,99,65,10,99,64,26,20,8,250,3,16,250,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,221,96,199,33,237,175,115,192,26,20,8,250,3,16,251,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,249,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,204,21,133,141,228,170,91,64,26,20,8,250,3,16,253,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,233,40,245,216,108,90,117,192,26,20,8,250,3,16,254,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,252,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,158,103,153,158,133,107,85,64,26,20,8,250,3,16,128,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,242,126,87,162,76,154,118,192,26,20,8,250,3,16,129,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,255,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,121,63,97,121,52,138,119,192,26,20,8,250,3,16,132,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,136,73,9,30,38,129,82,64,26,20,8,250,3,16,131,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,130,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,5,43,28,53,12,26,121,192,26,20,8,250,3,16,135,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,133,215,61,48,134,22,82,64,26,20,8,250,3,16,134,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,133,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,164,75,48,122,197,64,86,64,26,20,8,250,3,16,137,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,149,65,136,213,211,73,123,192,26,20,8,250,3,16,138,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,136,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,210,249,27,105,36,128,92,64,26,20,8,250,3,16,140,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,34,230,40,136,251,14,125,192,26,20,8,250,3,16,141,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,139,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,11,227,75,108,241,212,98,64,26,20,8,250,3,16,143,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,48,103,60,54,203,238,126,192,26,20,8,250,3,16,144,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,142,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,54,31,108,109,176,169,104,64,26,20,8,250,3,16,146,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,222,133,110,116,249,89,128,192,26,20,8,250,3,16,147,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,145,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,96,91,140,110,111,126,110,64,26,20,8,250,3,16,149,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,100,141,146,84,145,20,129,192,26,20,8,250,3,16,150,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,148,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,69,111,99,60,239,14,114,64,26,20,8,250,3,16,152,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,167,109,23,64,133,140,129,192,26,20,8,250,3,16,153,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,151,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,210,19,4,239,22,212,115,64,26,20,8,250,3,16,155,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,104,184,67,57,129,180,129,192,26,20,8,250,3,16,156,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,154,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,87,27,40,207,174,142,116,64,26,20,8,250,3,16,158,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,40,74,138,59,45,167,129,192,26,20,8,250,3,16,159,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,157,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,89,212,13,198,254,195,116,64,26,20,8,250,3,16,161,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,37,216,190,77,141,60,129,192,26,20,8,250,3,16,162,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,160,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,89,212,13,198,254,195,116,64,26,20,8,250,3,16,164,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,173,209,227,67,211,158,126,192,26,20,8,250,3,16,165,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,163,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,213,133,207,220,182,62,116,64,26,20,8,250,3,16,167,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,152,179,83,195,115,180,123,192,26,20,8,250,3,16,168,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,166,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,137,121,90,30,84,159,121,192,26,20,8,250,3,16,171,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,81,55,145,243,110,185,115,64,26,20,8,250,3,16,170,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,169,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,118,205,149,139,148,31,119,192,26,20,8,250,3,16,174,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,75,83,250,23,47,228,114,64,26,20,8,250,3,16,173,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,172,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,61,210,230,105,95,4,113,64,26,20,8,250,3,16,176,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,221,96,199,33,237,175,115,192,26,20,8,250,3,16,177,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,175,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,43,16,36,173,128,52,103,64,26,20,8,250,3,16,179,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,73,71,39,229,188,246,103,192,26,20,8,250,3,16,180,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,178,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,37,44,141,209,64,95,102,64,26,20,8,250,3,16,182,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,67,99,144,9,125,33,103,192,26,20,8,250,3,16,183,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,181,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,40,158,88,191,224,201,102,64,26,20,8,250,3,16,185,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,76,185,242,210,92,97,104,192,26,20,8,250,3,16,186,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,184,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,75,61,252,237,15,148,107,64,26,20,8,250,3,16,188,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,112,17,124,248,219,96,109,192,26,20,8,250,3,16,189,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,187,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,216,53,22,61,253,15,115,192,26,20,8,250,3,16,192,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,205,232,82,10,39,52,115,64,26,20,8,250,3,16,191,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,190,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,253,79,36,240,213,168,121,64,26,20,8,250,3,16,194,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,252,212,185,107,44,218,119,192,26,20,8,250,3,16,195,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,193,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,121,18,36,26,34,8,4,18,8,137,121,90,30,84,159,121,192,26,20,8,250,3,16,198,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,120,18,36,26,34,8,4,18,8,139,173,170,153,77,163,123,64,26,20,8,250,3,16,197,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,196,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,18,110,180,112,53,147,124,64,26,20,8,250,3,16,200,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,140,235,37,12,244,9,122,192,26,20,8,250,3,16,201,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,199,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,112,18,110,10,108,10,41,10,1,120,18,36,26,34,8,4,18,8,29,125,252,48,101,8,126,64,26,20,8,250,3,16,203,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,41,10,1,121,18,36,26,34,8,4,18,8,14,129,126,254,235,89,122,192,26,20,8,250,3,16,204,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,20,8,250,3,16,202,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,5,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,250,3,16,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,250,3,16,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,153,17,18,150,17,10,147,17,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,251,3,16,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,51,101,100,57,99,26,19,8,251,3,16,3,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,251,3,16,4,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,241,15,10,6,112,111,105,110,116,115,18,230,15,18,227,15,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,29,125,252,48,101,8,126,64,26,19,8,251,3,16,7,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,14,129,126,254,235,89,122,192,26,19,8,251,3,16,8,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,6,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,29,125,252,48,101,8,126,64,26,19,8,251,3,16,10,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,250,27,212,116,220,164,119,192,26,19,8,251,3,16,11,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,9,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,161,203,58,26,173,141,126,64,26,19,8,251,3,16,13,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,98,104,235,1,133,106,116,192,26,19,8,251,3,16,14,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,12,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,35,97,147,12,165,221,126,64,26,19,8,251,3,16,16,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,218,238,251,51,77,69,115,192,26,19,8,251,3,16,17,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,15,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,219,116,101,77,6,188,128,64,26,19,8,251,3,16,19,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,94,61,58,29,149,202,115,192,26,19,8,251,3,16,20,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,18,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,96,32,9,222,75,130,64,26,19,8,251,3,16,22,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,229,253,67,244,124,186,116,192,26,19,8,251,3,16,23,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,21,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,175,107,86,217,193,99,131,64,26,19,8,251,3,16,25,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,235,225,218,207,188,143,117,192,26,19,8,251,3,16,26,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,24,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,90,35,133,229,80,133,64,26,19,8,251,3,16,28,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,121,63,97,121,52,138,119,192,26,19,8,251,3,16,29,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,27,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,66,244,141,103,41,254,133,64,26,19,8,251,3,16,31,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,253,141,159,98,124,15,120,192,26,19,8,251,3,16,32,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,30,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,11,220,54,51,181,48,135,64,26,19,8,251,3,16,34,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,107,80,28,122,120,192,26,19,8,251,3,16,35,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,33,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,208,81,20,17,161,248,135,64,26,19,8,251,3,16,37,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,107,80,28,122,120,192,26,19,8,251,3,16,38,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,36,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,81,46,135,12,73,19,136,64,26,19,8,251,3,16,40,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,255,70,133,89,204,68,120,192,26,19,8,251,3,16,41,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,39,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,210,10,250,7,241,45,136,64,26,19,8,251,3,16,43,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,246,240,34,144,236,4,119,192,26,19,8,251,3,16,44,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,42,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,146,156,64,10,157,32,136,64,26,19,8,251,3,16,46,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,239,12,140,180,172,47,118,192,26,19,8,251,3,16,47,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,45,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,144,227,90,19,77,235,135,64,26,19,8,251,3,16,49,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,233,40,245,216,108,90,117,192,26,19,8,251,3,16,50,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,48,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,14,78,2,33,85,155,135,64,26,19,8,251,3,16,52,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,98,104,235,1,133,106,116,192,26,19,8,251,3,16,53,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,51,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,139,184,169,46,93,75,135,64,26,19,8,251,3,16,55,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,95,246,31,20,229,255,115,192,26,19,8,251,3,16,56,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,54,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,199,251,177,71,193,184,134,64,26,19,8,251,3,16,58,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,223,25,173,24,61,229,115,192,26,19,8,251,3,16,59,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,57,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,5,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,251,3,16,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,180,35,18,177,35,10,174,35,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,252,3,16,4,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,140,34,10,6,112,111,105,110,116,115,18,129,34,18,254,33,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,101,167,58,18,142,22,130,64,26,19,8,252,3,16,7,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,34,230,40,136,251,14,125,192,26,19,8,252,3,16,8,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,6,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,167,206,217,6,50,89,130,64,26,19,8,252,3,16,10,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,163,194,155,131,163,41,125,192,26,19,8,252,3,16,11,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,9,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,72,216,36,67,105,211,134,64,26,19,8,252,3,16,13,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,31,244,39,114,77,103,128,192,26,19,8,252,3,16,14,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,12,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,227,253,216,163,96,120,138,64,26,19,8,252,3,16,16,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,40,74,138,59,45,167,129,192,26,19,8,252,3,16,17,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,15,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,112,162,121,86,136,61,140,64,26,19,8,252,3,16,19,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,236,6,130,34,201,57,130,192,26,19,8,252,3,16,20,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,18,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,145,70,2,172,42,142,64,26,19,8,252,3,16,22,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,112,85,192,11,17,191,130,192,26,19,8,252,3,16,23,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,21,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,72,196,27,199,51,133,143,64,26,19,8,252,3,16,25,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,49,160,236,4,13,231,130,192,26,19,8,252,3,16,26,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,24,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,102,9,45,216,61,5,144,64,26,19,8,252,3,16,28,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,49,160,236,4,13,231,130,192,26,19,8,252,3,16,29,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,27,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,137,50,213,196,135,118,144,64,26,19,8,252,3,16,31,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,229,105,5,80,57,47,129,192,26,19,8,252,3,16,32,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,30,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,42,198,36,191,217,151,144,64,26,19,8,252,3,16,34,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,160,208,154,109,245,129,128,192,26,19,8,252,3,16,35,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,33,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,107,52,222,188,45,165,144,64,26,19,8,252,3,16,37,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,183,39,70,13,179,222,127,192,26,19,8,252,3,16,38,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,36,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,74,125,1,190,131,158,144,64,26,19,8,252,3,16,40,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,155,37,31,177,19,31,124,192,26,19,8,252,3,16,41,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,39,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,202,160,142,194,219,131,144,64,26,19,8,252,3,16,43,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,147,136,162,222,131,20,123,192,26,19,8,252,3,16,44,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,42,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,103,194,18,207,141,58,144,64,26,19,8,252,3,16,46,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,140,235,37,12,244,9,122,192,26,19,8,252,3,16,47,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,45,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,166,119,230,213,145,18,144,64,26,19,8,252,3,16,49,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,9,86,205,25,252,185,121,192,26,19,8,252,3,16,50,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,48,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,70,11,54,208,227,79,143,64,26,19,8,252,3,16,52,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,5,43,28,53,12,26,121,192,26,19,8,252,3,16,53,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,51,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,187,31,123,20,12,192,141,64,26,19,8,252,3,16,55,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,0,0,107,80,28,122,120,192,26,19,8,252,3,16,56,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,54,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,37,37,120,152,4,187,138,64,26,19,8,252,3,16,58,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,128,35,248,84,116,95,120,192,26,19,8,252,3,16,59,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,57,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,156,171,136,202,204,149,137,64,26,19,8,252,3,16,61,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,129,220,221,75,196,148,120,192,26,19,8,252,3,16,62,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,60,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,149,14,12,248,60,139,136,64,26,19,8,252,3,16,64,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,5,43,28,53,12,26,121,192,26,19,8,252,3,16,65,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,63,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,143,42,117,28,253,181,135,64,26,19,8,252,3,16,67,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,9,86,205,25,252,185,121,192,26,19,8,252,3,16,68,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,66,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,69,102,89,85,201,104,134,64,26,19,8,252,3,16,70,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,19,172,47,227,219,249,122,192,26,19,8,252,3,16,71,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,69,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,187,51,132,144,65,14,133,64,26,19,8,252,3,16,73,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,158,151,234,158,179,137,124,192,26,19,8,252,3,16,74,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,72,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,123,197,202,146,237,0,133,64,26,19,8,252,3,16,76,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,160,80,208,149,3,191,124,192,26,19,8,252,3,16,77,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,75,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,175,138,201,58,35,212,126,192,26,19,8,252,3,16,80,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,187,51,132,144,65,14,133,64,26,19,8,252,3,16,79,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,78,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,190,165,79,126,225,120,133,64,26,19,8,252,3,16,82,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,29,59,66,123,253,49,128,192,26,19,8,252,3,16,83,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,81,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,66,244,141,103,41,254,133,64,26,19,8,252,3,16,85,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,161,137,128,100,69,183,128,192,26,19,8,252,3,16,86,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,84,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,70,222,64,189,224,134,64,26,19,8,252,3,16,88,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,166,180,49,73,53,87,129,192,26,19,8,252,3,16,89,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,87,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,136,70,222,64,189,224,134,64,26,19,8,252,3,16,91,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,230,34,235,70,137,100,129,192,26,19,8,252,3,16,92,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,90,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,135,141,248,73,109,171,134,64,26,19,8,252,3,16,94,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,230,34,235,70,137,100,129,192,26,19,8,252,3,16,95,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,93,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,212,18,83,29,118,134,64,26,19,8,252,3,16,97,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,103,255,93,66,49,127,129,192,26,19,8,252,3,16,98,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,96,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,124,126,176,137,61,54,133,64,26,19,8,252,3,16,100,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,103,255,93,66,49,127,129,192,26,19,8,252,3,16,101,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,99,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,247,118,140,169,165,123,132,64,26,19,8,252,3,16,103,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,37,216,190,77,141,60,129,192,26,19,8,252,3,16,104,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,102,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,178,221,33,199,97,206,131,64,26,19,8,252,3,16,106,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,98,212,172,93,65,223,128,192,26,19,8,252,3,16,107,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,105,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,234,174,94,242,37,209,130,64,26,19,8,252,3,16,109,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,173,209,227,67,211,158,126,192,26,19,8,252,3,16,110,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,108,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,25,6,0,46,129,130,64,26,19,8,252,3,16,112,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,34,230,40,136,251,14,125,192,26,19,8,252,3,16,113,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,111,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,25,6,0,46,129,130,64,26,19,8,252,3,16,115,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,160,80,208,149,3,191,124,192,26,19,8,252,3,16,116,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,114,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,104,25,6,0,46,129,130,64,26,19,8,252,3,16,118,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,161,9,182,140,83,244,124,192,26,19,8,252,3,16,119,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,117,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,167,206,217,6,50,89,130,64,26,19,8,252,3,16,121,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,164,123,129,122,243,94,125,192,26,19,8,252,3,16,122,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,120,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,5,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,252,3,16,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,51,101,100,57,99,26,19,8,252,3,16,3,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,252,3,16,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,178,9,18,175,9,10,172,9,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,253,3,16,4,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,138,8,10,6,112,111,105,110,116,115,18,255,7,18,252,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,188,80,59,221,179,63,130,64,26,19,8,253,3,16,7,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,173,206,49,18,165,29,120,192,26,19,8,253,3,16,8,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,253,3,16,6,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,91,159,3,104,17,68,130,64,26,19,8,253,3,16,10,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,234,221,209,176,164,87,118,192,26,19,8,253,3,16,11,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,253,3,16,9,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,246,98,14,73,91,107,130,64,26,19,8,253,3,16,13,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,88,233,201,103,36,3,117,192,26,19,8,253,3,16,14,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,253,3,16,12,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,145,38,25,42,165,146,130,64,26,19,8,253,3,16,16,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,174,61,14,206,65,93,116,192,26,19,8,253,3,16,17,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,253,3,16,15,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,232,193,213,75,32,212,130,64,26,19,8,253,3,16,19,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,255,6,149,138,75,218,115,192,26,19,8,253,3,16,20,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,253,3,16,18,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,25,190,45,100,160,69,131,64,26,19,8,253,3,16,22,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,9,29,16,222,114,148,115,192,26,19,8,253,3,16,23,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,253,3,16,21,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,59,25,77,127,229,31,132,64,26,19,8,253,3,16,25,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,134,87,49,9,233,165,115,192,26,19,8,253,3,16,26,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,253,3,16,24,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,246,240,25,55,36,32,116,192,26,19,8,253,3,16,29,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,99,255,41,68,62,215,132,64,26,19,8,253,3,16,28,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,253,3,16,27,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,27,76,30,219,91,20,133,64,26,19,8,253,3,16,31,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,164,39,147,122,26,163,116,192,26,19,8,253,3,16,32,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,253,3,16,30,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,253,3,16,5,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,253,3,16,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,51,101,100,57,99,26,19,8,253,3,16,3,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,253,3,16,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,195,8,18,192,8,10,189,8,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,51,101,100,57,99,26,19,8,254,3,16,3,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,254,3,16,4,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,155,7,10,6,112,111,105,110,116,115,18,144,7,18,141,7,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,185,139,156,3,249,70,121,64,26,19,8,254,3,16,7,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,44,62,105,64,30,57,107,192,26,19,8,254,3,16,8,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,254,3,16,6,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,7,186,14,13,234,122,64,26,19,8,254,3,16,10,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,201,214,220,83,129,22,110,192,26,19,8,254,3,16,11,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,254,3,16,9,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,36,16,23,92,36,124,64,26,19,8,254,3,16,13,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,15,141,27,138,11,203,111,192,26,19,8,254,3,16,14,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,254,3,16,12,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,79,156,133,58,240,56,126,64,26,19,8,254,3,16,16,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,206,97,154,253,148,243,109,192,26,19,8,254,3,16,17,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,254,3,16,15,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,160,98,15,24,109,144,107,192,26,19,8,254,3,16,20,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,138,13,107,9,214,230,128,64,26,19,8,254,3,16,19,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,254,3,16,18,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,220,2,211,250,207,138,109,192,26,19,8,254,3,16,23,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,173,104,138,36,27,193,129,64,26,19,8,254,3,16,22,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,254,3,16,21,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,127,65,155,62,180,5,132,64,26,19,8,254,3,16,25,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,107,132,156,202,15,183,112,192,26,19,8,254,3,16,26,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,254,3,16,24,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,210,152,18,114,121,81,133,64,26,19,8,254,3,16,28,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,59,136,68,178,143,69,112,192,26,19,8,254,3,16,29,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,254,3,16,27,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,254,3,16,5,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,254,3,16,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,254,3,16,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,169,3,18,166,3,10,163,3,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,51,101,100,57,99,26,19,8,255,3,16,3,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,255,3,16,4,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,129,2,10,6,112,111,105,110,116,115,18,246,1,18,243,1,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,225,113,121,200,81,254,121,64,26,19,8,255,3,16,7,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,184,25,195,104,207,225,106,192,26,19,8,255,3,16,8,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,255,3,16,6,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,253,234,152,37,199,86,128,64,26,19,8,255,3,16,10,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,25,18,115,153,207,196,107,192,26,19,8,255,3,16,11,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,255,3,16,9,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,255,3,16,5,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,255,3,16,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,255,3,16,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,152,4,18,149,4,10,146,4,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,128,4,16,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,51,101,100,57,99,26,19,8,128,4,16,3,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,128,4,16,4,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,240,2,10,6,112,111,105,110,116,115,18,229,2,18,226,2,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,183,142,207,208,160,56,123,64,26,19,8,128,4,16,7,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,39,179,171,150,10,92,107,192,26,19,8,128,4,16,8,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,128,4,16,6,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,3,205,152,227,150,216,122,64,26,19,8,128,4,16,10,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,207,208,118,185,49,51,106,192,26,19,8,128,4,16,11,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,128,4,16,9,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,33,157,250,84,200,213,123,64,26,19,8,128,4,16,13,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,67,245,28,145,128,138,106,192,26,19,8,128,4,16,14,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,128,4,16,12,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,128,4,16,5,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,128,4,16,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,135,5,18,132,5,10,129,5,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,129,4,16,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,51,101,100,57,99,26,19,8,129,4,16,3,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,129,4,16,4,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,223,3,10,6,112,111,105,110,116,115,18,212,3,18,209,3,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,119,130,98,255,72,240,126,64,26,19,8,129,4,16,7,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,137,171,91,199,10,63,108,192,26,19,8,129,4,16,8,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,129,4,16,6,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,128,176,119,250,80,69,128,64,26,19,8,129,4,16,10,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,20,135,181,239,187,231,107,192,26,19,8,129,4,16,11,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,129,4,16,9,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,128,176,119,250,80,69,128,64,26,19,8,129,4,16,13,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,30,157,48,67,227,161,107,192,26,19,8,129,4,16,14,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,129,4,16,12,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,37,185,219,66,63,115,127,64,26,19,8,129,4,16,16,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,72,128,218,58,148,103,106,192,26,19,8,129,4,16,17,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,129,4,16,15,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,129,4,16,5,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,129,4,16,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,221,13,18,218,13,10,215,13,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,130,4,16,4,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,181,12,10,6,112,111,105,110,116,115,18,170,12,18,167,12,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,41,37,133,49,52,193,121,64,26,19,8,130,4,16,7,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,72,128,218,58,148,103,106,192,26,19,8,130,4,16,8,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,6,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,229,252,54,114,101,219,121,64,26,19,8,130,4,16,10,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,25,18,115,153,207,196,107,192,26,19,8,130,4,16,11,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,9,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,17,110,209,224,209,111,122,64,26,19,8,130,4,16,13,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,211,236,87,167,168,208,109,192,26,19,8,130,4,16,14,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,12,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,192,164,74,36,200,242,122,64,26,19,8,130,4,16,16,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,169,9,174,175,247,10,111,192,26,19,8,130,4,16,17,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,15,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,227,255,105,63,13,205,123,64,26,19,8,130,4,16,19,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,10,2,94,224,247,237,111,192,26,19,8,130,4,16,20,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,18,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,5,91,137,90,82,167,124,64,26,19,8,130,4,16,22,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,131,59,80,27,114,8,112,192,26,19,8,130,4,16,23,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,21,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,93,61,190,55,43,208,125,64,26,19,8,130,4,16,25,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,38,68,207,218,109,28,111,192,26,19,8,130,4,16,26,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,24,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,254,210,254,125,230,187,126,64,26,19,8,130,4,16,28,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,230,24,78,78,247,68,109,192,26,19,8,130,4,16,29,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,27,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,240,49,198,128,171,36,127,64,26,19,8,130,4,16,31,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,113,244,167,118,168,237,108,192,26,19,8,130,4,16,32,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,30,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,133,59,53,164,100,34,128,64,26,19,8,130,4,16,34,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,2,91,191,72,109,115,108,192,26,19,8,130,4,16,35,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,33,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,148,35,230,92,253,160,128,64,26,19,8,130,4,16,37,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,2,91,191,72,109,115,108,192,26,19,8,130,4,16,38,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,36,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,90,88,139,172,179,92,129,64,26,19,8,130,4,16,40,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,215,119,21,81,188,173,109,192,26,19,8,130,4,16,41,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,39,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,189,77,35,135,25,52,112,192,26,19,8,130,4,16,44,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,231,122,93,144,194,236,129,64,26,19,8,130,4,16,43,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,42,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,53,0,159,94,22,116,130,64,26,19,8,130,4,16,46,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,107,132,156,202,15,183,112,192,26,19,8,130,4,16,47,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,45,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,5,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,130,4,16,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,51,101,100,57,99,26,19,8,130,4,16,3,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,130,4,16,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,128,25,18,253,24,10,250,24,10,43,10,5,99,111,108,111,114,18,34,26,32,8,5,18,7,35,50,51,101,100,57,99,26,19,8,131,4,16,3,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,50,10,11,115,116,114,111,107,101,87,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,0,8,64,26,19,8,131,4,16,4,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,216,23,10,6,112,111,105,110,116,115,18,205,23,18,202,23,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,149,177,214,211,184,111,130,64,26,19,8,131,4,16,7,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,107,132,156,202,15,183,112,192,26,19,8,131,4,16,8,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,6,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,87,91,190,121,91,78,131,64,26,19,8,131,4,16,10,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,161,11,178,140,163,5,113,192,26,19,8,131,4,16,11,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,9,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,157,17,253,175,229,2,133,64,26,19,8,131,4,16,13,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,214,146,199,78,55,84,113,192,26,19,8,131,4,16,14,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,12,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,129,207,139,181,111,212,133,64,26,19,8,131,4,16,16,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,214,146,199,78,55,84,113,192,26,19,8,131,4,16,17,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,15,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,158,88,117,107,67,234,133,64,26,19,8,131,4,16,19,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,26,187,21,14,6,58,113,192,26,19,8,131,4,16,20,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,18,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,72,4,49,5,38,144,134,64,26,19,8,131,4,16,22,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,26,187,21,14,6,58,113,192,26,19,8,131,4,16,23,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,21,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,246,58,170,72,28,19,135,64,26,19,8,131,4,16,25,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,44,231,11,181,84,174,112,192,26,19,8,131,4,16,26,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,24,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,223,131,246,247,185,193,135,64,26,19,8,131,4,16,28,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,179,55,168,51,242,121,112,192,26,19,8,131,4,16,29,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,27,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,213,109,123,164,146,7,136,64,26,19,8,131,4,16,31,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,233,190,189,245,133,200,112,192,26,19,8,131,4,16,32,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,30,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,15,128,78,16,58,51,136,64,26,19,8,131,4,16,34,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,21,48,88,100,242,92,113,192,26,19,8,131,4,16,35,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,33,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,87,0,81,107,77,136,64,26,19,8,131,4,16,37,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,254,120,164,19,144,11,114,192,26,19,8,131,4,16,38,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,36,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,204,87,0,81,107,77,136,64,26,19,8,131,4,16,40,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,28,73,6,133,193,8,115,192,26,19,8,131,4,16,41,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,39,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,160,230,101,226,254,184,135,64,26,19,8,131,4,16,43,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,125,65,182,181,193,235,115,192,26,19,8,131,4,16,44,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,42,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,121,18,35,26,33,8,4,18,8,183,83,137,33,105,23,116,192,26,19,8,131,4,16,47,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,120,18,35,26,33,8,4,18,8,72,75,169,192,131,119,135,64,26,19,8,131,4,16,46,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,45,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,82,97,36,20,171,49,135,64,26,19,8,131,4,16,49,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,58,25,104,246,242,5,116,192,26,19,8,131,4,16,50,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,48,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,178,18,92,137,77,45,135,64,26,19,8,131,4,16,52,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,214,146,199,78,55,84,113,192,26,19,8,131,4,16,53,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,51,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,24,79,81,168,3,6,135,64,26,19,8,131,4,16,55,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,238,73,123,159,153,165,112,192,26,19,8,131,4,16,56,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,54,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,72,4,49,5,38,144,134,64,26,19,8,131,4,16,58,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,159,243,50,92,208,80,111,192,26,19,8,131,4,16,59,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,57,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,37,169,17,234,224,181,133,64,26,19,8,131,4,16,61,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,85,178,54,124,50,191,109,192,26,19,8,131,4,16,62,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,60,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,2,78,242,206,155,219,132,64,26,19,8,131,4,16,64,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,234,163,11,248,10,34,109,192,26,19,8,131,4,16,65,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,63,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,44,49,156,198,76,161,131,64,26,19,8,131,4,16,67,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,109,105,234,204,148,16,109,192,26,19,8,131,4,16,68,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,66,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,131,133,224,44,106,251,130,64,26,19,8,131,4,16,70,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,220,2,211,250,207,138,109,192,26,19,8,131,4,16,71,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,69,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,212,78,103,233,115,120,130,64,26,19,8,131,4,16,73,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,187,53,164,86,70,127,110,192,26,19,8,131,4,16,74,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,72,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,193,34,113,66,37,4,131,64,26,19,8,131,4,16,76,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,140,199,60,181,129,220,111,192,26,19,8,131,4,16,77,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,75,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,35,27,33,115,37,231,131,64,26,19,8,131,4,16,79,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,247,95,246,242,192,95,112,192,26,19,8,131,4,16,80,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,78,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,249,55,119,123,116,33,133,64,26,19,8,131,4,16,82,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,184,194,101,221,5,87,112,192,26,19,8,131,4,16,83,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,81,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,109,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,153,205,183,193,47,13,134,64,26,19,8,131,4,16,85,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,40,10,1,121,18,35,26,33,8,4,18,8,150,221,183,8,169,150,111,192,26,19,8,131,4,16,86,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,84,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,5,26,12,99,71,250,127,152,207,109,6,237,71,176,255,10,39,10,4,116,121,112,101,18,31,26,29,8,5,18,4,108,105,110,101,26,19,8,131,4,16,2,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,19,8,131,4,16,1,26,12,99,71,250,127,152,207,109,6,237,71,176,255,18,18,8,1,16,1,26,12,99,70,109,244,152,207,109,6,237,70,38,85,10,203,13,10,6,105,109,97,103,101,115,18,192,13,18,189,13,10,169,3,18,166,3,10,163,3,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,64,143,64,26,18,8,2,16,4,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,134,97,24,134,97,76,133,64,26,18,8,2,16,5,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,116,10,8,112,111,115,105,116,105,111,110,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,0,0,26,18,8,2,16,7,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,39,10,1,121,18,34,26,32,8,4,18,8,0,0,0,0,0,0,0,0,26,18,8,2,16,8,26,12,99,70,110,88,152,207,109,6,237,70,38,182,18,18,8,2,16,6,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,65,10,4,110,97,109,101,18,57,26,55,8,5,18,31,78,100,111,116,67,65,68,95,76,97,112,116,111,112,95,50,48,50,50,48,56,50,52,32,40,49,41,46,112,110,103,26,18,8,2,16,2,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,121,10,3,117,114,108,18,114,26,112,8,5,18,88,104,116,116,112,115,58,47,47,114,101,115,46,99,108,111,117,100,105,110,97,114,121,46,99,111,109,47,121,111,114,107,105,101,45,116,101,97,109,47,105,109,97,103,101,47,117,112,108,111,97,100,47,118,49,54,54,53,53,54,48,49,54,49,47,110,54,113,101,116,120,113,97,111,52,110,106,50,108,115,111,103,102,110,100,46,112,110,103,26,18,8,2,16,3,26,12,99,70,110,88,152,207,109,6,237,70,38,182,18,18,8,2,16,1,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,174,3,18,171,3,10,168,3,10,70,10,4,110,97,109,101,18,62,26,60,8,5,18,36,78,100,111,116,67,65,68,95,68,111,110,117,116,86,105,111,108,101,116,95,50,48,50,50,48,56,50,52,32,40,49,41,46,112,110,103,26,18,8,3,16,2,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,121,10,3,117,114,108,18,114,26,112,8,5,18,88,104,116,116,112,115,58,47,47,114,101,115,46,99,108,111,117,100,105,110,97,114,121,46,99,111,109,47,121,111,114,107,105,101,45,116,101,97,109,47,105,109,97,103,101,47,117,112,108,111,97,100,47,118,49,54,54,53,53,54,48,49,54,49,47,122,119,121,110,105,103,116,115,111,118,117,111,102,115,122,117,50,120,100,105,46,112,110,103,26,18,8,3,16,3,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,64,143,64,26,18,8,3,16,4,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,134,97,24,134,97,76,133,64,26,18,8,3,16,5,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,116,10,8,112,111,115,105,116,105,111,110,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,0,0,26,18,8,3,16,7,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,39,10,1,121,18,34,26,32,8,4,18,8,134,97,24,134,97,108,136,64,26,18,8,3,16,8,26,12,99,70,110,88,152,207,109,6,237,70,38,182,18,18,8,3,16,6,26,12,99,70,110,88,152,207,109,6,237,70,38,182,18,18,8,3,16,1,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,174,3,18,171,3,10,168,3,10,121,10,3,117,114,108,18,114,26,112,8,5,18,88,104,116,116,112,115,58,47,47,114,101,115,46,99,108,111,117,100,105,110,97,114,121,46,99,111,109,47,121,111,114,107,105,101,45,116,101,97,109,47,105,109,97,103,101,47,117,112,108,111,97,100,47,118,49,54,54,53,53,54,48,49,54,52,47,117,117,103,114,118,100,105,50,118,98,122,97,53,109,117,111,102,119,97,102,46,112,110,103,26,18,8,4,16,3,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,43,10,5,119,105,100,116,104,18,34,26,32,8,4,18,8,0,0,0,0,0,64,143,64,26,18,8,4,16,4,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,44,10,6,104,101,105,103,104,116,18,34,26,32,8,4,18,8,73,146,36,73,146,52,133,64,26,18,8,4,16,5,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,116,10,8,112,111,115,105,116,105,111,110,18,104,10,102,10,39,10,1,120,18,34,26,32,8,4,18,8,0,0,0,0,0,0,0,0,26,18,8,4,16,7,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,39,10,1,121,18,34,26,32,8,4,18,8,134,97,24,134,97,108,152,64,26,18,8,4,16,8,26,12,99,70,110,88,152,207,109,6,237,70,38,182,18,18,8,4,16,6,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,70,10,4,110,97,109,101,18,62,26,60,8,5,18,36,78,100,111,116,67,65,68,95,80,104,111,110,101,89,101,108,108,111,119,95,50,48,50,50,48,56,50,52,32,40,49,41,46,112,110,103,26,18,8,4,16,2,26,12,99,70,110,88,152,207,109,6,237,70,38,182,18,18,8,4,16,1,26,12,99,70,110,88,152,207,109,6,237,70,38,182,10,152,3,18,149,3,10,146,3,10,41,10,4,110,97,109,101,18,33,26,31,8,5,18,6,51,46,106,112,101,103,26,19,8,251,1,16,2,26,12,99,70,121,204,152,207,109,6,237,70,109,77,10,122,10,3,117,114,108,18,115,26,113,8,5,18,88,104,116,116,112,115,58,47,47,114,101,115,46,99,108,111,117,100,105,110,97,114,121,46,99,111,109,47,121,111,114,107,105,101,45,116,101,97,109,47,105,109,97,103,101,47,117,112,108,111,97,100,47,118,49,54,54,53,53,54,51,49,48,48,47,117,98,119,97,108,112,100,122,121,53,108,114,104,103,104,54,57,57,115,56,46,106,112,103,26,19,8,251,1,16,3,26,12,99,70,121,204,152,207,109,6,237,70,109,77,10,44,10,5,119,105,100,116,104,18,35,26,33,8,4,18,8,0,0,0,0,0,64,127,64,26,19,8,251,1,16,4,26,12,99,70,121,204,152,207,109,6,237,70,109,77,10,45,10,6,104,101,105,103,104,116,18,35,26,33,8,4,18,8,0,0,0,0,0,112,135,64,26,19,8,251,1,16,5,26,12,99,70,121,204,152,207,109,6,237,70,109,77,10,119,10,8,112,111,115,105,116,105,111,110,18,107,10,105,10,40,10,1,120,18,35,26,33,8,4,18,8,0,0,0,0,0,0,0,0,26,19,8,251,1,16,7,26,12,99,70,121,204,152,207,109,6,237,70,109,77,10,40,10,1,121,18,35,26,33,8,4,18,8,85,85,85,85,85,75,162,64,26,19,8,251,1,16,8,26,12,99,70,121,204,152,207,109,6,237,70,109,77,18,19,8,251,1,16,6,26,12,99,70,121,204,152,207,109,6,237,70,109,77,18,19,8,251,1,16,1,26,12,99,70,121,204,152,207,109,6,237,70,109,77,18,18,8,1,16,2,26,12,99,70,109,244,152,207,109,6,237,70,38,85,18,14,26,12,0,0,0,0,0,0,0,0,0,0,0,0'; diff --git a/test/bench/text.bench.ts b/test/bench/text.bench.ts new file mode 100644 index 000000000..2f94ef4a7 --- /dev/null +++ b/test/bench/text.bench.ts @@ -0,0 +1,209 @@ +import { Document, Text } from '@yorkie-js-sdk/src/yorkie'; +import { MaxTimeTicket } from '@yorkie-js-sdk/src/document/time/ticket'; +import { assert, bench, describe } from 'vitest'; + +const benchmarkTextEditGC = (size: number) => { + const doc = new Document<{ text: Text }>('test-doc'); + assert.equal('{}', doc.toJSON()); + // 01. initial + doc.update((root) => { + root.text = new Text(); + const { text } = root; + for (let i = 0; i < size; i++) { + text.edit(i, i, 'a'); + } + }, 'initial'); + // 02. 100 nodes modified + doc.update((root) => { + const { text } = root; + for (let i = 0; i < size; i++) { + text.edit(i, i + 1, 'b'); + } + }, `modify ${size} nodes`); + // 03. GC + assert.equal(size, doc.getGarbageLen()); + assert.equal(size, doc.garbageCollect(MaxTimeTicket)); + const empty = 0; + assert.equal(empty, doc.getGarbageLen()); +}; +const benchmarkTextSplitGC = (size: number) => { + const doc = new Document<{ text: Text }>('test-doc'); + assert.equal('{}', doc.toJSON()); + + // 01. initial + const string = 'a'.repeat(size); + doc.update((root) => { + root.text = new Text(); + + root.text.edit(0, 0, string); + }, 'initial'); + // 02. 100 nodes modified + doc.update((root) => { + for (let i = 0; i < size; i++) { + root.text.edit(i, i + 1, 'b'); + } + }, 'Modify one node multiple times'); + // 03. GC + assert.equal(size, doc.getGarbageLen()); + assert.equal(size, doc.garbageCollect(MaxTimeTicket)); + const empty = 0; + assert.equal(empty, doc.getGarbageLen()); +}; +const benchmarkTextDeleteAll = (size: number) => { + const doc = new Document<{ text: Text }>('test-doc'); + doc.update((root) => { + root.text = new Text(); + }, 'initialize'); + // 01. inserts many chracters + for (let i = 0; i < size; i++) { + doc.update((root) => { + root.text.edit(i, i, 'a'); + }, 'insert chracter'); + } + // 02. deletes them + doc.update((root) => { + root.text.edit(0, size, ''); + }, 'delete them'); + assert.equal(doc.getRoot().text.toString(), ''); +}; +const benchmarkText = (size: number) => { + const doc = new Document<{ text: Text }>('test-doc'); + + doc.update((root) => { + root.text = new Text(); + + for (let i = 0; i < size; i++) { + root.text.edit(i, i, 'a'); + } + }); +}; + +describe('Text', () => { + bench('text', () => { + const doc = new Document<{ k1: Text }>('test-doc'); + doc.update((root) => { + root.k1 = new Text(); + root.k1.edit(0, 0, 'ABCD'); + root.k1.edit(1, 3, '12'); + }); + assert.equal(`{"k1":[{"val":"A"},{"val":"12"},{"val":"D"}]}`, doc.toJSON()); + assert.equal( + `[0:00:0:0 ][1:00:2:0 A][1:00:3:0 12]{1:00:2:1 BC}[1:00:2:3 D]`, + doc.getRoot().k1.toTestString(), + ); + doc.update((root) => { + const [pos1] = root.k1.createRangeForTest(0, 0); + assert.equal('0:00:0:0:0', pos1.toTestString()); + const [pos2] = root.k1.createRangeForTest(1, 1); + assert.equal('1:00:2:0:1', pos2.toTestString()); + const [pos3] = root.k1.createRangeForTest(2, 2); + assert.equal('1:00:3:0:1', pos3.toTestString()); + const [pos4] = root.k1.createRangeForTest(3, 3); + assert.equal('1:00:3:0:2', pos4.toTestString()); + const [pos5] = root.k1.createRangeForTest(4, 4); + assert.equal('1:00:2:3:1', pos5.toTestString()); + }); + }); + + bench('text composition', () => { + const doc = new Document<{ k1: Text }>('test-doc'); + doc.update((root) => { + root.k1 = new Text(); + root.k1.edit(0, 0, 'ㅎ'); + root.k1.edit(0, 1, '하'); + root.k1.edit(0, 1, '한'); + root.k1.edit(0, 1, '하'); + root.k1.edit(1, 1, '느'); + root.k1.edit(1, 2, '늘'); + }); + assert.equal(`{"k1":[{"val":"하"},{"val":"늘"}]}`, doc.toJSON()); + }); + + bench('rich text', () => { + const doc = new Document<{ k1: Text }>('test-doc'); + doc.update((root) => { + root.k1 = new Text(); + root.k1.edit(0, 0, 'Hello world'); + assert.equal('[0:00:0:0 ][1:00:2:0 Hello world]', root.k1.toTestString()); + }); + assert.equal('{"k1":[{"val":"Hello world"}]}', doc.toJSON()); + doc.update((root) => { + root.k1.setStyle(0, 5, { b: '1' }); + assert.equal( + '[0:00:0:0 ][1:00:2:0 Hello][1:00:2:5 world]', + root.k1.toTestString(), + ); + }); + assert.equal( + '{"k1":[{"attrs":{"b":"1"},"val":"Hello"},{"val":" world"}]}', + doc.toJSON(), + ); + doc.update((root) => { + root.k1.setStyle(0, 5, { b: '1' }); + assert.equal( + '[0:00:0:0 ][1:00:2:0 Hello][1:00:2:5 world]', + root.k1.toTestString(), + ); + root.k1.setStyle(3, 5, { i: '1' }); + assert.equal( + '[0:00:0:0 ][1:00:2:0 Hel][1:00:2:3 lo][1:00:2:5 world]', + root.k1.toTestString(), + ); + }); + assert.equal( + '{"k1":[{"attrs":{"b":"1"},"val":"Hel"},{"attrs":{"b":"1","i":"1"},"val":"lo"},{"val":" world"}]}', + doc.toJSON(), + ); + doc.update((root) => { + root.k1.edit(5, 11, ' yorkie'); + assert.equal( + '[0:00:0:0 ][1:00:2:0 Hel][1:00:2:3 lo][4:00:1:0 yorkie]{1:00:2:5 world}', + root.k1.toTestString(), + ); + }); + assert.equal( + '{"k1":[{"attrs":{"b":"1"},"val":"Hel"},{"attrs":{"b":"1","i":"1"},"val":"lo"},{"val":" yorkie"}]}', + doc.toJSON(), + ); + doc.update((root) => { + root.k1.edit(5, 5, '\n', { list: 'true' }); + assert( + '[0:00:0:0 ][1:00:2:0 Hel][1:00:2:3 lo][5:00:1:0 ]' + + '[4:00:1:0 yorkie]{1:00:2:5 world}', + root.k1.toTestString(), + ); + }); + assert.equal( + '{"k1":[{"attrs":{"b":"1"},"val":"Hel"},{"attrs":{"b":"1","i":"1"},"val":"lo"},{"attrs":{"list":"true"},"val":"\\n"},{"val":" yorkie"}]}', + doc.toJSON(), + ); + }); + + bench('text Edit-GC 100', () => { + benchmarkTextEditGC(100); + }); + + bench('text Edit-GC 1000', () => { + benchmarkTextEditGC(1000); + }); + + bench('text Split-GC 100', () => { + benchmarkTextSplitGC(100); + }); + + bench('text Split-GC 1000', () => { + benchmarkTextSplitGC(100); + }); + + bench('text Delete-All 10000', () => { + benchmarkTextDeleteAll(10000); + }); + + bench('text 100', () => { + benchmarkText(100); + }); + + bench('text 1000', () => { + benchmarkText(1000); + }); +}); diff --git a/test/bench/toonie_test.ts b/test/bench/toonie_test.ts deleted file mode 100644 index 819bac3b2..000000000 --- a/test/bench/toonie_test.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { CRDTRoot } from '@yorkie-js-sdk/src/document/crdt/root'; -import { converter } from '@yorkie-js-sdk/src/yorkie'; -import { helloBuffer } from './hello_buffer'; -import { nXIQ0KXbuffer } from './nXIQ0KX_buffer'; - -function stringToUint(string: string) { - const array = string.split(','); - const uintArray = []; - for (let i = 0; i < array.length; i++) { - uintArray.push(Number(array[i])); - } - return new Uint8Array(uintArray); -} - -const tests = [ - { - name: 'Toonie#hello', - run: (): void => { - const snapshot = stringToUint(helloBuffer); - const root = new CRDTRoot(converter.bytesToObject(snapshot)); - root.deepcopy(); - }, - }, - { - name: 'Toonie#nXIQ0KX', - run: (): void => { - const snapshot = stringToUint(nXIQ0KXbuffer); - const root = new CRDTRoot(converter.bytesToObject(snapshot)); - root.deepcopy(); - }, - }, -]; - -export default tests; diff --git a/test/bench/toonie_types.ts b/test/bench/toonie_types.ts deleted file mode 100644 index 9ee2efdd8..000000000 --- a/test/bench/toonie_types.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { TimeTicket } from '@yorkie-js-sdk/src/yorkie'; - -export type Shape = Line | EraserLine | Rect; - -export type Point = { - y: number; - x: number; -}; - -export interface BaseShape { - type: string; - getID(): TimeTicket; -} -export interface Box { - y: number; - x: number; - width: number; - height: number; -} - -export interface Line extends BaseShape { - type: 'line'; - color: string; - strokeWidth: number; - points: Array; -} - -export interface Rect extends BaseShape { - type: 'rect'; - color: string; - strokeWidth: number; - points: Array; - box: Box; -} - -export interface EraserLine extends BaseShape { - type: 'eraser'; - points: Array; -} - -export type ToonieDoc = { - profiles: Record; - shapes: Array; - imgUrl: string | undefined; - images: Array; -}; - -export type ImageElement = { - name: string; - url: string; - width: number; - height: number; - position: Point; -}; diff --git a/test/bench/tree.bench.ts b/test/bench/tree.bench.ts new file mode 100644 index 000000000..db91e3bae --- /dev/null +++ b/test/bench/tree.bench.ts @@ -0,0 +1,124 @@ +import { Document, Tree } from '@yorkie-js-sdk/src/yorkie'; +import { MaxTimeTicket } from '@yorkie-js-sdk/src/document/time/ticket'; +import { describe, bench, assert } from 'vitest'; + +const benchmarkTree = (size: number) => { + const doc = new Document<{ tree: Tree }>('test-doc'); + + doc.update((root) => { + root.tree = new Tree({ + type: 'doc', + children: [{ type: 'p', children: [] }], + }); + + for (let i = 1; i <= size; i++) { + root.tree.edit(i, i, { type: 'text', value: 'a' }); + } + }); +}; +const benchmarkTreeDeleteAll = (size: number) => { + const doc = new Document<{ tree: Tree }>('test-doc'); + + doc.update((root) => { + root.tree = new Tree({ + type: 'doc', + children: [{ type: 'p', children: [] }], + }); + + for (let i = 1; i <= size; i++) { + root.tree.edit(i, i, { type: 'text', value: 'a' }); + } + }); + + doc.update((root) => { + root.tree.edit(1, size + 1); + }, 'delete them'); + assert.equal(doc.getRoot().tree.toXML(), `

`); +}; +const benchmarkTreeSplitGC = (size: number) => { + const doc = new Document<{ tree: Tree }>('test-doc'); + + doc.update((root) => { + root.tree = new Tree({ + type: 'doc', + children: [ + { type: 'p', children: [{ type: 'text', value: 'a'.repeat(size) }] }, + ], + }); + }); + + doc.update((root) => { + for (let i = 1; i <= size; i++) { + root.tree.edit(i, i + 1, { type: 'text', value: 'b' }); + } + }, `modify ${size} nodes`); + // 03. GC + assert.equal(size, doc.getGarbageLen()); + assert.equal(size, doc.garbageCollect(MaxTimeTicket)); + const empty = 0; + assert.equal(empty, doc.getGarbageLen()); +}; +const benchmarkTreeEditGC = (size: number) => { + const doc = new Document<{ tree: Tree }>('test-doc'); + + doc.update((root) => { + root.tree = new Tree({ + type: 'doc', + children: [{ type: 'p', children: [] }], + }); + }); + doc.update((root) => { + for (let i = 1; i <= size; i++) { + root.tree.edit(i, i, { type: 'text', value: 'a' }); + } + }); + + doc.update((root) => { + for (let i = 1; i <= size; i++) { + root.tree.edit(i, i + 1, { type: 'text', value: 'b' }); + } + }, `modify ${size} nodes`); + // 03. GC + assert.equal(size, doc.getGarbageLen()); + assert.equal(size, doc.garbageCollect(MaxTimeTicket)); + const empty = 0; + assert.equal(empty, doc.getGarbageLen()); +}; + +describe('tree', () => { + bench('tree 100', () => { + benchmarkTree(100); + }); + + bench('tree 1000', () => { + benchmarkTree(1000); + }); + + bench('tree 100', () => { + benchmarkTree(100); + }); + + bench('tree 1000', () => { + benchmarkTree(1000); + }); + + bench('tree delete all 1000', () => { + benchmarkTreeDeleteAll(1000); + }); + + bench('tree split GC 100', () => { + benchmarkTreeSplitGC(100); + }); + + bench('tree split GC 1000', () => { + benchmarkTreeSplitGC(1000); + }); + + bench('tree edit GC 100', () => { + benchmarkTreeEditGC(100); + }); + + bench('tree edit GC 1000', () => { + benchmarkTreeEditGC(1000); + }); +});